diff --git a/grammar.js b/grammar.js index 6d830e1..d88de1c 100644 --- a/grammar.js +++ b/grammar.js @@ -53,7 +53,6 @@ module.exports = grammar({ [$.with_item, $._collection_elements], [$.named_expression, $.as_pattern], [$.print_statement, $.primary_expression], - [$.type_alias_statement, $.primary_expression], [$.match_statement, $.primary_expression], ], @@ -404,7 +403,7 @@ module.exports = grammar({ optional('async'), 'def', field('name', $.identifier), - field('type_parameters', optional($.type_parameter)), + field('type_parameters', optional($.type_parameters)), field('parameters', $.parameters), optional( seq( @@ -455,24 +454,31 @@ module.exports = grammar({ ), ), - type_alias_statement: $ => prec.dynamic(1, seq( + type_alias_statement: $ => seq( 'type', - field('left', $.type), + field('left', alias($._type_alias_left_hand_side, $.type)), '=', field('right', $.type), - )), + ), + + _type_alias_left_hand_side: $ => seq( + field('type', choice( + $.generic_type, + $.identifier, + )), + ), class_definition: $ => seq( 'class', field('name', $.identifier), - field('type_parameters', optional($.type_parameter)), + field('type_parameters', optional($.type_parameters)), field('superclasses', optional($.argument_list)), ':', field('body', $._suite), ), - type_parameter: $ => seq( + type_parameters: $ => seq( '[', - commaSep1($.type), + commaSep1(field('type_parameter', $.type)), optional(','), ']', ), @@ -489,13 +495,13 @@ module.exports = grammar({ argument_list: $ => seq( '(', optional(commaSep1( - choice( + field('argument', choice( $.expression, $.list_splat, $.dictionary_splat, alias($.parenthesized_list_splat, $.parenthesized_expression), $.keyword_argument, - ), + )), )), optional(','), ')', @@ -605,7 +611,7 @@ module.exports = grammar({ field('value', $.case_pattern), ), - keyword_pattern: $ => seq($.identifier, '=', $._simple_pattern), + keyword_pattern: $ => seq(field('name', $.identifier), '=', $._simple_pattern), splat_pattern: $ => prec(1, seq(choice('*', '**'), choice($.identifier, '_'))), @@ -928,11 +934,11 @@ module.exports = grammar({ )), typed_parameter: $ => prec(PREC.typed_parameter, seq( - choice( + field('name', choice( $.identifier, $.list_splat_pattern, $.dictionary_splat_pattern, - ), + )), ':', field('type', $.type), )), @@ -951,7 +957,7 @@ module.exports = grammar({ $.identifier, alias('type', $.identifier), ), - $.type_parameter, + $.type_parameters, )), union_type: $ => prec.left(seq($.type, '|', $.type)), constrained_type: $ => prec.right(seq($.type, ':', $.type)), diff --git a/src/grammar.json b/src/grammar.json index ee72fe7..c3e3181 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1599,7 +1599,7 @@ "members": [ { "type": "SYMBOL", - "name": "type_parameter" + "name": "type_parameters" }, { "type": "BLANK" @@ -1846,37 +1846,60 @@ ] }, "type_alias_statement": { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "type" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "right", + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "type" - } + "name": "_type_alias_left_hand_side" + }, + "named": true, + "value": "type" } - ] - } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + }, + "_type_alias_left_hand_side": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] }, "class_definition": { "type": "SEQ", @@ -1901,7 +1924,7 @@ "members": [ { "type": "SYMBOL", - "name": "type_parameter" + "name": "type_parameters" }, { "type": "BLANK" @@ -1939,7 +1962,7 @@ } ] }, - "type_parameter": { + "type_parameters": { "type": "SEQ", "members": [ { @@ -1950,8 +1973,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "type" + "type": "FIELD", + "name": "type_parameter", + "content": { + "type": "SYMBOL", + "name": "type" + } }, { "type": "REPEAT", @@ -1963,8 +1990,12 @@ "value": "," }, { - "type": "SYMBOL", - "name": "type" + "type": "FIELD", + "name": "type_parameter", + "content": { + "type": "SYMBOL", + "name": "type" + } } ] } @@ -2038,34 +2069,38 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "list_splat" - }, - { - "type": "SYMBOL", - "name": "dictionary_splat" - }, - { - "type": "ALIAS", - "content": { + "type": "FIELD", + "name": "argument", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "parenthesized_list_splat" + "name": "expression" }, - "named": true, - "value": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "keyword_argument" - } - ] + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_list_splat" + }, + "named": true, + "value": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "keyword_argument" + } + ] + } }, { "type": "REPEAT", @@ -2077,34 +2112,38 @@ "value": "," }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "list_splat" - }, - { - "type": "SYMBOL", - "name": "dictionary_splat" - }, - { - "type": "ALIAS", - "content": { + "type": "FIELD", + "name": "argument", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "parenthesized_list_splat" + "name": "expression" }, - "named": true, - "value": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "keyword_argument" - } - ] + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_list_splat" + }, + "named": true, + "value": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "keyword_argument" + } + ] + } } ] } @@ -2733,8 +2772,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } }, { "type": "STRING", @@ -4729,21 +4772,25 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "list_splat_pattern" - }, - { - "type": "SYMBOL", - "name": "dictionary_splat_pattern" - } - ] + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "list_splat_pattern" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat_pattern" + } + ] + } }, { "type": "STRING", @@ -4845,7 +4892,7 @@ }, { "type": "SYMBOL", - "name": "type_parameter" + "name": "type_parameters" } ] } @@ -6237,10 +6284,6 @@ "print_statement", "primary_expression" ], - [ - "type_alias_statement", - "primary_expression" - ], [ "match_statement", "primary_expression" diff --git a/src/node-types.json b/src/node-types.json index 2d6ffa7..f38bd85 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -382,32 +382,33 @@ { "type": "argument_list", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "dictionary_splat", - "named": true - }, - { - "type": "expression", - "named": true - }, - { - "type": "keyword_argument", - "named": true - }, - { - "type": "list_splat", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - } - ] + "fields": { + "argument": { + "multiple": true, + "required": false, + "types": [ + { + "type": "dictionary_splat", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "keyword_argument", + "named": true + }, + { + "type": "list_splat", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + } + ] + } } }, { @@ -1026,7 +1027,7 @@ "required": false, "types": [ { - "type": "type_parameter", + "type": "type_parameters", "named": true } ] @@ -1821,7 +1822,7 @@ "required": false, "types": [ { - "type": "type_parameter", + "type": "type_parameters", "named": true } ] @@ -1891,7 +1892,7 @@ "named": true }, { - "type": "type_parameter", + "type": "type_parameters", "named": true } ] @@ -2118,10 +2119,21 @@ { "type": "keyword_pattern", "named": true, - "fields": {}, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ { "type": "class_pattern", @@ -2151,10 +2163,6 @@ "type": "float", "named": true }, - { - "type": "identifier", - "named": true - }, { "type": "integer", "named": true @@ -2971,10 +2979,25 @@ { "type": "type", "named": true, - "fields": {}, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "generic_type", + "named": true + }, + { + "type": "identifier", + "named": true + } + ] + } + }, "children": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "constrained_type", @@ -3030,18 +3053,19 @@ } }, { - "type": "type_parameter", + "type": "type_parameters", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "type", - "named": true - } - ] + "fields": { + "type_parameter": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } } }, { @@ -3084,6 +3108,24 @@ "type": "typed_parameter", "named": true, "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dictionary_splat_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "list_splat_pattern", + "named": true + } + ] + }, "type": { "multiple": false, "required": true, @@ -3094,24 +3136,6 @@ } ] } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "dictionary_splat_pattern", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "list_splat_pattern", - "named": true - } - ] } }, { diff --git a/src/parser.c b/src/parser.c index 2dfc1f3..1a01a38 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.9 */ +/* Automatically @generated by tree-sitter v0.25.10 */ #include "tree_sitter/parser.h" @@ -7,16 +7,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2788 -#define LARGE_STATE_COUNT 185 -#define SYMBOL_COUNT 273 +#define STATE_COUNT 2845 +#define LARGE_STATE_COUNT 182 +#define SYMBOL_COUNT 274 #define ALIAS_COUNT 2 #define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 12 -#define FIELD_COUNT 32 +#define FIELD_COUNT 33 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 35 -#define PRODUCTION_ID_COUNT 150 +#define PRODUCTION_ID_COUNT 157 #define SUPERTYPE_COUNT 5 enum ts_symbol_identifiers { @@ -174,126 +174,127 @@ enum ts_symbol_identifiers { sym_nonlocal_statement = 152, sym_exec_statement = 153, sym_type_alias_statement = 154, - sym_class_definition = 155, - sym_type_parameter = 156, - sym_parenthesized_list_splat = 157, - sym_argument_list = 158, - sym_decorated_definition = 159, - sym_decorator = 160, - sym_block = 161, - sym_expression_list = 162, - sym_dotted_name = 163, - sym_case_pattern = 164, - sym__simple_pattern = 165, - sym__as_pattern = 166, - sym_union_pattern = 167, - sym__list_pattern = 168, - sym__tuple_pattern = 169, - sym_dict_pattern = 170, - sym__key_value_pattern = 171, - sym_keyword_pattern = 172, - sym_splat_pattern = 173, - sym_class_pattern = 174, - sym_complex_pattern = 175, - sym__parameters = 176, - sym__patterns = 177, - sym_parameter = 178, - sym_pattern = 179, - sym_tuple_pattern = 180, - sym_list_pattern = 181, - sym_default_parameter = 182, - sym_typed_default_parameter = 183, - sym_list_splat_pattern = 184, - sym_dictionary_splat_pattern = 185, - sym_as_pattern = 186, - sym__expression_within_for_in_clause = 187, - sym_expression = 188, - sym_primary_expression = 189, - sym_not_operator = 190, - sym_boolean_operator = 191, - sym_binary_operator = 192, - sym_unary_operator = 193, - sym__not_in = 194, - sym__is_not = 195, - sym_comparison_operator = 196, - sym_lambda = 197, - sym_lambda_within_for_in_clause = 198, - sym_assignment = 199, - sym_augmented_assignment = 200, - sym_pattern_list = 201, - sym__right_hand_side = 202, - sym_yield = 203, - sym_attribute = 204, - sym_subscript = 205, - sym_slice = 206, - sym_call = 207, - sym_typed_parameter = 208, - sym_type = 209, - sym_splat_type = 210, - sym_generic_type = 211, - sym_union_type = 212, - sym_constrained_type = 213, - sym_member_type = 214, - sym_keyword_argument = 215, - sym_list = 216, - sym_set = 217, - sym_tuple = 218, - sym_dictionary = 219, - sym_pair = 220, - sym_list_comprehension = 221, - sym_dictionary_comprehension = 222, - sym_set_comprehension = 223, - sym_generator_expression = 224, - sym__comprehension_clauses = 225, - sym_parenthesized_expression = 226, - sym__collection_elements = 227, - sym_for_in_clause = 228, - sym_if_clause = 229, - sym_conditional_expression = 230, - sym_concatenated_string = 231, - sym_string = 232, - sym_string_content = 233, - sym_interpolation = 234, - sym__f_expression = 235, - sym__not_escape_sequence = 236, - sym_format_specifier = 237, - sym_await = 238, - sym_positional_separator = 239, - sym_keyword_separator = 240, - aux_sym_module_repeat1 = 241, - aux_sym__simple_statements_repeat1 = 242, - aux_sym_import_prefix_repeat1 = 243, - aux_sym__import_list_repeat1 = 244, - aux_sym_print_statement_repeat1 = 245, - aux_sym_assert_statement_repeat1 = 246, - aux_sym_if_statement_repeat1 = 247, - aux_sym_match_statement_repeat1 = 248, - aux_sym__match_block_repeat1 = 249, - aux_sym_case_clause_repeat1 = 250, - aux_sym_try_statement_repeat1 = 251, - aux_sym_except_clause_repeat1 = 252, - aux_sym_with_clause_repeat1 = 253, - aux_sym_global_statement_repeat1 = 254, - aux_sym_type_parameter_repeat1 = 255, - aux_sym_argument_list_repeat1 = 256, - aux_sym_decorated_definition_repeat1 = 257, - aux_sym_dotted_name_repeat1 = 258, - aux_sym_union_pattern_repeat1 = 259, - aux_sym_dict_pattern_repeat1 = 260, - aux_sym__parameters_repeat1 = 261, - aux_sym__patterns_repeat1 = 262, - aux_sym_comparison_operator_repeat1 = 263, - aux_sym_subscript_repeat1 = 264, - aux_sym_dictionary_repeat1 = 265, - aux_sym__comprehension_clauses_repeat1 = 266, - aux_sym__collection_elements_repeat1 = 267, - aux_sym_for_in_clause_repeat1 = 268, - aux_sym_concatenated_string_repeat1 = 269, - aux_sym_string_repeat1 = 270, - aux_sym_string_content_repeat1 = 271, - aux_sym_format_specifier_repeat1 = 272, - alias_sym_as_pattern_target = 273, - alias_sym_format_expression = 274, + sym__type_alias_left_hand_side = 155, + sym_class_definition = 156, + sym_type_parameters = 157, + sym_parenthesized_list_splat = 158, + sym_argument_list = 159, + sym_decorated_definition = 160, + sym_decorator = 161, + sym_block = 162, + sym_expression_list = 163, + sym_dotted_name = 164, + sym_case_pattern = 165, + sym__simple_pattern = 166, + sym__as_pattern = 167, + sym_union_pattern = 168, + sym__list_pattern = 169, + sym__tuple_pattern = 170, + sym_dict_pattern = 171, + sym__key_value_pattern = 172, + sym_keyword_pattern = 173, + sym_splat_pattern = 174, + sym_class_pattern = 175, + sym_complex_pattern = 176, + sym__parameters = 177, + sym__patterns = 178, + sym_parameter = 179, + sym_pattern = 180, + sym_tuple_pattern = 181, + sym_list_pattern = 182, + sym_default_parameter = 183, + sym_typed_default_parameter = 184, + sym_list_splat_pattern = 185, + sym_dictionary_splat_pattern = 186, + sym_as_pattern = 187, + sym__expression_within_for_in_clause = 188, + sym_expression = 189, + sym_primary_expression = 190, + sym_not_operator = 191, + sym_boolean_operator = 192, + sym_binary_operator = 193, + sym_unary_operator = 194, + sym__not_in = 195, + sym__is_not = 196, + sym_comparison_operator = 197, + sym_lambda = 198, + sym_lambda_within_for_in_clause = 199, + sym_assignment = 200, + sym_augmented_assignment = 201, + sym_pattern_list = 202, + sym__right_hand_side = 203, + sym_yield = 204, + sym_attribute = 205, + sym_subscript = 206, + sym_slice = 207, + sym_call = 208, + sym_typed_parameter = 209, + sym_type = 210, + sym_splat_type = 211, + sym_generic_type = 212, + sym_union_type = 213, + sym_constrained_type = 214, + sym_member_type = 215, + sym_keyword_argument = 216, + sym_list = 217, + sym_set = 218, + sym_tuple = 219, + sym_dictionary = 220, + sym_pair = 221, + sym_list_comprehension = 222, + sym_dictionary_comprehension = 223, + sym_set_comprehension = 224, + sym_generator_expression = 225, + sym__comprehension_clauses = 226, + sym_parenthesized_expression = 227, + sym__collection_elements = 228, + sym_for_in_clause = 229, + sym_if_clause = 230, + sym_conditional_expression = 231, + sym_concatenated_string = 232, + sym_string = 233, + sym_string_content = 234, + sym_interpolation = 235, + sym__f_expression = 236, + sym__not_escape_sequence = 237, + sym_format_specifier = 238, + sym_await = 239, + sym_positional_separator = 240, + sym_keyword_separator = 241, + aux_sym_module_repeat1 = 242, + aux_sym__simple_statements_repeat1 = 243, + aux_sym_import_prefix_repeat1 = 244, + aux_sym__import_list_repeat1 = 245, + aux_sym_print_statement_repeat1 = 246, + aux_sym_assert_statement_repeat1 = 247, + aux_sym_if_statement_repeat1 = 248, + aux_sym_match_statement_repeat1 = 249, + aux_sym__match_block_repeat1 = 250, + aux_sym_case_clause_repeat1 = 251, + aux_sym_try_statement_repeat1 = 252, + aux_sym_except_clause_repeat1 = 253, + aux_sym_with_clause_repeat1 = 254, + aux_sym_global_statement_repeat1 = 255, + aux_sym_type_parameters_repeat1 = 256, + aux_sym_argument_list_repeat1 = 257, + aux_sym_decorated_definition_repeat1 = 258, + aux_sym_dotted_name_repeat1 = 259, + aux_sym_union_pattern_repeat1 = 260, + aux_sym_dict_pattern_repeat1 = 261, + aux_sym__parameters_repeat1 = 262, + aux_sym__patterns_repeat1 = 263, + aux_sym_comparison_operator_repeat1 = 264, + aux_sym_subscript_repeat1 = 265, + aux_sym_dictionary_repeat1 = 266, + aux_sym__comprehension_clauses_repeat1 = 267, + aux_sym__collection_elements_repeat1 = 268, + aux_sym_for_in_clause_repeat1 = 269, + aux_sym_concatenated_string_repeat1 = 270, + aux_sym_string_repeat1 = 271, + aux_sym_string_content_repeat1 = 272, + aux_sym_format_specifier_repeat1 = 273, + alias_sym_as_pattern_target = 274, + alias_sym_format_expression = 275, }; static const char * const ts_symbol_names[] = { @@ -452,8 +453,9 @@ static const char * const ts_symbol_names[] = { [sym_nonlocal_statement] = "nonlocal_statement", [sym_exec_statement] = "exec_statement", [sym_type_alias_statement] = "type_alias_statement", + [sym__type_alias_left_hand_side] = "type", [sym_class_definition] = "class_definition", - [sym_type_parameter] = "type_parameter", + [sym_type_parameters] = "type_parameters", [sym_parenthesized_list_splat] = "parenthesized_list_splat", [sym_argument_list] = "argument_list", [sym_decorated_definition] = "decorated_definition", @@ -552,7 +554,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_except_clause_repeat1] = "except_clause_repeat1", [aux_sym_with_clause_repeat1] = "with_clause_repeat1", [aux_sym_global_statement_repeat1] = "global_statement_repeat1", - [aux_sym_type_parameter_repeat1] = "type_parameter_repeat1", + [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", [aux_sym_decorated_definition_repeat1] = "decorated_definition_repeat1", [aux_sym_dotted_name_repeat1] = "dotted_name_repeat1", @@ -730,8 +732,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_nonlocal_statement] = sym_nonlocal_statement, [sym_exec_statement] = sym_exec_statement, [sym_type_alias_statement] = sym_type_alias_statement, + [sym__type_alias_left_hand_side] = sym_type, [sym_class_definition] = sym_class_definition, - [sym_type_parameter] = sym_type_parameter, + [sym_type_parameters] = sym_type_parameters, [sym_parenthesized_list_splat] = sym_parenthesized_list_splat, [sym_argument_list] = sym_argument_list, [sym_decorated_definition] = sym_decorated_definition, @@ -830,7 +833,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_except_clause_repeat1] = aux_sym_except_clause_repeat1, [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, [aux_sym_global_statement_repeat1] = aux_sym_global_statement_repeat1, - [aux_sym_type_parameter_repeat1] = aux_sym_type_parameter_repeat1, + [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, [aux_sym_decorated_definition_repeat1] = aux_sym_decorated_definition_repeat1, [aux_sym_dotted_name_repeat1] = aux_sym_dotted_name_repeat1, @@ -1474,11 +1477,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__type_alias_left_hand_side] = { + .visible = true, + .named = true, + }, [sym_class_definition] = { .visible = true, .named = true, }, - [sym_type_parameter] = { + [sym_type_parameters] = { .visible = true, .named = true, }, @@ -1878,7 +1885,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_type_parameter_repeat1] = { + [aux_sym_type_parameters_repeat1] = { .visible = false, .named = false, }, @@ -1991,8 +1998,9 @@ enum ts_field_identifiers { field_superclasses = 28, field_type = 29, field_type_conversion = 30, - field_type_parameters = 31, - field_value = 32, + field_type_parameter = 31, + field_type_parameters = 32, + field_value = 33, }; static const char * const ts_field_names[] = { @@ -2027,6 +2035,7 @@ static const char * const ts_field_names[] = { [field_superclasses] = "superclasses", [field_type] = "type", [field_type_conversion] = "type_conversion", + [field_type_parameter] = "type_parameter", [field_type_parameters] = "type_parameters", [field_value] = "value", }; @@ -2037,143 +2046,150 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [6] = {.index = 2, .length = 1}, [7] = {.index = 3, .length = 1}, [8] = {.index = 4, .length = 1}, - [9] = {.index = 5, .length = 2}, - [10] = {.index = 7, .length = 2}, - [11] = {.index = 9, .length = 1}, + [9] = {.index = 5, .length = 1}, + [10] = {.index = 6, .length = 2}, + [11] = {.index = 8, .length = 2}, [12] = {.index = 10, .length = 1}, - [13] = {.index = 11, .length = 2}, - [14] = {.index = 13, .length = 1}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 16, .length = 1}, + [13] = {.index = 11, .length = 1}, + [14] = {.index = 12, .length = 2}, + [15] = {.index = 14, .length = 1}, + [16] = {.index = 15, .length = 2}, [17] = {.index = 17, .length = 1}, - [18] = {.index = 17, .length = 1}, - [19] = {.index = 18, .length = 2}, - [20] = {.index = 20, .length = 2}, - [21] = {.index = 22, .length = 2}, - [22] = {.index = 24, .length = 3}, - [23] = {.index = 27, .length = 1}, - [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 1}, - [26] = {.index = 31, .length = 2}, - [27] = {.index = 33, .length = 1}, + [18] = {.index = 18, .length = 1}, + [19] = {.index = 18, .length = 1}, + [20] = {.index = 19, .length = 2}, + [21] = {.index = 21, .length = 2}, + [22] = {.index = 23, .length = 2}, + [23] = {.index = 25, .length = 3}, + [24] = {.index = 28, .length = 1}, + [25] = {.index = 29, .length = 2}, + [26] = {.index = 31, .length = 1}, + [27] = {.index = 32, .length = 2}, [28] = {.index = 34, .length = 1}, - [29] = {.index = 35, .length = 2}, - [30] = {.index = 37, .length = 2}, - [31] = {.index = 39, .length = 1}, - [32] = {.index = 40, .length = 2}, - [33] = {.index = 42, .length = 1}, - [35] = {.index = 43, .length = 1}, - [36] = {.index = 44, .length = 2}, - [37] = {.index = 46, .length = 1}, - [38] = {.index = 47, .length = 2}, - [39] = {.index = 49, .length = 1}, - [40] = {.index = 50, .length = 3}, - [41] = {.index = 53, .length = 2}, - [42] = {.index = 55, .length = 2}, - [43] = {.index = 57, .length = 2}, - [44] = {.index = 59, .length = 1}, - [45] = {.index = 60, .length = 2}, - [46] = {.index = 62, .length = 2}, + [29] = {.index = 35, .length = 1}, + [30] = {.index = 36, .length = 2}, + [31] = {.index = 38, .length = 2}, + [32] = {.index = 40, .length = 1}, + [33] = {.index = 41, .length = 2}, + [34] = {.index = 43, .length = 1}, + [36] = {.index = 44, .length = 1}, + [37] = {.index = 45, .length = 2}, + [38] = {.index = 47, .length = 1}, + [39] = {.index = 48, .length = 2}, + [40] = {.index = 50, .length = 1}, + [41] = {.index = 51, .length = 3}, + [42] = {.index = 54, .length = 2}, + [43] = {.index = 56, .length = 2}, + [44] = {.index = 58, .length = 2}, + [45] = {.index = 60, .length = 1}, + [46] = {.index = 61, .length = 3}, [47] = {.index = 64, .length = 2}, - [48] = {.index = 66, .length = 1}, - [49] = {.index = 67, .length = 2}, - [50] = {.index = 69, .length = 2}, - [52] = {.index = 71, .length = 2}, - [53] = {.index = 73, .length = 2}, - [54] = {.index = 75, .length = 1}, - [55] = {.index = 76, .length = 3}, - [56] = {.index = 79, .length = 3}, - [57] = {.index = 82, .length = 3}, - [58] = {.index = 85, .length = 3}, - [59] = {.index = 88, .length = 4}, - [60] = {.index = 92, .length = 1}, - [61] = {.index = 93, .length = 3}, - [62] = {.index = 96, .length = 3}, - [63] = {.index = 99, .length = 2}, - [64] = {.index = 101, .length = 3}, - [65] = {.index = 104, .length = 3}, - [66] = {.index = 107, .length = 3}, - [67] = {.index = 110, .length = 3}, - [68] = {.index = 113, .length = 3}, - [69] = {.index = 18, .length = 2}, - [70] = {.index = 116, .length = 1}, + [48] = {.index = 66, .length = 2}, + [49] = {.index = 68, .length = 2}, + [50] = {.index = 70, .length = 2}, + [51] = {.index = 2, .length = 1}, + [52] = {.index = 72, .length = 2}, + [54] = {.index = 74, .length = 2}, + [55] = {.index = 76, .length = 2}, + [56] = {.index = 78, .length = 1}, + [57] = {.index = 79, .length = 3}, + [58] = {.index = 82, .length = 3}, + [59] = {.index = 85, .length = 3}, + [60] = {.index = 88, .length = 3}, + [61] = {.index = 91, .length = 4}, + [62] = {.index = 95, .length = 1}, + [63] = {.index = 96, .length = 3}, + [64] = {.index = 99, .length = 3}, + [65] = {.index = 102, .length = 2}, + [66] = {.index = 104, .length = 1}, + [67] = {.index = 105, .length = 3}, + [68] = {.index = 108, .length = 3}, + [69] = {.index = 111, .length = 3}, + [70] = {.index = 114, .length = 3}, [71] = {.index = 117, .length = 3}, - [72] = {.index = 120, .length = 2}, - [73] = {.index = 122, .length = 2}, - [74] = {.index = 124, .length = 2}, - [75] = {.index = 126, .length = 3}, - [76] = {.index = 129, .length = 1}, - [77] = {.index = 130, .length = 2}, - [78] = {.index = 132, .length = 4}, - [79] = {.index = 136, .length = 2}, - [80] = {.index = 138, .length = 4}, - [81] = {.index = 142, .length = 4}, - [82] = {.index = 146, .length = 1}, - [83] = {.index = 147, .length = 4}, - [84] = {.index = 151, .length = 2}, - [85] = {.index = 153, .length = 3}, - [86] = {.index = 156, .length = 3}, - [87] = {.index = 159, .length = 4}, - [89] = {.index = 163, .length = 4}, - [90] = {.index = 167, .length = 4}, - [91] = {.index = 171, .length = 4}, - [92] = {.index = 175, .length = 4}, - [93] = {.index = 179, .length = 4}, - [94] = {.index = 183, .length = 3}, - [95] = {.index = 186, .length = 3}, - [96] = {.index = 189, .length = 2}, - [97] = {.index = 191, .length = 3}, - [98] = {.index = 194, .length = 5}, - [99] = {.index = 199, .length = 3}, - [100] = {.index = 202, .length = 4}, - [101] = {.index = 206, .length = 4}, - [102] = {.index = 210, .length = 4}, - [103] = {.index = 214, .length = 4}, - [105] = {.index = 218, .length = 1}, - [106] = {.index = 218, .length = 1}, - [107] = {.index = 219, .length = 2}, - [108] = {.index = 221, .length = 4}, - [109] = {.index = 225, .length = 5}, - [110] = {.index = 230, .length = 5}, - [111] = {.index = 235, .length = 3}, - [112] = {.index = 238, .length = 2}, - [113] = {.index = 240, .length = 1}, - [114] = {.index = 241, .length = 4}, - [115] = {.index = 245, .length = 4}, - [116] = {.index = 249, .length = 4}, - [117] = {.index = 253, .length = 5}, - [118] = {.index = 258, .length = 5}, - [119] = {.index = 263, .length = 1}, - [120] = {.index = 264, .length = 2}, - [121] = {.index = 266, .length = 5}, - [122] = {.index = 271, .length = 5}, - [123] = {.index = 276, .length = 4}, - [124] = {.index = 280, .length = 4}, - [125] = {.index = 284, .length = 2}, - [126] = {.index = 286, .length = 1}, - [127] = {.index = 287, .length = 2}, - [128] = {.index = 289, .length = 2}, - [129] = {.index = 291, .length = 5}, - [130] = {.index = 296, .length = 5}, - [131] = {.index = 301, .length = 5}, - [132] = {.index = 263, .length = 1}, - [133] = {.index = 306, .length = 2}, - [134] = {.index = 308, .length = 2}, - [135] = {.index = 264, .length = 2}, - [136] = {.index = 310, .length = 6}, - [137] = {.index = 316, .length = 2}, - [138] = {.index = 318, .length = 2}, - [139] = {.index = 320, .length = 3}, - [140] = {.index = 323, .length = 1}, - [141] = {.index = 324, .length = 6}, - [142] = {.index = 330, .length = 2}, - [143] = {.index = 306, .length = 2}, - [144] = {.index = 308, .length = 2}, - [145] = {.index = 332, .length = 3}, - [146] = {.index = 335, .length = 2}, - [147] = {.index = 337, .length = 2}, - [148] = {.index = 330, .length = 2}, - [149] = {.index = 339, .length = 3}, + [72] = {.index = 19, .length = 2}, + [73] = {.index = 15, .length = 2}, + [74] = {.index = 120, .length = 1}, + [75] = {.index = 121, .length = 3}, + [76] = {.index = 124, .length = 2}, + [77] = {.index = 126, .length = 2}, + [78] = {.index = 128, .length = 2}, + [79] = {.index = 130, .length = 3}, + [80] = {.index = 133, .length = 1}, + [81] = {.index = 134, .length = 2}, + [82] = {.index = 136, .length = 2}, + [83] = {.index = 138, .length = 4}, + [84] = {.index = 142, .length = 2}, + [85] = {.index = 144, .length = 4}, + [86] = {.index = 148, .length = 4}, + [87] = {.index = 152, .length = 1}, + [88] = {.index = 153, .length = 4}, + [89] = {.index = 157, .length = 2}, + [90] = {.index = 159, .length = 3}, + [91] = {.index = 162, .length = 3}, + [92] = {.index = 165, .length = 4}, + [94] = {.index = 169, .length = 2}, + [95] = {.index = 171, .length = 2}, + [96] = {.index = 173, .length = 4}, + [97] = {.index = 177, .length = 4}, + [98] = {.index = 181, .length = 4}, + [99] = {.index = 185, .length = 4}, + [100] = {.index = 189, .length = 4}, + [101] = {.index = 193, .length = 3}, + [102] = {.index = 196, .length = 3}, + [103] = {.index = 199, .length = 2}, + [104] = {.index = 201, .length = 3}, + [105] = {.index = 204, .length = 5}, + [106] = {.index = 209, .length = 3}, + [107] = {.index = 212, .length = 4}, + [108] = {.index = 216, .length = 4}, + [109] = {.index = 220, .length = 4}, + [110] = {.index = 224, .length = 4}, + [112] = {.index = 228, .length = 1}, + [113] = {.index = 228, .length = 1}, + [114] = {.index = 229, .length = 2}, + [115] = {.index = 231, .length = 4}, + [116] = {.index = 235, .length = 5}, + [117] = {.index = 240, .length = 5}, + [118] = {.index = 245, .length = 3}, + [119] = {.index = 248, .length = 2}, + [120] = {.index = 250, .length = 1}, + [121] = {.index = 251, .length = 4}, + [122] = {.index = 255, .length = 4}, + [123] = {.index = 259, .length = 4}, + [124] = {.index = 263, .length = 5}, + [125] = {.index = 268, .length = 5}, + [126] = {.index = 273, .length = 1}, + [127] = {.index = 274, .length = 2}, + [128] = {.index = 276, .length = 5}, + [129] = {.index = 281, .length = 5}, + [130] = {.index = 286, .length = 4}, + [131] = {.index = 290, .length = 4}, + [132] = {.index = 294, .length = 2}, + [133] = {.index = 296, .length = 1}, + [134] = {.index = 297, .length = 2}, + [135] = {.index = 299, .length = 2}, + [136] = {.index = 301, .length = 5}, + [137] = {.index = 306, .length = 5}, + [138] = {.index = 311, .length = 5}, + [139] = {.index = 273, .length = 1}, + [140] = {.index = 316, .length = 2}, + [141] = {.index = 318, .length = 2}, + [142] = {.index = 274, .length = 2}, + [143] = {.index = 320, .length = 6}, + [144] = {.index = 326, .length = 2}, + [145] = {.index = 328, .length = 2}, + [146] = {.index = 330, .length = 3}, + [147] = {.index = 333, .length = 1}, + [148] = {.index = 334, .length = 6}, + [149] = {.index = 340, .length = 2}, + [150] = {.index = 316, .length = 2}, + [151] = {.index = 318, .length = 2}, + [152] = {.index = 342, .length = 3}, + [153] = {.index = 345, .length = 2}, + [154] = {.index = 347, .length = 2}, + [155] = {.index = 340, .length = 2}, + [156] = {.index = 349, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2188,468 +2204,483 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [4] = {field_code, 1}, [5] = + {field_type, 0}, + [6] = {field_argument, 1}, {field_operator, 0}, - [7] = + [8] = {field_arguments, 1}, {field_function, 0}, - [9] = - {field_operators, 1, .inherited = true}, [10] = - {field_definition, 1}, + {field_operators, 1, .inherited = true}, [11] = + {field_definition, 1}, + [12] = {field_name, 0}, {field_name, 1, .inherited = true}, - [13] = - {field_argument, 2, .inherited = true}, [14] = + {field_argument, 2, .inherited = true}, + [15] = {field_argument, 1}, {field_argument, 2, .inherited = true}, - [16] = - {field_cause, 2}, [17] = - {field_body, 2}, + {field_cause, 2}, [18] = + {field_body, 2}, + [19] = {field_name, 0}, {field_value, 2}, - [20] = + [21] = {field_left, 0}, {field_type, 2}, - [22] = + [23] = {field_left, 0}, {field_right, 2}, - [24] = + [25] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [27] = - {field_alias, 2}, [28] = + {field_alias, 2}, + [29] = {field_attribute, 2}, {field_object, 0}, - [30] = - {field_operators, 0}, [31] = + {field_operators, 0}, + [32] = {field_operators, 0, .inherited = true}, {field_operators, 1, .inherited = true}, - [33] = - {field_expression, 1}, [34] = - {field_name, 1}, + {field_expression, 1}, [35] = + {field_name, 1}, + [36] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [37] = + [38] = {field_alias, 2}, {field_name, 0}, - [39] = - {field_name, 3, .inherited = true}, [40] = - {field_module_name, 1}, {field_name, 3, .inherited = true}, - [42] = + [41] = {field_module_name, 1}, + {field_name, 3, .inherited = true}, [43] = - {field_body, 1}, + {field_module_name, 1}, [44] = + {field_body, 1}, + [45] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [46] = - {field_cause, 3}, [47] = + {field_cause, 3}, + [48] = {field_condition, 1}, {field_consequence, 3}, - [49] = - {field_subject, 1}, [50] = + {field_subject, 1}, + [51] = {field_alternative, 3, .inherited = true}, {field_body, 3}, {field_subject, 1}, - [53] = + [54] = {field_subject, 0, .inherited = true}, {field_subject, 1, .inherited = true}, - [55] = + [56] = {field_body, 3}, {field_condition, 1}, - [57] = + [58] = {field_body, 2}, {field_body, 3}, - [59] = - {field_body, 3}, [60] = + {field_body, 3}, + [61] = {field_left, 1}, {field_right, 3}, - [62] = + {field_type, 1, .inherited = true}, + [64] = {field_body, 3}, {field_name, 1}, - [64] = + [66] = {field_key, 0}, {field_value, 2}, - [66] = + [68] = + {field_name, 0}, {field_type, 2}, - [67] = + [70] = {field_body, 3}, {field_parameters, 1}, - [69] = + [72] = {field_subscript, 2}, {field_value, 0}, - [71] = + [74] = {field_expression, 1}, {field_type_conversion, 2}, - [73] = + [76] = {field_expression, 1}, {field_format_specifier, 2}, - [75] = + [78] = {field_alternative, 0}, - [76] = + [79] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 3}, - [79] = + [82] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, - [82] = + [85] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [85] = + [88] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, - [88] = + [91] = {field_alternative, 4, .inherited = true}, {field_body, 4}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [92] = + [95] = {field_body, 4}, - [93] = + [96] = {field_alternative, 4}, {field_body, 3}, {field_condition, 1}, - [96] = + [99] = {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [99] = + [102] = {field_body, 3}, {field_body, 4}, - [101] = + [104] = + {field_type_parameter, 1}, + [105] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [104] = + [108] = {field_body, 3}, {field_body, 4}, {field_name, 1}, - [107] = + [111] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [110] = + [114] = {field_body, 4}, {field_name, 1}, {field_superclasses, 2}, - [113] = + [117] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [116] = + [120] = {field_subscript, 1}, - [117] = + [121] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, {field_value, 0}, - [120] = + [124] = {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, - [122] = + [126] = {field_expression, 1}, {field_type_conversion, 3}, - [124] = + [128] = {field_expression, 1}, {field_format_specifier, 3}, - [126] = + [130] = {field_expression, 1}, {field_format_specifier, 3}, {field_type_conversion, 2}, - [129] = + [133] = {field_name, 4, .inherited = true}, - [130] = + [134] = {field_module_name, 1}, {field_name, 4, .inherited = true}, - [132] = + [136] = + {field_left, 1}, + {field_right, 3}, + [138] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [136] = + [142] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [138] = + [144] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [142] = + [148] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [146] = + [152] = {field_alternative, 1, .inherited = true}, - [147] = + [153] = {field_alternative, 5, .inherited = true}, {field_body, 5}, {field_subject, 1}, {field_subject, 2, .inherited = true}, - [151] = + [157] = {field_body, 4}, {field_body, 5}, - [153] = + [159] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [156] = + [162] = {field_body, 5}, {field_left, 1}, {field_right, 3}, - [159] = + [165] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [163] = + [169] = + {field_type_parameter, 1}, + {field_type_parameter, 2, .inherited = true}, + [171] = + {field_type_parameter, 0, .inherited = true}, + {field_type_parameter, 1, .inherited = true}, + [173] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [167] = + [177] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [171] = + [181] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_type_parameters, 2}, - [175] = + [185] = {field_body, 5}, {field_name, 1}, {field_superclasses, 3}, {field_type_parameters, 2}, - [179] = + [189] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_superclasses, 2}, - [183] = + [193] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [186] = + [196] = {field_expression, 1}, {field_format_specifier, 4}, {field_type_conversion, 3}, - [189] = + [199] = {field_left, 2}, {field_right, 4}, - [191] = + [201] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [194] = + [204] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [199] = + [209] = {field_body, 6}, {field_left, 2}, {field_right, 4}, - [202] = + [212] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [206] = + [216] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [210] = + [220] = {field_alternative, 6}, {field_body, 5}, {field_left, 1}, {field_right, 3}, - [214] = + [224] = {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [218] = + [228] = {field_value, 1}, - [219] = + [229] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [221] = + [231] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [225] = + [235] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [230] = + [240] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_superclasses, 3}, {field_type_parameters, 2}, - [235] = + [245] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [238] = + [248] = {field_key, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [240] = + [250] = {field_consequence, 3}, - [241] = + [251] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [245] = + [255] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [249] = + [259] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [253] = + [263] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [258] = + [268] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [263] = + [273] = {field_value, 2}, - [264] = + [274] = {field_value, 1}, {field_value, 2, .inherited = true}, - [266] = + [276] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [271] = + [281] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [276] = + [286] = {field_key, 1, .inherited = true}, {field_key, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [280] = + [290] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [284] = + [294] = {field_key, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [286] = + [296] = {field_consequence, 4}, - [287] = + [297] = {field_consequence, 3}, {field_consequence, 4}, - [289] = + [299] = {field_consequence, 4}, {field_guard, 2}, - [291] = + [301] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [296] = + [306] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [301] = + [311] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [306] = + [316] = {field_value, 2}, {field_value, 3, .inherited = true}, - [308] = + [318] = {field_alias, 3}, {field_value, 1}, - [310] = + [320] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [316] = + [326] = {field_consequence, 4}, {field_consequence, 5}, - [318] = + [328] = {field_consequence, 5}, {field_guard, 3}, - [320] = + [330] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, - [323] = + [333] = {field_consequence, 5}, - [324] = + [334] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [330] = + [340] = {field_alias, 4}, {field_value, 2}, - [332] = + [342] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, - [335] = + [345] = {field_consequence, 5}, {field_consequence, 6}, - [337] = + [347] = {field_consequence, 6}, {field_guard, 4}, - [339] = + [349] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, @@ -2666,133 +2697,139 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [1] = sym_identifier, }, - [17] = { + [18] = { [2] = sym_block, }, - [23] = { + [24] = { [2] = alias_sym_as_pattern_target, }, - [34] = { + [35] = { [1] = sym_parenthesized_expression, }, - [38] = { + [39] = { [3] = sym_block, }, - [42] = { + [43] = { [3] = sym_block, }, - [44] = { + [45] = { [3] = sym_block, }, - [46] = { + [47] = { [3] = sym_block, }, [51] = { + [1] = sym_parenthesized_expression, + }, + [53] = { [0] = alias_sym_format_expression, }, - [55] = { + [57] = { [3] = sym_block, }, - [56] = { + [58] = { [3] = sym_block, }, - [60] = { + [62] = { [4] = sym_block, }, - [61] = { + [63] = { [3] = sym_block, }, - [64] = { + [67] = { [4] = sym_block, }, - [66] = { + [69] = { [4] = sym_block, }, - [67] = { + [70] = { [4] = sym_block, }, - [69] = { + [72] = { [0] = sym_identifier, }, - [78] = { + [73] = { + [1] = sym_parenthesized_expression, + }, + [83] = { [3] = sym_block, }, - [85] = { + [90] = { [5] = sym_block, }, - [86] = { + [91] = { [5] = sym_block, }, - [88] = { + [93] = { [2] = sym_block, }, - [90] = { + [97] = { [5] = sym_block, }, - [92] = { + [99] = { [5] = sym_block, }, - [99] = { + [106] = { [6] = sym_block, }, - [101] = { + [108] = { [6] = sym_block, }, - [102] = { + [109] = { [5] = sym_block, }, - [104] = { + [111] = { [3] = sym_block, }, - [106] = { + [113] = { [3] = sym_block, }, - [108] = { + [115] = { [6] = sym_block, }, - [113] = { + [120] = { [3] = sym_block, }, - [114] = { + [121] = { [6] = sym_block, }, - [116] = { + [123] = { [7] = sym_block, }, - [119] = { + [126] = { [4] = sym_block, }, - [120] = { + [127] = { [4] = sym_block, }, - [122] = { + [129] = { [7] = sym_block, }, - [126] = { + [133] = { [4] = sym_block, }, - [128] = { + [135] = { [4] = sym_block, }, - [131] = { + [138] = { [8] = sym_block, }, - [133] = { + [140] = { [5] = sym_block, }, - [134] = { + [141] = { [5] = sym_block, }, - [138] = { + [145] = { [5] = sym_block, }, - [140] = { + [147] = { [5] = sym_block, }, - [142] = { + [149] = { [6] = sym_block, }, - [147] = { + [154] = { [6] = sym_block, }, }; @@ -2823,7 +2860,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 6, + [6] = 3, [7] = 7, [8] = 8, [9] = 9, @@ -2854,7 +2891,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [34] = 34, [35] = 35, [36] = 36, - [37] = 6, + [37] = 37, [38] = 7, [39] = 8, [40] = 9, @@ -2873,38 +2910,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [53] = 22, [54] = 23, [55] = 24, - [56] = 26, + [56] = 25, [57] = 27, [58] = 28, [59] = 29, - [60] = 2, - [61] = 32, - [62] = 33, - [63] = 35, - [64] = 3, + [60] = 30, + [61] = 33, + [62] = 2, + [63] = 34, + [64] = 36, [65] = 4, [66] = 5, [67] = 67, [68] = 68, - [69] = 69, - [70] = 68, + [69] = 68, + [70] = 70, [71] = 71, [72] = 71, - [73] = 68, + [73] = 71, [74] = 74, [75] = 75, [76] = 76, [77] = 77, - [78] = 78, - [79] = 79, - [80] = 76, - [81] = 78, - [82] = 77, - [83] = 79, + [78] = 77, + [79] = 75, + [80] = 74, + [81] = 76, + [82] = 82, + [83] = 82, [84] = 84, [85] = 84, [86] = 86, - [87] = 86, + [87] = 87, [88] = 88, [89] = 89, [90] = 90, @@ -2926,626 +2963,626 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [106] = 106, [107] = 107, [108] = 108, - [109] = 109, - [110] = 89, - [111] = 97, - [112] = 105, + [109] = 104, + [110] = 106, + [111] = 111, + [112] = 112, [113] = 113, [114] = 114, [115] = 88, - [116] = 116, + [116] = 108, [117] = 117, - [118] = 118, + [118] = 91, [119] = 92, - [120] = 93, - [121] = 95, + [120] = 94, + [121] = 96, [122] = 98, - [123] = 99, + [123] = 100, [124] = 101, - [125] = 103, - [126] = 104, - [127] = 107, - [128] = 109, - [129] = 118, - [130] = 130, - [131] = 90, - [132] = 108, - [133] = 114, - [134] = 134, - [135] = 130, - [136] = 94, - [137] = 96, - [138] = 106, - [139] = 139, - [140] = 116, - [141] = 134, + [125] = 102, + [126] = 105, + [127] = 111, + [128] = 117, + [129] = 129, + [130] = 87, + [131] = 112, + [132] = 129, + [133] = 89, + [134] = 113, + [135] = 93, + [136] = 95, + [137] = 137, + [138] = 103, + [139] = 86, + [140] = 140, + [141] = 140, [142] = 142, - [143] = 143, - [144] = 143, + [143] = 142, + [144] = 140, [145] = 142, - [146] = 142, - [147] = 143, - [148] = 148, + [146] = 146, + [147] = 147, + [148] = 147, [149] = 149, - [150] = 149, + [150] = 150, [151] = 151, - [152] = 152, - [153] = 153, - [154] = 149, - [155] = 151, - [156] = 152, - [157] = 151, - [158] = 152, - [159] = 153, - [160] = 151, - [161] = 152, - [162] = 152, - [163] = 152, - [164] = 164, + [152] = 149, + [153] = 149, + [154] = 147, + [155] = 150, + [156] = 150, + [157] = 157, + [158] = 158, + [159] = 150, + [160] = 149, + [161] = 151, + [162] = 150, + [163] = 151, + [164] = 147, [165] = 165, - [166] = 164, - [167] = 151, - [168] = 168, - [169] = 153, + [166] = 147, + [167] = 150, + [168] = 151, + [169] = 158, [170] = 149, - [171] = 152, - [172] = 153, - [173] = 153, - [174] = 153, - [175] = 149, - [176] = 165, - [177] = 152, - [178] = 164, + [171] = 150, + [172] = 149, + [173] = 151, + [174] = 157, + [175] = 158, + [176] = 150, + [177] = 151, + [178] = 151, [179] = 151, - [180] = 153, - [181] = 153, - [182] = 151, - [183] = 168, + [180] = 165, + [181] = 149, + [182] = 182, + [183] = 183, [184] = 184, [185] = 185, - [186] = 186, + [186] = 182, [187] = 187, - [188] = 188, - [189] = 186, - [190] = 190, - [191] = 187, - [192] = 192, - [193] = 190, - [194] = 194, - [195] = 187, - [196] = 188, - [197] = 186, - [198] = 187, - [199] = 188, - [200] = 186, - [201] = 187, - [202] = 188, - [203] = 186, - [204] = 187, - [205] = 188, - [206] = 186, - [207] = 187, - [208] = 188, - [209] = 186, - [210] = 187, - [211] = 188, - [212] = 186, + [188] = 183, + [189] = 185, + [190] = 187, + [191] = 191, + [192] = 182, + [193] = 187, + [194] = 183, + [195] = 182, + [196] = 196, + [197] = 183, + [198] = 182, + [199] = 187, + [200] = 183, + [201] = 182, + [202] = 187, + [203] = 183, + [204] = 182, + [205] = 187, + [206] = 183, + [207] = 182, + [208] = 187, + [209] = 183, + [210] = 182, + [211] = 187, + [212] = 187, [213] = 187, - [214] = 188, - [215] = 188, - [216] = 188, - [217] = 188, + [214] = 187, + [215] = 215, + [216] = 216, + [217] = 217, [218] = 218, [219] = 219, - [220] = 220, - [221] = 220, - [222] = 222, - [223] = 220, - [224] = 220, - [225] = 222, - [226] = 222, + [220] = 217, + [221] = 219, + [222] = 219, + [223] = 217, + [224] = 219, + [225] = 218, + [226] = 217, [227] = 227, - [228] = 222, + [228] = 228, [229] = 227, - [230] = 230, + [230] = 227, [231] = 231, - [232] = 219, - [233] = 233, + [232] = 232, + [233] = 232, [234] = 234, - [235] = 235, + [235] = 234, [236] = 236, - [237] = 237, - [238] = 233, - [239] = 234, + [237] = 234, + [238] = 234, + [239] = 232, [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, + [241] = 216, + [242] = 227, + [243] = 215, [244] = 244, [245] = 245, - [246] = 240, - [247] = 247, - [248] = 233, - [249] = 234, - [250] = 233, - [251] = 240, - [252] = 240, + [246] = 246, + [247] = 232, + [248] = 232, + [249] = 249, + [250] = 250, + [251] = 232, + [252] = 245, [253] = 253, - [254] = 240, - [255] = 218, - [256] = 231, - [257] = 240, - [258] = 240, - [259] = 259, - [260] = 234, - [261] = 247, - [262] = 247, - [263] = 247, - [264] = 241, - [265] = 230, - [266] = 244, - [267] = 240, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 232, + [258] = 255, + [259] = 255, + [260] = 255, + [261] = 256, + [262] = 236, + [263] = 244, + [264] = 232, + [265] = 265, + [266] = 266, + [267] = 265, [268] = 268, [269] = 269, - [270] = 270, + [270] = 266, [271] = 271, - [272] = 268, - [273] = 271, - [274] = 274, - [275] = 275, - [276] = 274, - [277] = 275, - [278] = 278, - [279] = 269, - [280] = 270, - [281] = 268, - [282] = 268, - [283] = 271, - [284] = 274, - [285] = 275, - [286] = 271, - [287] = 278, - [288] = 269, - [289] = 270, - [290] = 278, - [291] = 269, - [292] = 278, - [293] = 274, - [294] = 275, - [295] = 278, - [296] = 269, - [297] = 278, - [298] = 269, - [299] = 270, - [300] = 268, - [301] = 271, - [302] = 274, - [303] = 275, - [304] = 278, - [305] = 269, - [306] = 270, - [307] = 268, + [272] = 272, + [273] = 273, + [274] = 272, + [275] = 268, + [276] = 269, + [277] = 277, + [278] = 265, + [279] = 266, + [280] = 271, + [281] = 272, + [282] = 273, + [283] = 268, + [284] = 269, + [285] = 277, + [286] = 265, + [287] = 266, + [288] = 271, + [289] = 271, + [290] = 272, + [291] = 271, + [292] = 272, + [293] = 273, + [294] = 268, + [295] = 269, + [296] = 277, + [297] = 277, + [298] = 266, + [299] = 273, + [300] = 271, + [301] = 272, + [302] = 273, + [303] = 268, + [304] = 269, + [305] = 277, + [306] = 265, + [307] = 266, [308] = 271, - [309] = 274, - [310] = 275, - [311] = 278, - [312] = 268, - [313] = 271, - [314] = 274, - [315] = 275, - [316] = 269, - [317] = 274, - [318] = 275, + [309] = 272, + [310] = 268, + [311] = 269, + [312] = 277, + [313] = 265, + [314] = 266, + [315] = 268, + [316] = 271, + [317] = 272, + [318] = 269, [319] = 268, - [320] = 270, - [321] = 271, - [322] = 322, - [323] = 323, - [324] = 168, - [325] = 325, - [326] = 326, - [327] = 325, - [328] = 326, + [320] = 269, + [321] = 277, + [322] = 266, + [323] = 273, + [324] = 277, + [325] = 265, + [326] = 265, + [327] = 327, + [328] = 327, [329] = 329, - [330] = 330, - [331] = 331, + [330] = 165, + [331] = 327, [332] = 332, [333] = 333, - [334] = 323, - [335] = 332, - [336] = 331, - [337] = 325, - [338] = 322, - [339] = 322, - [340] = 332, - [341] = 323, - [342] = 331, - [343] = 326, - [344] = 344, - [345] = 344, - [346] = 344, - [347] = 347, - [348] = 348, - [349] = 347, + [334] = 334, + [335] = 335, + [336] = 332, + [337] = 333, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 332, + [342] = 340, + [343] = 335, + [344] = 333, + [345] = 334, + [346] = 334, + [347] = 335, + [348] = 340, + [349] = 349, [350] = 350, - [351] = 350, - [352] = 243, - [353] = 344, - [354] = 347, - [355] = 243, - [356] = 344, - [357] = 344, - [358] = 347, - [359] = 347, - [360] = 347, + [351] = 349, + [352] = 352, + [353] = 350, + [354] = 349, + [355] = 350, + [356] = 349, + [357] = 246, + [358] = 352, + [359] = 246, + [360] = 246, [361] = 350, - [362] = 243, - [363] = 344, - [364] = 347, - [365] = 344, - [366] = 347, - [367] = 367, - [368] = 368, - [369] = 367, - [370] = 370, - [371] = 371, - [372] = 370, + [362] = 349, + [363] = 363, + [364] = 349, + [365] = 350, + [366] = 350, + [367] = 349, + [368] = 352, + [369] = 350, + [370] = 349, + [371] = 350, + [372] = 372, [373] = 373, - [374] = 368, - [375] = 367, - [376] = 370, - [377] = 370, - [378] = 370, - [379] = 329, - [380] = 370, - [381] = 368, - [382] = 368, - [383] = 368, - [384] = 367, - [385] = 333, - [386] = 151, - [387] = 370, - [388] = 368, - [389] = 367, - [390] = 367, - [391] = 370, - [392] = 368, - [393] = 367, - [394] = 367, - [395] = 368, - [396] = 396, - [397] = 370, - [398] = 370, - [399] = 399, - [400] = 400, - [401] = 367, - [402] = 368, - [403] = 367, - [404] = 368, - [405] = 405, - [406] = 400, - [407] = 168, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 168, + [374] = 373, + [375] = 375, + [376] = 372, + [377] = 377, + [378] = 375, + [379] = 373, + [380] = 372, + [381] = 375, + [382] = 372, + [383] = 383, + [384] = 384, + [385] = 149, + [386] = 373, + [387] = 375, + [388] = 388, + [389] = 375, + [390] = 372, + [391] = 329, + [392] = 373, + [393] = 373, + [394] = 394, + [395] = 375, + [396] = 372, + [397] = 338, + [398] = 398, + [399] = 373, + [400] = 373, + [401] = 375, + [402] = 375, + [403] = 372, + [404] = 373, + [405] = 375, + [406] = 372, + [407] = 373, + [408] = 375, + [409] = 372, + [410] = 372, + [411] = 411, [412] = 412, [413] = 413, - [414] = 329, - [415] = 333, + [414] = 414, + [415] = 414, [416] = 416, - [417] = 151, - [418] = 168, - [419] = 329, - [420] = 333, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, [421] = 421, - [422] = 422, + [422] = 149, [423] = 423, - [424] = 422, + [424] = 424, [425] = 425, - [426] = 426, + [426] = 419, [427] = 427, [428] = 428, [429] = 429, - [430] = 427, + [430] = 329, [431] = 431, [432] = 432, - [433] = 433, - [434] = 422, - [435] = 429, - [436] = 431, - [437] = 432, - [438] = 438, - [439] = 439, - [440] = 429, - [441] = 441, - [442] = 442, - [443] = 431, + [433] = 165, + [434] = 434, + [435] = 329, + [436] = 411, + [437] = 377, + [438] = 165, + [439] = 419, + [440] = 440, + [441] = 338, + [442] = 412, + [443] = 420, [444] = 444, - [445] = 445, - [446] = 432, - [447] = 433, - [448] = 405, - [449] = 433, - [450] = 433, - [451] = 433, - [452] = 433, - [453] = 433, - [454] = 433, - [455] = 433, - [456] = 433, - [457] = 444, - [458] = 410, - [459] = 427, - [460] = 460, + [445] = 432, + [446] = 412, + [447] = 447, + [448] = 414, + [449] = 449, + [450] = 411, + [451] = 451, + [452] = 411, + [453] = 411, + [454] = 411, + [455] = 411, + [456] = 411, + [457] = 411, + [458] = 411, + [459] = 432, + [460] = 165, [461] = 461, - [462] = 333, - [463] = 463, - [464] = 460, - [465] = 465, - [466] = 465, + [462] = 431, + [463] = 461, + [464] = 451, + [465] = 338, + [466] = 420, [467] = 467, - [468] = 467, - [469] = 461, - [470] = 470, + [468] = 329, + [469] = 469, + [470] = 338, [471] = 471, - [472] = 329, - [473] = 463, + [472] = 472, + [473] = 473, [474] = 474, - [475] = 470, - [476] = 474, - [477] = 471, - [478] = 478, + [475] = 475, + [476] = 471, + [477] = 472, + [478] = 467, [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, + [480] = 469, + [481] = 474, + [482] = 475, [483] = 483, - [484] = 484, - [485] = 485, + [484] = 479, + [485] = 483, [486] = 486, [487] = 487, [488] = 488, [489] = 489, - [490] = 480, + [490] = 490, [491] = 491, - [492] = 479, + [492] = 492, [493] = 493, [494] = 494, [495] = 495, - [496] = 496, + [496] = 486, [497] = 497, [498] = 498, [499] = 499, - [500] = 481, + [500] = 500, [501] = 501, - [502] = 499, - [503] = 481, - [504] = 479, - [505] = 493, + [502] = 488, + [503] = 487, + [504] = 504, + [505] = 500, [506] = 506, - [507] = 494, - [508] = 495, - [509] = 496, - [510] = 510, - [511] = 499, - [512] = 481, - [513] = 513, - [514] = 479, - [515] = 493, - [516] = 494, - [517] = 495, - [518] = 496, - [519] = 499, - [520] = 481, - [521] = 521, - [522] = 522, - [523] = 493, - [524] = 494, - [525] = 495, - [526] = 496, - [527] = 499, - [528] = 481, - [529] = 479, - [530] = 493, - [531] = 494, - [532] = 495, - [533] = 496, - [534] = 499, - [535] = 481, - [536] = 479, - [537] = 493, - [538] = 494, - [539] = 495, - [540] = 496, - [541] = 499, - [542] = 481, - [543] = 501, - [544] = 479, - [545] = 545, - [546] = 546, - [547] = 513, - [548] = 493, - [549] = 487, - [550] = 498, - [551] = 483, - [552] = 482, - [553] = 479, - [554] = 546, - [555] = 494, + [507] = 507, + [508] = 508, + [509] = 495, + [510] = 486, + [511] = 497, + [512] = 498, + [513] = 499, + [514] = 501, + [515] = 515, + [516] = 516, + [517] = 487, + [518] = 495, + [519] = 486, + [520] = 497, + [521] = 498, + [522] = 499, + [523] = 523, + [524] = 501, + [525] = 487, + [526] = 526, + [527] = 495, + [528] = 486, + [529] = 497, + [530] = 498, + [531] = 499, + [532] = 501, + [533] = 487, + [534] = 495, + [535] = 486, + [536] = 497, + [537] = 498, + [538] = 499, + [539] = 501, + [540] = 487, + [541] = 495, + [542] = 486, + [543] = 497, + [544] = 498, + [545] = 499, + [546] = 501, + [547] = 487, + [548] = 491, + [549] = 494, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 553, + [555] = 501, [556] = 556, - [557] = 495, + [557] = 557, [558] = 558, - [559] = 493, - [560] = 558, - [561] = 496, - [562] = 494, - [563] = 495, - [564] = 496, - [565] = 546, - [566] = 497, - [567] = 501, - [568] = 545, - [569] = 483, - [570] = 570, - [571] = 571, - [572] = 546, - [573] = 497, - [574] = 501, - [575] = 545, - [576] = 483, - [577] = 501, - [578] = 545, - [579] = 501, - [580] = 545, - [581] = 581, - [582] = 582, - [583] = 497, - [584] = 584, - [585] = 501, - [586] = 586, - [587] = 497, - [588] = 588, - [589] = 588, - [590] = 501, - [591] = 545, - [592] = 592, - [593] = 556, + [559] = 559, + [560] = 551, + [561] = 516, + [562] = 562, + [563] = 563, + [564] = 500, + [565] = 494, + [566] = 550, + [567] = 558, + [568] = 558, + [569] = 495, + [570] = 563, + [571] = 563, + [572] = 500, + [573] = 494, + [574] = 550, + [575] = 558, + [576] = 576, + [577] = 577, + [578] = 494, + [579] = 550, + [580] = 580, + [581] = 550, + [582] = 497, + [583] = 583, + [584] = 498, + [585] = 499, + [586] = 494, + [587] = 550, + [588] = 495, + [589] = 563, + [590] = 486, + [591] = 497, + [592] = 494, + [593] = 498, [594] = 499, - [595] = 556, - [596] = 556, - [597] = 556, - [598] = 556, - [599] = 556, - [600] = 556, - [601] = 491, - [602] = 584, - [603] = 489, - [604] = 522, - [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 607, - [611] = 611, + [595] = 494, + [596] = 500, + [597] = 515, + [598] = 501, + [599] = 583, + [600] = 583, + [601] = 576, + [602] = 583, + [603] = 577, + [604] = 583, + [605] = 583, + [606] = 583, + [607] = 583, + [608] = 487, + [609] = 507, + [610] = 493, + [611] = 552, [612] = 612, [613] = 613, - [614] = 612, + [614] = 614, [615] = 615, [616] = 616, - [617] = 608, - [618] = 609, - [619] = 611, + [617] = 617, + [618] = 613, + [619] = 617, [620] = 615, - [621] = 613, - [622] = 622, + [621] = 621, + [622] = 621, [623] = 623, - [624] = 624, + [624] = 614, [625] = 625, - [626] = 626, - [627] = 627, + [626] = 625, + [627] = 623, [628] = 628, [629] = 629, [630] = 630, [631] = 631, [632] = 632, - [633] = 632, - [634] = 634, + [633] = 633, + [634] = 628, [635] = 635, [636] = 636, - [637] = 628, - [638] = 622, + [637] = 637, + [638] = 638, [639] = 639, [640] = 640, - [641] = 629, + [641] = 641, [642] = 642, [643] = 643, - [644] = 640, - [645] = 631, - [646] = 623, - [647] = 647, - [648] = 648, - [649] = 639, - [650] = 642, - [651] = 648, - [652] = 652, + [644] = 644, + [645] = 640, + [646] = 646, + [647] = 639, + [648] = 646, + [649] = 629, + [650] = 644, + [651] = 651, + [652] = 636, [653] = 653, [654] = 654, - [655] = 655, + [655] = 643, [656] = 656, - [657] = 657, - [658] = 654, - [659] = 655, + [657] = 651, + [658] = 653, + [659] = 659, [660] = 660, [661] = 661, [662] = 662, [663] = 663, [664] = 664, [665] = 665, - [666] = 660, - [667] = 663, - [668] = 664, + [666] = 666, + [667] = 667, + [668] = 216, [669] = 669, - [670] = 656, + [670] = 670, [671] = 671, [672] = 672, - [673] = 653, - [674] = 674, - [675] = 657, - [676] = 676, - [677] = 677, - [678] = 672, - [679] = 671, - [680] = 662, - [681] = 661, - [682] = 682, - [683] = 218, - [684] = 674, - [685] = 219, - [686] = 665, - [687] = 682, - [688] = 669, - [689] = 676, - [690] = 677, - [691] = 691, - [692] = 691, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, + [673] = 673, + [674] = 662, + [675] = 675, + [676] = 663, + [677] = 673, + [678] = 678, + [679] = 679, + [680] = 215, + [681] = 675, + [682] = 660, + [683] = 661, + [684] = 670, + [685] = 678, + [686] = 686, + [687] = 679, + [688] = 665, + [689] = 666, + [690] = 686, + [691] = 659, + [692] = 667, + [693] = 669, + [694] = 671, + [695] = 672, + [696] = 664, [697] = 697, [698] = 698, [699] = 699, [700] = 700, - [701] = 698, + [701] = 701, [702] = 702, - [703] = 699, - [704] = 697, + [703] = 697, + [704] = 704, [705] = 705, - [706] = 693, - [707] = 702, + [706] = 706, + [707] = 701, [708] = 708, - [709] = 696, - [710] = 695, - [711] = 705, - [712] = 708, - [713] = 700, - [714] = 714, - [715] = 714, - [716] = 694, - [717] = 717, - [718] = 718, + [709] = 698, + [710] = 710, + [711] = 708, + [712] = 712, + [713] = 706, + [714] = 712, + [715] = 702, + [716] = 700, + [717] = 705, + [718] = 699, [719] = 719, - [720] = 718, - [721] = 719, - [722] = 717, + [720] = 704, + [721] = 710, + [722] = 719, [723] = 723, [724] = 724, - [725] = 725, + [725] = 723, [726] = 726, - [727] = 727, - [728] = 728, + [727] = 724, + [728] = 726, [729] = 729, [730] = 730, [731] = 731, @@ -3560,2051 +3597,2108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [740] = 740, [741] = 741, [742] = 742, - [743] = 731, - [744] = 733, + [743] = 739, + [744] = 744, [745] = 745, [746] = 746, [747] = 747, - [748] = 736, - [749] = 749, + [748] = 748, + [749] = 747, [750] = 750, [751] = 751, [752] = 752, - [753] = 737, + [753] = 753, [754] = 754, [755] = 755, - [756] = 754, + [756] = 756, [757] = 757, [758] = 758, - [759] = 755, - [760] = 219, - [761] = 727, + [759] = 754, + [760] = 760, + [761] = 761, [762] = 762, - [763] = 763, - [764] = 741, - [765] = 765, + [763] = 756, + [764] = 764, + [765] = 758, [766] = 766, [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 725, - [772] = 728, - [773] = 773, - [774] = 774, - [775] = 732, + [768] = 760, + [769] = 735, + [770] = 736, + [771] = 737, + [772] = 738, + [773] = 761, + [774] = 744, + [775] = 755, [776] = 776, [777] = 777, - [778] = 778, - [779] = 745, - [780] = 749, - [781] = 781, - [782] = 750, - [783] = 783, - [784] = 784, + [778] = 746, + [779] = 752, + [780] = 753, + [781] = 757, + [782] = 782, + [783] = 777, + [784] = 782, [785] = 785, - [786] = 757, - [787] = 758, + [786] = 785, + [787] = 762, [788] = 788, - [789] = 762, - [790] = 765, - [791] = 767, - [792] = 739, - [793] = 788, - [794] = 770, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, [795] = 795, - [796] = 742, - [797] = 778, + [796] = 796, + [797] = 788, [798] = 798, - [799] = 723, - [800] = 785, - [801] = 801, - [802] = 735, + [799] = 799, + [800] = 800, + [801] = 800, + [802] = 802, [803] = 803, [804] = 804, [805] = 805, - [806] = 806, - [807] = 807, - [808] = 747, + [806] = 730, + [807] = 734, + [808] = 808, [809] = 809, - [810] = 776, - [811] = 798, - [812] = 801, - [813] = 813, - [814] = 766, - [815] = 738, - [816] = 730, - [817] = 734, - [818] = 804, - [819] = 805, - [820] = 774, - [821] = 783, - [822] = 822, - [823] = 806, - [824] = 781, - [825] = 807, - [826] = 218, - [827] = 740, - [828] = 773, - [829] = 809, - [830] = 822, - [831] = 777, - [832] = 784, - [833] = 726, - [834] = 751, - [835] = 768, - [836] = 746, - [837] = 803, - [838] = 769, - [839] = 729, - [840] = 752, - [841] = 813, - [842] = 803, - [843] = 729, - [844] = 724, - [845] = 795, - [846] = 763, - [847] = 847, - [848] = 847, - [849] = 847, - [850] = 847, - [851] = 847, - [852] = 847, + [810] = 731, + [811] = 732, + [812] = 733, + [813] = 792, + [814] = 764, + [815] = 793, + [816] = 740, + [817] = 817, + [818] = 794, + [819] = 796, + [820] = 741, + [821] = 821, + [822] = 742, + [823] = 823, + [824] = 798, + [825] = 751, + [826] = 215, + [827] = 745, + [828] = 748, + [829] = 805, + [830] = 216, + [831] = 789, + [832] = 795, + [833] = 799, + [834] = 729, + [835] = 808, + [836] = 836, + [837] = 821, + [838] = 803, + [839] = 823, + [840] = 804, + [841] = 766, + [842] = 767, + [843] = 750, + [844] = 776, + [845] = 791, + [846] = 802, + [847] = 809, + [848] = 817, + [849] = 750, + [850] = 791, + [851] = 836, + [852] = 790, [853] = 853, [854] = 853, - [855] = 855, - [856] = 855, - [857] = 855, - [858] = 855, + [855] = 853, + [856] = 853, + [857] = 853, + [858] = 853, [859] = 859, - [860] = 855, - [861] = 855, - [862] = 855, - [863] = 855, - [864] = 864, + [860] = 859, + [861] = 861, + [862] = 861, + [863] = 861, + [864] = 861, [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 859, + [866] = 861, + [867] = 861, + [868] = 861, + [869] = 861, [870] = 870, [871] = 871, - [872] = 871, - [873] = 864, - [874] = 865, - [875] = 866, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 870, [876] = 876, [877] = 877, [878] = 878, [879] = 879, - [880] = 878, - [881] = 865, - [882] = 866, - [883] = 867, - [884] = 877, - [885] = 868, - [886] = 864, - [887] = 878, - [888] = 877, - [889] = 879, - [890] = 865, - [891] = 866, - [892] = 878, - [893] = 879, - [894] = 870, - [895] = 865, - [896] = 871, - [897] = 866, - [898] = 867, + [880] = 880, + [881] = 873, + [882] = 877, + [883] = 871, + [884] = 870, + [885] = 878, + [886] = 876, + [887] = 872, + [888] = 879, + [889] = 877, + [890] = 880, + [891] = 871, + [892] = 872, + [893] = 873, + [894] = 874, + [895] = 878, + [896] = 877, + [897] = 870, + [898] = 878, [899] = 876, - [900] = 868, - [901] = 864, - [902] = 877, - [903] = 878, - [904] = 879, - [905] = 865, - [906] = 870, - [907] = 866, - [908] = 871, - [909] = 870, - [910] = 871, - [911] = 867, - [912] = 868, - [913] = 876, - [914] = 914, - [915] = 876, - [916] = 870, - [917] = 914, - [918] = 871, - [919] = 864, - [920] = 877, - [921] = 878, - [922] = 879, - [923] = 865, - [924] = 866, - [925] = 870, - [926] = 871, - [927] = 870, - [928] = 870, - [929] = 871, - [930] = 867, - [931] = 876, - [932] = 870, - [933] = 868, - [934] = 870, - [935] = 859, - [936] = 864, - [937] = 877, - [938] = 878, - [939] = 879, - [940] = 865, - [941] = 866, - [942] = 859, - [943] = 879, - [944] = 867, - [945] = 868, - [946] = 867, - [947] = 864, - [948] = 867, - [949] = 868, - [950] = 864, - [951] = 870, - [952] = 870, - [953] = 870, - [954] = 868, + [900] = 878, + [901] = 870, + [902] = 876, + [903] = 879, + [904] = 877, + [905] = 880, + [906] = 878, + [907] = 870, + [908] = 876, + [909] = 879, + [910] = 880, + [911] = 871, + [912] = 872, + [913] = 873, + [914] = 874, + [915] = 871, + [916] = 872, + [917] = 877, + [918] = 878, + [919] = 874, + [920] = 879, + [921] = 880, + [922] = 922, + [923] = 922, + [924] = 870, + [925] = 877, + [926] = 877, + [927] = 927, + [928] = 871, + [929] = 876, + [930] = 865, + [931] = 873, + [932] = 879, + [933] = 880, + [934] = 871, + [935] = 872, + [936] = 873, + [937] = 874, + [938] = 874, + [939] = 922, + [940] = 872, + [941] = 877, + [942] = 878, + [943] = 873, + [944] = 876, + [945] = 879, + [946] = 873, + [947] = 874, + [948] = 865, + [949] = 880, + [950] = 871, + [951] = 872, + [952] = 877, + [953] = 874, + [954] = 922, [955] = 877, - [956] = 878, - [957] = 879, - [958] = 877, - [959] = 859, - [960] = 960, - [961] = 961, - [962] = 859, - [963] = 859, - [964] = 859, - [965] = 965, - [966] = 960, - [967] = 967, - [968] = 960, - [969] = 961, - [970] = 970, - [971] = 965, - [972] = 972, - [973] = 961, - [974] = 974, - [975] = 975, - [976] = 859, - [977] = 977, - [978] = 965, + [956] = 877, + [957] = 877, + [958] = 870, + [959] = 922, + [960] = 876, + [961] = 879, + [962] = 880, + [963] = 927, + [964] = 964, + [965] = 865, + [966] = 966, + [967] = 865, + [968] = 865, + [969] = 969, + [970] = 865, + [971] = 865, + [972] = 964, + [973] = 969, + [974] = 969, + [975] = 964, + [976] = 976, + [977] = 966, + [978] = 978, [979] = 979, - [980] = 960, - [981] = 961, - [982] = 965, + [980] = 980, + [981] = 981, + [982] = 982, [983] = 983, [984] = 984, - [985] = 985, + [985] = 966, [986] = 986, - [987] = 984, - [988] = 970, - [989] = 974, - [990] = 636, - [991] = 859, - [992] = 859, - [993] = 961, - [994] = 970, - [995] = 979, - [996] = 996, - [997] = 960, - [998] = 983, - [999] = 967, - [1000] = 972, - [1001] = 979, - [1002] = 984, - [1003] = 983, - [1004] = 859, - [1005] = 972, - [1006] = 974, + [987] = 865, + [988] = 988, + [989] = 865, + [990] = 632, + [991] = 980, + [992] = 981, + [993] = 964, + [994] = 982, + [995] = 976, + [996] = 964, + [997] = 964, + [998] = 966, + [999] = 969, + [1000] = 635, + [1001] = 966, + [1002] = 865, + [1003] = 964, + [1004] = 966, + [1005] = 984, + [1006] = 969, [1007] = 1007, - [1008] = 625, - [1009] = 960, - [1010] = 985, - [1011] = 1011, - [1012] = 961, - [1013] = 634, - [1014] = 626, - [1015] = 630, - [1016] = 984, - [1017] = 961, - [1018] = 1018, - [1019] = 960, - [1020] = 975, - [1021] = 977, - [1022] = 967, - [1023] = 624, - [1024] = 977, - [1025] = 967, - [1026] = 965, - [1027] = 985, - [1028] = 635, + [1008] = 969, + [1009] = 641, + [1010] = 1010, + [1011] = 969, + [1012] = 642, + [1013] = 966, + [1014] = 865, + [1015] = 631, + [1016] = 983, + [1017] = 1017, + [1018] = 976, + [1019] = 630, + [1020] = 978, + [1021] = 988, + [1022] = 979, + [1023] = 980, + [1024] = 1024, + [1025] = 981, + [1026] = 982, + [1027] = 983, + [1028] = 984, [1029] = 1029, - [1030] = 977, - [1031] = 1031, - [1032] = 985, - [1033] = 965, - [1034] = 979, - [1035] = 970, - [1036] = 975, - [1037] = 972, - [1038] = 974, - [1039] = 983, - [1040] = 975, - [1041] = 965, - [1042] = 1042, - [1043] = 630, - [1044] = 967, - [1045] = 985, - [1046] = 970, - [1047] = 972, - [1048] = 1007, - [1049] = 974, - [1050] = 975, - [1051] = 979, - [1052] = 984, - [1053] = 983, - [1054] = 977, + [1030] = 986, + [1031] = 978, + [1032] = 979, + [1033] = 988, + [1034] = 637, + [1035] = 986, + [1036] = 641, + [1037] = 976, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 988, + [1042] = 978, + [1043] = 979, + [1044] = 1007, + [1045] = 1045, + [1046] = 617, + [1047] = 980, + [1048] = 981, + [1049] = 982, + [1050] = 983, + [1051] = 630, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, [1055] = 1055, - [1056] = 634, - [1057] = 1031, - [1058] = 967, - [1059] = 985, - [1060] = 970, - [1061] = 972, - [1062] = 974, - [1063] = 975, - [1064] = 979, - [1065] = 983, - [1066] = 624, - [1067] = 625, - [1068] = 961, - [1069] = 626, - [1070] = 1018, - [1071] = 996, - [1072] = 1029, - [1073] = 635, - [1074] = 636, - [1075] = 1075, + [1056] = 988, + [1057] = 978, + [1058] = 1058, + [1059] = 966, + [1060] = 976, + [1061] = 1061, + [1062] = 1007, + [1063] = 1063, + [1064] = 1064, + [1065] = 616, + [1066] = 984, + [1067] = 986, + [1068] = 1017, + [1069] = 1069, + [1070] = 1070, + [1071] = 988, + [1072] = 979, + [1073] = 980, + [1074] = 981, + [1075] = 982, [1076] = 1076, - [1077] = 1077, - [1078] = 616, - [1079] = 960, - [1080] = 965, - [1081] = 647, - [1082] = 1011, - [1083] = 986, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, + [1077] = 983, + [1078] = 984, + [1079] = 978, + [1080] = 979, + [1081] = 980, + [1082] = 1082, + [1083] = 981, + [1084] = 982, + [1085] = 983, + [1086] = 984, + [1087] = 986, + [1088] = 986, [1089] = 1089, [1090] = 1090, - [1091] = 1011, - [1092] = 986, + [1091] = 1091, + [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, + [1095] = 1029, + [1096] = 1010, + [1097] = 1024, [1098] = 1098, - [1099] = 984, - [1100] = 1007, + [1099] = 654, + [1100] = 1100, [1101] = 1101, - [1102] = 1102, - [1103] = 967, - [1104] = 1104, - [1105] = 985, - [1106] = 970, - [1107] = 972, + [1102] = 638, + [1103] = 1024, + [1104] = 625, + [1105] = 1105, + [1106] = 1017, + [1107] = 1107, [1108] = 1108, - [1109] = 1109, - [1110] = 608, - [1111] = 609, - [1112] = 643, - [1113] = 652, - [1114] = 1018, - [1115] = 1031, - [1116] = 1116, - [1117] = 996, - [1118] = 1029, - [1119] = 974, - [1120] = 1120, - [1121] = 975, - [1122] = 984, - [1123] = 979, - [1124] = 977, - [1125] = 983, - [1126] = 1007, - [1127] = 977, - [1128] = 1018, - [1129] = 996, - [1130] = 1029, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1087, - [1135] = 1042, + [1109] = 978, + [1110] = 1110, + [1111] = 1029, + [1112] = 979, + [1113] = 980, + [1114] = 656, + [1115] = 1039, + [1116] = 981, + [1117] = 982, + [1118] = 983, + [1119] = 1119, + [1120] = 984, + [1121] = 1110, + [1122] = 1122, + [1123] = 1123, + [1124] = 637, + [1125] = 1125, + [1126] = 635, + [1127] = 986, + [1128] = 976, + [1129] = 642, + [1130] = 631, + [1131] = 964, + [1132] = 632, + [1133] = 1010, + [1134] = 1134, + [1135] = 969, [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 1031, + [1139] = 976, [1140] = 1140, - [1141] = 1141, - [1142] = 1132, - [1143] = 1094, - [1144] = 1007, - [1145] = 647, - [1146] = 1055, - [1147] = 1077, - [1148] = 984, - [1149] = 977, - [1150] = 1075, - [1151] = 1085, - [1152] = 1031, - [1153] = 1089, - [1154] = 1090, - [1155] = 967, - [1156] = 985, - [1157] = 970, - [1158] = 972, - [1159] = 974, - [1160] = 975, - [1161] = 979, - [1162] = 983, - [1163] = 643, - [1164] = 652, - [1165] = 643, - [1166] = 652, - [1167] = 647, - [1168] = 647, - [1169] = 1018, - [1170] = 1018, - [1171] = 996, - [1172] = 1029, - [1173] = 1084, - [1174] = 1095, - [1175] = 1137, - [1176] = 1141, - [1177] = 1102, - [1178] = 634, - [1179] = 996, - [1180] = 1093, - [1181] = 1029, - [1182] = 1031, - [1183] = 1136, - [1184] = 609, - [1185] = 1096, - [1186] = 1101, - [1187] = 1116, - [1188] = 1120, - [1189] = 1140, - [1190] = 1133, - [1191] = 1076, - [1192] = 1097, - [1193] = 1104, - [1194] = 1138, - [1195] = 1094, - [1196] = 1055, - [1197] = 1075, - [1198] = 624, - [1199] = 1084, - [1200] = 1095, - [1201] = 1093, - [1202] = 1096, - [1203] = 1097, - [1204] = 1108, - [1205] = 1109, - [1206] = 1085, - [1207] = 625, - [1208] = 629, - [1209] = 626, - [1210] = 642, - [1211] = 640, - [1212] = 643, - [1213] = 652, - [1214] = 647, - [1215] = 616, - [1216] = 1018, - [1217] = 996, - [1218] = 1029, - [1219] = 630, - [1220] = 631, - [1221] = 1137, - [1222] = 1141, - [1223] = 1102, - [1224] = 616, - [1225] = 1087, - [1226] = 636, - [1227] = 630, - [1228] = 1042, - [1229] = 1011, - [1230] = 1136, - [1231] = 1077, - [1232] = 1101, - [1233] = 1116, - [1234] = 1120, - [1235] = 1108, - [1236] = 1109, - [1237] = 1140, - [1238] = 1133, - [1239] = 1132, - [1240] = 1104, - [1241] = 630, - [1242] = 1076, - [1243] = 986, - [1244] = 1011, - [1245] = 986, - [1246] = 1104, - [1247] = 1138, - [1248] = 1094, - [1249] = 1055, - [1250] = 1075, - [1251] = 1084, - [1252] = 1095, - [1253] = 634, - [1254] = 1093, - [1255] = 1096, - [1256] = 1097, - [1257] = 624, + [1141] = 988, + [1142] = 1142, + [1143] = 1142, + [1144] = 631, + [1145] = 632, + [1146] = 616, + [1147] = 1007, + [1148] = 1137, + [1149] = 1024, + [1150] = 1069, + [1151] = 1070, + [1152] = 1110, + [1153] = 1039, + [1154] = 1017, + [1155] = 1029, + [1156] = 1010, + [1157] = 1076, + [1158] = 628, + [1159] = 629, + [1160] = 1007, + [1161] = 644, + [1162] = 654, + [1163] = 638, + [1164] = 1017, + [1165] = 1029, + [1166] = 1010, + [1167] = 636, + [1168] = 1101, + [1169] = 1063, + [1170] = 1054, + [1171] = 1090, + [1172] = 1024, + [1173] = 1098, + [1174] = 1136, + [1175] = 1058, + [1176] = 1055, + [1177] = 1100, + [1178] = 1038, + [1179] = 1123, + [1180] = 1138, + [1181] = 1140, + [1182] = 1061, + [1183] = 1064, + [1184] = 1119, + [1185] = 1082, + [1186] = 1122, + [1187] = 1040, + [1188] = 1094, + [1189] = 1105, + [1190] = 1107, + [1191] = 1108, + [1192] = 1089, + [1193] = 1125, + [1194] = 1134, + [1195] = 1092, + [1196] = 1076, + [1197] = 656, + [1198] = 1017, + [1199] = 1029, + [1200] = 1010, + [1201] = 1101, + [1202] = 1063, + [1203] = 1054, + [1204] = 1090, + [1205] = 1098, + [1206] = 1136, + [1207] = 1058, + [1208] = 1055, + [1209] = 1100, + [1210] = 1038, + [1211] = 1123, + [1212] = 1138, + [1213] = 1140, + [1214] = 1061, + [1215] = 642, + [1216] = 1119, + [1217] = 1082, + [1218] = 1122, + [1219] = 1040, + [1220] = 1094, + [1221] = 1105, + [1222] = 1107, + [1223] = 1108, + [1224] = 1089, + [1225] = 1125, + [1226] = 1134, + [1227] = 1092, + [1228] = 630, + [1229] = 625, + [1230] = 637, + [1231] = 635, + [1232] = 641, + [1233] = 642, + [1234] = 631, + [1235] = 632, + [1236] = 617, + [1237] = 1007, + [1238] = 656, + [1239] = 1137, + [1240] = 976, + [1241] = 988, + [1242] = 1024, + [1243] = 1069, + [1244] = 1070, + [1245] = 978, + [1246] = 979, + [1247] = 980, + [1248] = 981, + [1249] = 982, + [1250] = 983, + [1251] = 984, + [1252] = 986, + [1253] = 654, + [1254] = 638, + [1255] = 656, + [1256] = 616, + [1257] = 1007, [1258] = 625, - [1259] = 626, - [1260] = 1108, - [1261] = 1109, - [1262] = 635, - [1263] = 636, - [1264] = 608, - [1265] = 1085, - [1266] = 609, - [1267] = 647, - [1268] = 1077, - [1269] = 1138, - [1270] = 1137, - [1271] = 1141, - [1272] = 1102, - [1273] = 634, - [1274] = 1007, - [1275] = 635, - [1276] = 636, - [1277] = 1031, - [1278] = 624, - [1279] = 625, - [1280] = 1101, - [1281] = 626, - [1282] = 1116, - [1283] = 1120, - [1284] = 1089, - [1285] = 1090, - [1286] = 1140, - [1287] = 1133, - [1288] = 1132, - [1289] = 1076, - [1290] = 1089, - [1291] = 1090, - [1292] = 608, - [1293] = 635, - [1294] = 1007, - [1295] = 625, - [1296] = 629, - [1297] = 643, - [1298] = 630, - [1299] = 1089, - [1300] = 1090, - [1301] = 1138, - [1302] = 627, - [1303] = 631, - [1304] = 627, - [1305] = 1094, - [1306] = 1055, - [1307] = 1137, - [1308] = 1075, - [1309] = 652, - [1310] = 630, - [1311] = 1084, - [1312] = 1108, - [1313] = 1141, - [1314] = 1140, - [1315] = 1133, - [1316] = 1132, - [1317] = 1095, - [1318] = 1093, - [1319] = 1096, - [1320] = 1097, - [1321] = 1109, - [1322] = 1137, - [1323] = 634, - [1324] = 624, - [1325] = 1140, - [1326] = 626, - [1327] = 1094, - [1328] = 635, - [1329] = 636, - [1330] = 634, - [1331] = 1102, - [1332] = 1101, - [1333] = 624, - [1334] = 1085, - [1335] = 625, - [1336] = 626, - [1337] = 1077, - [1338] = 635, - [1339] = 636, - [1340] = 1093, - [1341] = 1076, - [1342] = 1088, - [1343] = 1007, - [1344] = 1098, - [1345] = 1086, - [1346] = 1018, - [1347] = 1116, - [1348] = 1085, - [1349] = 647, - [1350] = 1120, - [1351] = 1140, - [1352] = 1133, - [1353] = 1132, - [1354] = 1096, - [1355] = 1031, - [1356] = 1076, - [1357] = 647, - [1358] = 1104, - [1359] = 629, - [1360] = 1089, - [1361] = 1090, - [1362] = 642, - [1363] = 1133, - [1364] = 640, - [1365] = 647, - [1366] = 631, - [1367] = 1085, - [1368] = 1089, - [1369] = 1090, - [1370] = 1137, - [1371] = 1141, - [1372] = 1102, - [1373] = 1097, - [1374] = 642, - [1375] = 1055, - [1376] = 1104, - [1377] = 640, - [1378] = 1075, - [1379] = 647, - [1380] = 996, - [1381] = 1029, - [1382] = 1141, - [1383] = 1101, - [1384] = 1077, - [1385] = 1138, - [1386] = 1094, - [1387] = 643, - [1388] = 652, - [1389] = 1055, - [1390] = 1075, - [1391] = 1084, - [1392] = 1392, - [1393] = 1393, - [1394] = 1095, - [1395] = 1084, - [1396] = 1132, - [1397] = 1104, - [1398] = 629, - [1399] = 1138, - [1400] = 631, - [1401] = 642, - [1402] = 1093, - [1403] = 1108, - [1404] = 1109, - [1405] = 1101, - [1406] = 1102, - [1407] = 1095, - [1408] = 1096, - [1409] = 1097, - [1410] = 1108, - [1411] = 643, - [1412] = 652, - [1413] = 1116, - [1414] = 1109, - [1415] = 1120, - [1416] = 1077, - [1417] = 640, - [1418] = 1116, - [1419] = 1120, - [1420] = 1076, - [1421] = 1101, - [1422] = 1075, - [1423] = 1087, - [1424] = 1042, - [1425] = 643, - [1426] = 1136, - [1427] = 627, - [1428] = 635, - [1429] = 636, - [1430] = 652, - [1431] = 1076, - [1432] = 1042, - [1433] = 1102, - [1434] = 1084, - [1435] = 1136, - [1436] = 1077, - [1437] = 1087, - [1438] = 1095, - [1439] = 1085, - [1440] = 625, - [1441] = 626, - [1442] = 1096, - [1443] = 1097, - [1444] = 1137, - [1445] = 1089, - [1446] = 1090, - [1447] = 1104, - [1448] = 1132, - [1449] = 1116, - [1450] = 1138, - [1451] = 1087, - [1452] = 1042, - [1453] = 1136, - [1454] = 1120, - [1455] = 1141, - [1456] = 647, - [1457] = 1140, - [1458] = 1133, - [1459] = 1094, - [1460] = 1055, - [1461] = 1108, - [1462] = 1109, - [1463] = 630, - [1464] = 634, - [1465] = 627, - [1466] = 624, - [1467] = 1093, - [1468] = 640, - [1469] = 1392, - [1470] = 630, - [1471] = 1393, - [1472] = 634, - [1473] = 624, - [1474] = 625, - [1475] = 629, - [1476] = 626, - [1477] = 635, - [1478] = 636, - [1479] = 643, - [1480] = 652, - [1481] = 642, - [1482] = 631, - [1483] = 647, - [1484] = 647, - [1485] = 647, - [1486] = 647, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1489, - [1497] = 1492, - [1498] = 1498, - [1499] = 1498, - [1500] = 1490, - [1501] = 1491, - [1502] = 1502, - [1503] = 1502, - [1504] = 1495, - [1505] = 1493, - [1506] = 1494, - [1507] = 1498, - [1508] = 1495, - [1509] = 1489, - [1510] = 1492, - [1511] = 1498, - [1512] = 1491, - [1513] = 1490, - [1514] = 1491, - [1515] = 1492, - [1516] = 1502, - [1517] = 1494, - [1518] = 1502, - [1519] = 1490, - [1520] = 1493, - [1521] = 1494, - [1522] = 1493, - [1523] = 1495, - [1524] = 1489, - [1525] = 1525, - [1526] = 1525, - [1527] = 1527, - [1528] = 1525, - [1529] = 1529, + [1259] = 617, + [1260] = 1017, + [1261] = 1029, + [1262] = 1010, + [1263] = 1024, + [1264] = 1091, + [1265] = 1142, + [1266] = 1093, + [1267] = 1110, + [1268] = 1039, + [1269] = 630, + [1270] = 637, + [1271] = 1091, + [1272] = 1093, + [1273] = 635, + [1274] = 641, + [1275] = 1064, + [1276] = 1045, + [1277] = 1090, + [1278] = 631, + [1279] = 632, + [1280] = 1098, + [1281] = 654, + [1282] = 638, + [1283] = 1136, + [1284] = 1137, + [1285] = 1069, + [1286] = 1070, + [1287] = 1058, + [1288] = 1288, + [1289] = 1289, + [1290] = 1055, + [1291] = 1100, + [1292] = 630, + [1293] = 1038, + [1294] = 1123, + [1295] = 1138, + [1296] = 1069, + [1297] = 1070, + [1298] = 1140, + [1299] = 1061, + [1300] = 1064, + [1301] = 633, + [1302] = 1119, + [1303] = 1082, + [1304] = 1122, + [1305] = 637, + [1306] = 1040, + [1307] = 1094, + [1308] = 1105, + [1309] = 1107, + [1310] = 1108, + [1311] = 1089, + [1312] = 635, + [1313] = 641, + [1314] = 642, + [1315] = 1125, + [1316] = 1134, + [1317] = 1092, + [1318] = 631, + [1319] = 1076, + [1320] = 654, + [1321] = 638, + [1322] = 1017, + [1323] = 1029, + [1324] = 1010, + [1325] = 1101, + [1326] = 1063, + [1327] = 1054, + [1328] = 1090, + [1329] = 1098, + [1330] = 1136, + [1331] = 1058, + [1332] = 1055, + [1333] = 1100, + [1334] = 632, + [1335] = 1038, + [1336] = 1136, + [1337] = 1123, + [1338] = 1138, + [1339] = 1140, + [1340] = 1061, + [1341] = 1064, + [1342] = 1119, + [1343] = 1082, + [1344] = 1122, + [1345] = 1076, + [1346] = 1040, + [1347] = 1094, + [1348] = 1105, + [1349] = 1107, + [1350] = 1108, + [1351] = 1089, + [1352] = 1101, + [1353] = 1058, + [1354] = 1055, + [1355] = 1125, + [1356] = 1134, + [1357] = 1092, + [1358] = 1100, + [1359] = 1063, + [1360] = 656, + [1361] = 1137, + [1362] = 1054, + [1363] = 1038, + [1364] = 1123, + [1365] = 1138, + [1366] = 1140, + [1367] = 1125, + [1368] = 1061, + [1369] = 1064, + [1370] = 630, + [1371] = 1119, + [1372] = 1092, + [1373] = 1122, + [1374] = 1040, + [1375] = 1069, + [1376] = 1070, + [1377] = 1094, + [1378] = 1105, + [1379] = 637, + [1380] = 635, + [1381] = 641, + [1382] = 642, + [1383] = 631, + [1384] = 632, + [1385] = 1007, + [1386] = 654, + [1387] = 638, + [1388] = 656, + [1389] = 1024, + [1390] = 628, + [1391] = 629, + [1392] = 644, + [1393] = 1107, + [1394] = 630, + [1395] = 656, + [1396] = 636, + [1397] = 656, + [1398] = 1108, + [1399] = 1076, + [1400] = 1089, + [1401] = 628, + [1402] = 629, + [1403] = 1125, + [1404] = 644, + [1405] = 1134, + [1406] = 1092, + [1407] = 654, + [1408] = 638, + [1409] = 656, + [1410] = 1076, + [1411] = 628, + [1412] = 629, + [1413] = 636, + [1414] = 1101, + [1415] = 1063, + [1416] = 1137, + [1417] = 1054, + [1418] = 1090, + [1419] = 644, + [1420] = 637, + [1421] = 1137, + [1422] = 1090, + [1423] = 1098, + [1424] = 1136, + [1425] = 1058, + [1426] = 1055, + [1427] = 1100, + [1428] = 656, + [1429] = 1098, + [1430] = 636, + [1431] = 1038, + [1432] = 1134, + [1433] = 1052, + [1434] = 1053, + [1435] = 633, + [1436] = 1123, + [1437] = 1138, + [1438] = 1140, + [1439] = 1061, + [1440] = 1064, + [1441] = 1119, + [1442] = 1082, + [1443] = 1122, + [1444] = 1101, + [1445] = 635, + [1446] = 641, + [1447] = 1040, + [1448] = 1094, + [1449] = 1105, + [1450] = 1107, + [1451] = 1108, + [1452] = 1089, + [1453] = 642, + [1454] = 1063, + [1455] = 1054, + [1456] = 1069, + [1457] = 1070, + [1458] = 1082, + [1459] = 1136, + [1460] = 630, + [1461] = 637, + [1462] = 635, + [1463] = 641, + [1464] = 642, + [1465] = 631, + [1466] = 632, + [1467] = 1091, + [1468] = 1142, + [1469] = 1091, + [1470] = 656, + [1471] = 1076, + [1472] = 654, + [1473] = 638, + [1474] = 1142, + [1475] = 1101, + [1476] = 1063, + [1477] = 1093, + [1478] = 1054, + [1479] = 1093, + [1480] = 1090, + [1481] = 1069, + [1482] = 1098, + [1483] = 1070, + [1484] = 1058, + [1485] = 1055, + [1486] = 1100, + [1487] = 1038, + [1488] = 633, + [1489] = 1123, + [1490] = 1138, + [1491] = 1140, + [1492] = 1061, + [1493] = 1064, + [1494] = 1119, + [1495] = 1082, + [1496] = 1122, + [1497] = 1091, + [1498] = 1040, + [1499] = 633, + [1500] = 1094, + [1501] = 1105, + [1502] = 1107, + [1503] = 1108, + [1504] = 1089, + [1505] = 1142, + [1506] = 1093, + [1507] = 1125, + [1508] = 1134, + [1509] = 1092, + [1510] = 1137, + [1511] = 1288, + [1512] = 636, + [1513] = 656, + [1514] = 656, + [1515] = 656, + [1516] = 656, + [1517] = 637, + [1518] = 630, + [1519] = 635, + [1520] = 641, + [1521] = 642, + [1522] = 631, + [1523] = 632, + [1524] = 654, + [1525] = 638, + [1526] = 1289, + [1527] = 628, + [1528] = 629, + [1529] = 644, [1530] = 1530, [1531] = 1531, [1532] = 1532, - [1533] = 1533, - [1534] = 1532, - [1535] = 1531, + [1533] = 1532, + [1534] = 1534, + [1535] = 1535, [1536] = 1536, - [1537] = 1531, - [1538] = 1531, - [1539] = 1536, - [1540] = 1536, - [1541] = 1533, - [1542] = 1530, - [1543] = 1532, - [1544] = 1530, - [1545] = 1533, - [1546] = 1530, - [1547] = 1533, - [1548] = 1532, - [1549] = 1536, - [1550] = 1550, - [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1551, - [1555] = 1551, - [1556] = 1552, - [1557] = 1552, - [1558] = 1552, - [1559] = 1559, - [1560] = 1551, - [1561] = 1559, - [1562] = 1553, - [1563] = 1559, - [1564] = 1553, - [1565] = 1559, - [1566] = 1553, - [1567] = 1553, - [1568] = 1553, - [1569] = 1559, - [1570] = 1559, - [1571] = 1559, - [1572] = 1553, - [1573] = 1559, - [1574] = 642, - [1575] = 629, - [1576] = 1393, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1534, + [1542] = 1535, + [1543] = 1543, + [1544] = 1532, + [1545] = 1534, + [1546] = 1535, + [1547] = 1536, + [1548] = 1543, + [1549] = 1538, + [1550] = 1539, + [1551] = 1540, + [1552] = 1539, + [1553] = 1534, + [1554] = 1537, + [1555] = 1538, + [1556] = 1539, + [1557] = 1540, + [1558] = 1540, + [1559] = 1538, + [1560] = 1536, + [1561] = 1535, + [1562] = 1543, + [1563] = 1543, + [1564] = 1536, + [1565] = 1537, + [1566] = 1532, + [1567] = 1537, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1570, + [1572] = 1570, + [1573] = 1573, + [1574] = 1574, + [1575] = 1573, + [1576] = 1574, [1577] = 1577, - [1578] = 640, - [1579] = 1553, - [1580] = 631, - [1581] = 1392, - [1582] = 1582, - [1583] = 1583, - [1584] = 1584, - [1585] = 1585, - [1586] = 1586, - [1587] = 1587, - [1588] = 643, - [1589] = 652, - [1590] = 647, - [1591] = 1392, - [1592] = 1592, - [1593] = 1393, + [1578] = 1573, + [1579] = 1579, + [1580] = 1579, + [1581] = 1581, + [1582] = 1581, + [1583] = 1581, + [1584] = 1574, + [1585] = 1577, + [1586] = 1574, + [1587] = 1581, + [1588] = 1577, + [1589] = 1573, + [1590] = 1579, + [1591] = 1577, + [1592] = 1579, + [1593] = 1593, [1594] = 1594, - [1595] = 1392, - [1596] = 629, - [1597] = 642, - [1598] = 640, - [1599] = 631, - [1600] = 647, - [1601] = 1585, - [1602] = 1586, - [1603] = 1587, - [1604] = 629, - [1605] = 642, - [1606] = 640, - [1607] = 631, - [1608] = 1393, - [1609] = 629, - [1610] = 642, - [1611] = 1611, - [1612] = 640, - [1613] = 631, - [1614] = 1614, - [1615] = 1615, - [1616] = 643, - [1617] = 652, - [1618] = 1392, - [1619] = 1393, - [1620] = 1615, - [1621] = 1615, - [1622] = 1615, - [1623] = 1615, - [1624] = 1615, - [1625] = 1615, - [1626] = 1615, - [1627] = 1615, - [1628] = 1615, - [1629] = 1592, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1597, + [1599] = 1594, + [1600] = 1597, + [1601] = 1594, + [1602] = 1597, + [1603] = 1594, + [1604] = 1595, + [1605] = 1596, + [1606] = 1595, + [1607] = 1596, + [1608] = 1596, + [1609] = 1595, + [1610] = 1596, + [1611] = 1595, + [1612] = 1596, + [1613] = 1595, + [1614] = 1596, + [1615] = 629, + [1616] = 1595, + [1617] = 628, + [1618] = 644, + [1619] = 636, + [1620] = 1596, + [1621] = 1595, + [1622] = 1622, + [1623] = 1623, + [1624] = 1288, + [1625] = 1289, + [1626] = 638, + [1627] = 1627, + [1628] = 1628, + [1629] = 654, [1630] = 1630, - [1631] = 1584, - [1632] = 1630, + [1631] = 1631, + [1632] = 656, [1633] = 1633, - [1634] = 1594, - [1635] = 1635, - [1636] = 1630, - [1637] = 1630, - [1638] = 1614, - [1639] = 1639, - [1640] = 1583, - [1641] = 1630, + [1634] = 1634, + [1635] = 1288, + [1636] = 1289, + [1637] = 1627, + [1638] = 1628, + [1639] = 628, + [1640] = 629, + [1641] = 1641, [1642] = 1630, - [1643] = 1611, - [1644] = 1630, - [1645] = 1635, - [1646] = 1635, - [1647] = 1630, - [1648] = 1633, - [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1652, - [1653] = 1651, - [1654] = 1652, + [1643] = 644, + [1644] = 638, + [1645] = 636, + [1646] = 1646, + [1647] = 1647, + [1648] = 1289, + [1649] = 644, + [1650] = 628, + [1651] = 656, + [1652] = 636, + [1653] = 629, + [1654] = 1634, [1655] = 1655, - [1656] = 1656, - [1657] = 1655, - [1658] = 1658, - [1659] = 1659, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1663, - [1664] = 1664, - [1665] = 1665, - [1666] = 1666, - [1667] = 1658, - [1668] = 1658, - [1669] = 1658, - [1670] = 1658, - [1671] = 1658, - [1672] = 1658, - [1673] = 1658, + [1656] = 628, + [1657] = 629, + [1658] = 1634, + [1659] = 644, + [1660] = 636, + [1661] = 1634, + [1662] = 1634, + [1663] = 1634, + [1664] = 1634, + [1665] = 1634, + [1666] = 1634, + [1667] = 1634, + [1668] = 1288, + [1669] = 1288, + [1670] = 1289, + [1671] = 654, + [1672] = 1672, + [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, - [1677] = 1675, - [1678] = 1678, - [1679] = 1676, - [1680] = 1680, - [1681] = 1681, - [1682] = 1675, + [1675] = 1673, + [1676] = 1673, + [1677] = 1674, + [1678] = 1673, + [1679] = 1655, + [1680] = 1646, + [1681] = 1647, + [1682] = 1672, [1683] = 1683, - [1684] = 1678, - [1685] = 1676, - [1686] = 1681, - [1687] = 1675, - [1688] = 1678, - [1689] = 1676, - [1690] = 1681, - [1691] = 1675, - [1692] = 1678, - [1693] = 1676, - [1694] = 1681, - [1695] = 1664, - [1696] = 1675, - [1697] = 1665, - [1698] = 1678, - [1699] = 1676, - [1700] = 1681, - [1701] = 1675, - [1702] = 1678, - [1703] = 1676, - [1704] = 1681, - [1705] = 1660, - [1706] = 1675, - [1707] = 1678, - [1708] = 1676, - [1709] = 1681, - [1710] = 1675, - [1711] = 1678, - [1712] = 1683, - [1713] = 1678, - [1714] = 1683, - [1715] = 1666, - [1716] = 1683, - [1717] = 1674, - [1718] = 1683, - [1719] = 1683, - [1720] = 1661, - [1721] = 1662, - [1722] = 1683, - [1723] = 1663, - [1724] = 1683, - [1725] = 1681, - [1726] = 1726, - [1727] = 1659, - [1728] = 1661, + [1684] = 1672, + [1685] = 1633, + [1686] = 1673, + [1687] = 1641, + [1688] = 1673, + [1689] = 1673, + [1690] = 1631, + [1691] = 1673, + [1692] = 1692, + [1693] = 1693, + [1694] = 1693, + [1695] = 1695, + [1696] = 1696, + [1697] = 1695, + [1698] = 1698, + [1699] = 1698, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, + [1705] = 1705, + [1706] = 1704, + [1707] = 1704, + [1708] = 1708, + [1709] = 1704, + [1710] = 1704, + [1711] = 1711, + [1712] = 1704, + [1713] = 1704, + [1714] = 1704, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1718, + [1719] = 1719, + [1720] = 1720, + [1721] = 1720, + [1722] = 1717, + [1723] = 1723, + [1724] = 1724, + [1725] = 1718, + [1726] = 1718, + [1727] = 1719, + [1728] = 1720, [1729] = 1729, - [1730] = 1660, - [1731] = 1659, - [1732] = 1674, - [1733] = 1664, - [1734] = 1664, - [1735] = 1662, - [1736] = 1663, - [1737] = 1661, - [1738] = 1738, - [1739] = 1662, - [1740] = 1740, - [1741] = 1663, - [1742] = 1659, - [1743] = 1665, - [1744] = 1660, - [1745] = 1729, - [1746] = 1666, - [1747] = 1666, - [1748] = 1674, - [1749] = 1749, - [1750] = 1665, - [1751] = 1751, - [1752] = 1666, - [1753] = 1665, - [1754] = 1660, - [1755] = 1674, - [1756] = 1674, - [1757] = 1729, - [1758] = 1659, - [1759] = 1674, - [1760] = 1661, - [1761] = 1761, - [1762] = 1662, - [1763] = 1763, - [1764] = 1661, - [1765] = 1665, - [1766] = 1666, - [1767] = 1666, - [1768] = 1665, - [1769] = 1663, - [1770] = 1661, - [1771] = 1664, - [1772] = 1662, - [1773] = 1660, - [1774] = 1659, - [1775] = 1659, - [1776] = 1664, - [1777] = 1660, - [1778] = 1778, - [1779] = 1664, - [1780] = 1780, - [1781] = 1662, - [1782] = 1663, + [1730] = 1724, + [1731] = 1717, + [1732] = 1724, + [1733] = 1724, + [1734] = 1724, + [1735] = 1720, + [1736] = 1718, + [1737] = 1719, + [1738] = 1717, + [1739] = 1718, + [1740] = 1720, + [1741] = 1719, + [1742] = 1717, + [1743] = 1718, + [1744] = 1720, + [1745] = 1717, + [1746] = 1719, + [1747] = 1718, + [1748] = 1719, + [1749] = 1717, + [1750] = 1724, + [1751] = 1717, + [1752] = 1724, + [1753] = 1718, + [1754] = 1719, + [1755] = 1720, + [1756] = 1724, + [1757] = 1719, + [1758] = 1718, + [1759] = 1724, + [1760] = 1720, + [1761] = 1711, + [1762] = 1702, + [1763] = 1708, + [1764] = 1705, + [1765] = 1700, + [1766] = 1703, + [1767] = 1715, + [1768] = 1701, + [1769] = 1769, + [1770] = 1711, + [1771] = 1702, + [1772] = 1708, + [1773] = 1705, + [1774] = 1700, + [1775] = 1775, + [1776] = 1703, + [1777] = 1701, + [1778] = 1769, + [1779] = 1779, + [1780] = 1715, + [1781] = 1716, + [1782] = 1716, [1783] = 1783, - [1784] = 1784, - [1785] = 1729, - [1786] = 1663, - [1787] = 1787, - [1788] = 1788, + [1784] = 1708, + [1785] = 1716, + [1786] = 1715, + [1787] = 1711, + [1788] = 1715, [1789] = 1789, - [1790] = 1784, - [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1787, - [1796] = 1749, - [1797] = 1666, - [1798] = 1788, - [1799] = 1787, - [1800] = 1793, - [1801] = 1674, - [1802] = 1661, - [1803] = 1662, - [1804] = 1663, - [1805] = 1780, - [1806] = 1787, + [1790] = 1702, + [1791] = 1708, + [1792] = 1711, + [1793] = 1702, + [1794] = 1708, + [1795] = 1705, + [1796] = 1796, + [1797] = 1700, + [1798] = 1705, + [1799] = 1700, + [1800] = 1716, + [1801] = 1701, + [1802] = 1716, + [1803] = 1769, + [1804] = 1703, + [1805] = 1715, + [1806] = 1806, [1807] = 1807, - [1808] = 1794, - [1809] = 1809, - [1810] = 1810, - [1811] = 1784, - [1812] = 1787, - [1813] = 1793, - [1814] = 1794, - [1815] = 1787, - [1816] = 1787, - [1817] = 1817, + [1808] = 1711, + [1809] = 1702, + [1810] = 1701, + [1811] = 1705, + [1812] = 1700, + [1813] = 1703, + [1814] = 1701, + [1815] = 1815, + [1816] = 1816, + [1817] = 1769, [1818] = 1818, - [1819] = 1819, + [1819] = 1703, [1820] = 1820, - [1821] = 1787, - [1822] = 1659, - [1823] = 1787, - [1824] = 1824, - [1825] = 1787, - [1826] = 1664, - [1827] = 1809, - [1828] = 1665, - [1829] = 1809, - [1830] = 1830, - [1831] = 1831, - [1832] = 1784, - [1833] = 1660, + [1821] = 1703, + [1822] = 1822, + [1823] = 1823, + [1824] = 1783, + [1825] = 1825, + [1826] = 1715, + [1827] = 1827, + [1828] = 1828, + [1829] = 1711, + [1830] = 1822, + [1831] = 1702, + [1832] = 1701, + [1833] = 1833, [1834] = 1834, - [1835] = 1835, - [1836] = 1836, - [1837] = 1837, - [1838] = 1838, - [1839] = 1837, + [1835] = 1823, + [1836] = 1816, + [1837] = 1711, + [1838] = 1820, + [1839] = 1816, [1840] = 1840, - [1841] = 1841, - [1842] = 1842, - [1843] = 1789, - [1844] = 1844, - [1845] = 1751, - [1846] = 1783, - [1847] = 1844, - [1848] = 1848, - [1849] = 1844, - [1850] = 1838, + [1841] = 1702, + [1842] = 1807, + [1843] = 1708, + [1844] = 1705, + [1845] = 1700, + [1846] = 1823, + [1847] = 1847, + [1848] = 1822, + [1849] = 1708, + [1850] = 1705, [1851] = 1851, - [1852] = 1844, - [1853] = 1783, - [1854] = 1844, - [1855] = 1778, - [1856] = 1749, - [1857] = 1857, - [1858] = 1858, - [1859] = 1844, - [1860] = 1860, - [1861] = 1860, - [1862] = 1844, - [1863] = 1789, - [1864] = 1864, - [1865] = 1778, - [1866] = 1749, - [1867] = 1860, - [1868] = 1864, - [1869] = 1851, - [1870] = 1842, - [1871] = 1871, - [1872] = 1857, - [1873] = 1837, - [1874] = 1840, - [1875] = 1838, - [1876] = 1876, - [1877] = 1877, - [1878] = 1848, - [1879] = 1879, - [1880] = 1783, + [1852] = 1700, + [1853] = 1823, + [1854] = 1854, + [1855] = 1855, + [1856] = 1856, + [1857] = 1823, + [1858] = 1703, + [1859] = 1823, + [1860] = 1823, + [1861] = 1823, + [1862] = 1862, + [1863] = 1856, + [1864] = 1823, + [1865] = 1716, + [1866] = 1866, + [1867] = 1701, + [1868] = 1856, + [1869] = 1869, + [1870] = 1716, + [1871] = 1820, + [1872] = 1869, + [1873] = 1816, + [1874] = 1715, + [1875] = 1823, + [1876] = 1806, + [1877] = 1796, + [1878] = 1878, + [1879] = 1854, + [1880] = 1880, [1881] = 1881, [1882] = 1882, - [1883] = 1751, - [1884] = 1844, - [1885] = 1751, - [1886] = 1789, - [1887] = 1848, - [1888] = 1778, + [1883] = 1883, + [1884] = 1878, + [1885] = 1878, + [1886] = 1806, + [1887] = 1887, + [1888] = 1789, [1889] = 1889, - [1890] = 1890, + [1890] = 1806, [1891] = 1891, [1892] = 1892, - [1893] = 1893, - [1894] = 1894, - [1895] = 1895, - [1896] = 1780, - [1897] = 1897, + [1893] = 1878, + [1894] = 1854, + [1895] = 1891, + [1896] = 1892, + [1897] = 1892, [1898] = 1898, [1899] = 1899, - [1900] = 1900, + [1900] = 1891, [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1904, - [1905] = 1905, - [1906] = 1889, + [1904] = 1878, + [1905] = 1899, + [1906] = 1887, [1907] = 1907, - [1908] = 1834, - [1909] = 1901, - [1910] = 1763, - [1911] = 1911, - [1912] = 1901, + [1908] = 1908, + [1909] = 1909, + [1910] = 1789, + [1911] = 1903, + [1912] = 1912, [1913] = 1913, - [1914] = 1902, - [1915] = 1902, - [1916] = 1893, - [1917] = 1858, - [1918] = 1918, - [1919] = 1919, - [1920] = 1920, - [1921] = 1890, - [1922] = 1922, - [1923] = 1783, - [1924] = 1810, - [1925] = 1925, - [1926] = 1926, - [1927] = 1858, - [1928] = 1780, - [1929] = 1929, - [1930] = 1922, - [1931] = 1858, - [1932] = 1929, + [1914] = 1914, + [1915] = 1796, + [1916] = 1909, + [1917] = 1789, + [1918] = 1796, + [1919] = 1878, + [1920] = 1783, + [1921] = 1878, + [1922] = 1783, + [1923] = 1854, + [1924] = 1907, + [1925] = 1902, + [1926] = 1887, + [1927] = 1903, + [1928] = 1928, + [1929] = 1908, + [1930] = 1878, + [1931] = 1931, + [1932] = 1932, [1933] = 1933, [1934] = 1934, [1935] = 1935, [1936] = 1936, - [1937] = 1937, - [1938] = 1751, - [1939] = 1939, + [1937] = 1880, + [1938] = 1938, + [1939] = 1807, [1940] = 1940, [1941] = 1941, [1942] = 1942, - [1943] = 1831, + [1943] = 1943, [1944] = 1944, [1945] = 1945, - [1946] = 1892, - [1947] = 1942, + [1946] = 1946, + [1947] = 1631, [1948] = 1948, - [1949] = 1893, + [1949] = 1949, [1950] = 1950, [1951] = 1951, - [1952] = 1893, - [1953] = 1763, + [1952] = 1952, + [1953] = 1953, [1954] = 1954, [1955] = 1955, - [1956] = 1918, - [1957] = 1957, - [1958] = 1903, - [1959] = 1911, - [1960] = 1913, - [1961] = 1948, - [1962] = 1920, - [1963] = 1890, - [1964] = 1939, - [1965] = 1948, - [1966] = 1584, + [1956] = 1945, + [1957] = 1931, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 1806, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, + [1965] = 1965, + [1966] = 1796, [1967] = 1967, - [1968] = 1968, + [1968] = 1946, [1969] = 1969, - [1970] = 1970, - [1971] = 1941, - [1972] = 1763, - [1973] = 1942, - [1974] = 1929, - [1975] = 1583, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, + [1970] = 1967, + [1971] = 1833, + [1972] = 1972, + [1973] = 1973, + [1974] = 1943, + [1975] = 1946, + [1976] = 1633, + [1977] = 1789, + [1978] = 1935, [1979] = 1979, - [1980] = 1834, - [1981] = 1945, + [1980] = 1889, + [1981] = 1958, [1982] = 1982, [1983] = 1983, - [1984] = 1889, - [1985] = 1918, + [1984] = 1984, + [1985] = 1985, [1986] = 1986, - [1987] = 1834, - [1988] = 1810, - [1989] = 1939, - [1990] = 1810, - [1991] = 1780, - [1992] = 1936, - [1993] = 1937, - [1994] = 1940, - [1995] = 1778, - [1996] = 1920, - [1997] = 1951, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 1936, - [2002] = 1937, - [2003] = 1940, + [1987] = 1815, + [1988] = 1932, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1952, + [1993] = 1851, + [1994] = 1994, + [1995] = 1815, + [1996] = 1945, + [1997] = 1880, + [1998] = 1941, + [1999] = 1938, + [2000] = 1952, + [2001] = 2001, + [2002] = 2002, + [2003] = 1938, [2004] = 2004, - [2005] = 2005, - [2006] = 1999, - [2007] = 1905, - [2008] = 2008, - [2009] = 1929, - [2010] = 2010, - [2011] = 2011, - [2012] = 1907, - [2013] = 1837, - [2014] = 1925, - [2015] = 1905, - [2016] = 1925, - [2017] = 1939, - [2018] = 1968, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2005, - [2023] = 2023, - [2024] = 2024, - [2025] = 1907, - [2026] = 1942, - [2027] = 2027, - [2028] = 2008, - [2029] = 2011, - [2030] = 1999, - [2031] = 2031, - [2032] = 1968, - [2033] = 1982, - [2034] = 1983, - [2035] = 2010, - [2036] = 1810, - [2037] = 1982, - [2038] = 2005, + [2005] = 1851, + [2006] = 1943, + [2007] = 1962, + [2008] = 1807, + [2009] = 1807, + [2010] = 1815, + [2011] = 1880, + [2012] = 2012, + [2013] = 2013, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 1965, + [2018] = 2018, + [2019] = 1946, + [2020] = 1973, + [2021] = 1933, + [2022] = 1934, + [2023] = 1932, + [2024] = 2016, + [2025] = 1969, + [2026] = 2026, + [2027] = 1941, + [2028] = 2016, + [2029] = 1935, + [2030] = 1889, + [2031] = 1984, + [2032] = 1933, + [2033] = 2033, + [2034] = 1985, + [2035] = 1889, + [2036] = 1851, + [2037] = 1949, + [2038] = 1959, [2039] = 2039, - [2040] = 2040, - [2041] = 1983, - [2042] = 2042, - [2043] = 1941, - [2044] = 1594, - [2045] = 2045, - [2046] = 1941, - [2047] = 2047, - [2048] = 1968, - [2049] = 2049, - [2050] = 2005, - [2051] = 2051, - [2052] = 2052, - [2053] = 2005, - [2054] = 1907, - [2055] = 1982, - [2056] = 1983, - [2057] = 2005, - [2058] = 2005, + [2040] = 1942, + [2041] = 1985, + [2042] = 1959, + [2043] = 2043, + [2044] = 1655, + [2045] = 1942, + [2046] = 2046, + [2047] = 1953, + [2048] = 2048, + [2049] = 1940, + [2050] = 2012, + [2051] = 1985, + [2052] = 1891, + [2053] = 2053, + [2054] = 1932, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, [2059] = 2059, [2060] = 2060, - [2061] = 2061, + [2061] = 1942, [2062] = 2062, [2063] = 2063, [2064] = 2064, - [2065] = 2005, - [2066] = 2008, - [2067] = 2067, + [2065] = 1641, + [2066] = 1936, + [2067] = 1943, [2068] = 2068, - [2069] = 2011, + [2069] = 1963, [2070] = 2070, - [2071] = 1936, - [2072] = 1611, - [2073] = 2073, - [2074] = 1937, + [2071] = 2071, + [2072] = 2072, + [2073] = 1960, + [2074] = 1964, [2075] = 2075, - [2076] = 2076, + [2076] = 2060, [2077] = 2077, [2078] = 2078, - [2079] = 2073, - [2080] = 2052, - [2081] = 2081, + [2079] = 2053, + [2080] = 2080, + [2081] = 1953, [2082] = 2082, [2083] = 2083, - [2084] = 2084, - [2085] = 1940, - [2086] = 2010, - [2087] = 2087, - [2088] = 1903, - [2089] = 2089, - [2090] = 1614, - [2091] = 1999, - [2092] = 1911, - [2093] = 1903, - [2094] = 1913, - [2095] = 1911, - [2096] = 1913, - [2097] = 1592, - [2098] = 2098, - [2099] = 2099, - [2100] = 1925, - [2101] = 2031, - [2102] = 2102, - [2103] = 2039, - [2104] = 2089, + [2084] = 2053, + [2085] = 2078, + [2086] = 2086, + [2087] = 1960, + [2088] = 2068, + [2089] = 1931, + [2090] = 1969, + [2091] = 2091, + [2092] = 1851, + [2093] = 2093, + [2094] = 2071, + [2095] = 2095, + [2096] = 2068, + [2097] = 2097, + [2098] = 1964, + [2099] = 2059, + [2100] = 2100, + [2101] = 2068, + [2102] = 1940, + [2103] = 1972, + [2104] = 2104, [2105] = 2105, [2106] = 2106, - [2107] = 1898, - [2108] = 1926, - [2109] = 2109, - [2110] = 1944, - [2111] = 1905, - [2112] = 2078, - [2113] = 2099, - [2114] = 2114, - [2115] = 2081, - [2116] = 2116, - [2117] = 2031, - [2118] = 2020, - [2119] = 2119, - [2120] = 2109, - [2121] = 2121, - [2122] = 2024, + [2107] = 2071, + [2108] = 1949, + [2109] = 1949, + [2110] = 2068, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 2068, + [2115] = 2115, + [2116] = 2060, + [2117] = 2117, + [2118] = 2057, + [2119] = 1646, + [2120] = 2053, + [2121] = 1941, + [2122] = 1647, [2123] = 2123, - [2124] = 2027, - [2125] = 2040, - [2126] = 2042, - [2127] = 2127, - [2128] = 2045, - [2129] = 2106, - [2130] = 2130, - [2131] = 2087, + [2124] = 2124, + [2125] = 2075, + [2126] = 1958, + [2127] = 1962, + [2128] = 1967, + [2129] = 1936, + [2130] = 1958, + [2131] = 1962, [2132] = 2132, - [2133] = 2133, - [2134] = 2064, - [2135] = 2084, + [2133] = 2059, + [2134] = 2068, + [2135] = 1967, [2136] = 2136, [2137] = 2137, - [2138] = 2138, + [2138] = 1931, [2139] = 2139, - [2140] = 2081, - [2141] = 2141, - [2142] = 2106, + [2140] = 1969, + [2141] = 2018, + [2142] = 2132, [2143] = 2143, - [2144] = 2144, - [2145] = 2061, + [2144] = 1936, + [2145] = 2145, [2146] = 2146, - [2147] = 2047, - [2148] = 2102, - [2149] = 2149, - [2150] = 2150, - [2151] = 2151, - [2152] = 2076, - [2153] = 2067, - [2154] = 2060, - [2155] = 2070, - [2156] = 2077, - [2157] = 2082, - [2158] = 2083, - [2159] = 2062, - [2160] = 2063, + [2147] = 1953, + [2148] = 1960, + [2149] = 2124, + [2150] = 1964, + [2151] = 1940, + [2152] = 2012, + [2153] = 2153, + [2154] = 2123, + [2155] = 2155, + [2156] = 2068, + [2157] = 2157, + [2158] = 2012, + [2159] = 2046, + [2160] = 2043, [2161] = 2161, - [2162] = 2161, - [2163] = 2163, - [2164] = 2116, - [2165] = 2084, - [2166] = 2070, - [2167] = 2087, - [2168] = 2109, + [2162] = 2153, + [2163] = 2157, + [2164] = 2164, + [2165] = 2155, + [2166] = 2166, + [2167] = 2167, + [2168] = 2046, [2169] = 2137, - [2170] = 2149, - [2171] = 2171, - [2172] = 2172, - [2173] = 2081, - [2174] = 2150, - [2175] = 2019, - [2176] = 2064, - [2177] = 2082, - [2178] = 2083, - [2179] = 2149, - [2180] = 2020, - [2181] = 2060, - [2182] = 2024, - [2183] = 2027, - [2184] = 2040, + [2170] = 2064, + [2171] = 2091, + [2172] = 2115, + [2173] = 2143, + [2174] = 2157, + [2175] = 2070, + [2176] = 2166, + [2177] = 2177, + [2178] = 2178, + [2179] = 2155, + [2180] = 2178, + [2181] = 2046, + [2182] = 2137, + [2183] = 2064, + [2184] = 2077, [2185] = 2185, - [2186] = 2149, - [2187] = 2042, - [2188] = 2150, - [2189] = 2045, - [2190] = 2087, - [2191] = 2084, - [2192] = 2049, - [2193] = 2067, - [2194] = 2047, - [2195] = 2195, - [2196] = 2060, - [2197] = 2116, - [2198] = 2076, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2062, - [2203] = 2063, - [2204] = 2064, - [2205] = 2116, - [2206] = 2031, - [2207] = 2067, - [2208] = 2076, - [2209] = 2083, - [2210] = 2210, - [2211] = 2019, - [2212] = 2212, - [2213] = 2020, - [2214] = 2024, + [2186] = 2186, + [2187] = 2093, + [2188] = 2062, + [2189] = 2143, + [2190] = 2161, + [2191] = 2095, + [2192] = 2111, + [2193] = 2091, + [2194] = 2194, + [2195] = 2072, + [2196] = 2113, + [2197] = 2080, + [2198] = 2113, + [2199] = 2115, + [2200] = 2062, + [2201] = 2093, + [2202] = 2105, + [2203] = 2203, + [2204] = 2095, + [2205] = 2063, + [2206] = 2115, + [2207] = 2070, + [2208] = 2166, + [2209] = 2178, + [2210] = 2083, + [2211] = 2106, + [2212] = 2057, + [2213] = 2203, + [2214] = 2214, [2215] = 2215, - [2216] = 2062, - [2217] = 2070, + [2216] = 2216, + [2217] = 2048, [2218] = 2218, - [2219] = 2219, - [2220] = 2027, - [2221] = 2040, - [2222] = 2042, - [2223] = 2223, - [2224] = 2133, - [2225] = 2045, - [2226] = 2077, - [2227] = 2201, - [2228] = 2130, - [2229] = 2019, + [2219] = 2105, + [2220] = 2220, + [2221] = 2111, + [2222] = 2136, + [2223] = 2111, + [2224] = 2105, + [2225] = 2178, + [2226] = 2086, + [2227] = 2063, + [2228] = 2228, + [2229] = 2203, [2230] = 2230, - [2231] = 2231, - [2232] = 2082, - [2233] = 2077, - [2234] = 2047, - [2235] = 2063, + [2231] = 2137, + [2232] = 2143, + [2233] = 2070, + [2234] = 2097, + [2235] = 2166, [2236] = 2236, - [2237] = 2150, - [2238] = 2109, - [2239] = 2051, - [2240] = 2106, + [2237] = 2062, + [2238] = 2077, + [2239] = 2072, + [2240] = 2080, [2241] = 2241, [2242] = 2242, [2243] = 2243, - [2244] = 2244, + [2244] = 2203, [2245] = 2245, - [2246] = 2246, + [2246] = 2113, [2247] = 2247, - [2248] = 2248, + [2248] = 2083, [2249] = 2249, [2250] = 2250, - [2251] = 2251, - [2252] = 2252, - [2253] = 2199, - [2254] = 2254, - [2255] = 2255, + [2251] = 2043, + [2252] = 2080, + [2253] = 2253, + [2254] = 2186, + [2255] = 2083, [2256] = 2256, [2257] = 2257, - [2258] = 2200, - [2259] = 2215, - [2260] = 2260, + [2258] = 2258, + [2259] = 2259, + [2260] = 2072, [2261] = 2261, - [2262] = 2262, - [2263] = 2263, - [2264] = 2264, - [2265] = 2265, + [2262] = 2139, + [2263] = 2043, + [2264] = 2153, + [2265] = 2157, [2266] = 2266, - [2267] = 1926, - [2268] = 2268, - [2269] = 2242, - [2270] = 2270, - [2271] = 2243, - [2272] = 2272, - [2273] = 2218, - [2274] = 2274, - [2275] = 2260, - [2276] = 2261, - [2277] = 2277, - [2278] = 1933, - [2279] = 2279, + [2267] = 2153, + [2268] = 2093, + [2269] = 2269, + [2270] = 2155, + [2271] = 2220, + [2272] = 2057, + [2273] = 2259, + [2274] = 2063, + [2275] = 2230, + [2276] = 2276, + [2277] = 2064, + [2278] = 2139, + [2279] = 2091, [2280] = 2280, - [2281] = 2281, + [2281] = 2139, [2282] = 2282, [2283] = 2283, - [2284] = 2284, - [2285] = 2285, - [2286] = 2241, - [2287] = 2200, + [2284] = 2077, + [2285] = 2095, + [2286] = 2286, + [2287] = 2215, [2288] = 2288, - [2289] = 1976, - [2290] = 1977, - [2291] = 1978, - [2292] = 2119, + [2289] = 2289, + [2290] = 2290, + [2291] = 1655, + [2292] = 2018, [2293] = 2293, - [2294] = 2143, + [2294] = 2294, [2295] = 2295, - [2296] = 2277, + [2296] = 2296, [2297] = 2297, - [2298] = 2248, + [2298] = 2298, [2299] = 2299, - [2300] = 2252, + [2300] = 2300, [2301] = 2301, - [2302] = 2257, - [2303] = 2260, - [2304] = 2261, - [2305] = 2263, - [2306] = 2299, - [2307] = 2143, - [2308] = 2266, - [2309] = 2264, - [2310] = 2268, - [2311] = 2270, - [2312] = 2243, - [2313] = 2313, - [2314] = 2272, - [2315] = 2263, + [2302] = 2302, + [2303] = 2303, + [2304] = 2018, + [2305] = 2305, + [2306] = 2306, + [2307] = 2307, + [2308] = 2308, + [2309] = 2309, + [2310] = 2310, + [2311] = 2311, + [2312] = 2312, + [2313] = 2215, + [2314] = 2314, + [2315] = 2315, [2316] = 2316, - [2317] = 2277, + [2317] = 2215, [2318] = 2318, - [2319] = 2279, + [2319] = 2319, [2320] = 2320, - [2321] = 2280, - [2322] = 2281, - [2323] = 2283, - [2324] = 2272, + [2321] = 2288, + [2322] = 2322, + [2323] = 2323, + [2324] = 2324, [2325] = 2325, - [2326] = 2282, - [2327] = 2248, - [2328] = 2199, - [2329] = 2200, - [2330] = 2288, - [2331] = 2215, - [2332] = 2254, - [2333] = 2242, - [2334] = 2334, - [2335] = 2335, - [2336] = 2246, - [2337] = 2257, + [2326] = 2326, + [2327] = 2327, + [2328] = 1963, + [2329] = 2329, + [2330] = 2320, + [2331] = 1631, + [2332] = 2323, + [2333] = 2333, + [2334] = 2325, + [2335] = 2329, + [2336] = 2336, + [2337] = 2337, [2338] = 2338, - [2339] = 2248, + [2339] = 2339, [2340] = 2340, - [2341] = 2252, - [2342] = 2248, + [2341] = 2341, + [2342] = 2342, [2343] = 2343, - [2344] = 2257, - [2345] = 2260, - [2346] = 2261, + [2344] = 1024, + [2345] = 2286, + [2346] = 2340, [2347] = 2347, - [2348] = 2263, - [2349] = 2266, - [2350] = 2350, - [2351] = 2268, - [2352] = 2270, - [2353] = 2243, - [2354] = 2354, - [2355] = 2252, - [2356] = 2356, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 2301, - [2361] = 2254, - [2362] = 1584, - [2363] = 1926, - [2364] = 2248, - [2365] = 2288, - [2366] = 1007, - [2367] = 2252, - [2368] = 2255, - [2369] = 2256, - [2370] = 2257, - [2371] = 2260, - [2372] = 2261, + [2348] = 2293, + [2349] = 1631, + [2350] = 2297, + [2351] = 2305, + [2352] = 2307, + [2353] = 2308, + [2354] = 2311, + [2355] = 2018, + [2356] = 2314, + [2357] = 2015, + [2358] = 2315, + [2359] = 2316, + [2360] = 2318, + [2361] = 2319, + [2362] = 2288, + [2363] = 2293, + [2364] = 2336, + [2365] = 2311, + [2366] = 2216, + [2367] = 2329, + [2368] = 2286, + [2369] = 2323, + [2370] = 2325, + [2371] = 2336, + [2372] = 2338, [2373] = 2373, - [2374] = 2249, - [2375] = 2263, - [2376] = 2250, - [2377] = 2266, - [2378] = 2270, - [2379] = 2268, - [2380] = 2270, - [2381] = 2243, - [2382] = 2252, - [2383] = 2383, - [2384] = 2257, - [2385] = 2385, - [2386] = 2248, - [2387] = 2252, - [2388] = 2212, - [2389] = 2389, - [2390] = 1583, - [2391] = 2257, - [2392] = 1900, - [2393] = 2260, - [2394] = 2261, - [2395] = 2172, - [2396] = 2263, - [2397] = 2266, - [2398] = 2398, - [2399] = 2268, + [2374] = 2374, + [2375] = 2290, + [2376] = 2236, + [2377] = 2340, + [2378] = 2378, + [2379] = 1954, + [2380] = 2338, + [2381] = 2241, + [2382] = 2293, + [2383] = 2214, + [2384] = 2293, + [2385] = 2297, + [2386] = 2305, + [2387] = 2307, + [2388] = 2308, + [2389] = 2311, + [2390] = 2305, + [2391] = 2378, + [2392] = 2314, + [2393] = 2315, + [2394] = 2316, + [2395] = 2318, + [2396] = 2319, + [2397] = 2297, + [2398] = 2300, + [2399] = 1963, [2400] = 2400, - [2401] = 2270, - [2402] = 2243, - [2403] = 2260, - [2404] = 2261, - [2405] = 2268, - [2406] = 2263, - [2407] = 2373, - [2408] = 2340, - [2409] = 2274, - [2410] = 2248, - [2411] = 2252, - [2412] = 2412, - [2413] = 2257, - [2414] = 2260, - [2415] = 2261, - [2416] = 2143, + [2401] = 2276, + [2402] = 2402, + [2403] = 2300, + [2404] = 1633, + [2405] = 2314, + [2406] = 2293, + [2407] = 2315, + [2408] = 2316, + [2409] = 2297, + [2410] = 2302, + [2411] = 2305, + [2412] = 2303, + [2413] = 2307, + [2414] = 2308, + [2415] = 2311, + [2416] = 2416, [2417] = 2417, - [2418] = 2263, - [2419] = 2389, - [2420] = 2266, - [2421] = 2268, - [2422] = 2270, - [2423] = 2243, - [2424] = 2255, - [2425] = 2425, - [2426] = 1031, - [2427] = 2266, - [2428] = 2263, - [2429] = 2270, - [2430] = 2243, - [2431] = 2268, - [2432] = 2270, - [2433] = 2243, - [2434] = 2284, - [2435] = 2263, - [2436] = 2270, - [2437] = 2243, - [2438] = 1898, - [2439] = 2256, - [2440] = 2247, - [2441] = 2279, - [2442] = 2442, - [2443] = 2272, - [2444] = 2265, - [2445] = 2445, - [2446] = 2446, - [2447] = 2280, - [2448] = 2338, - [2449] = 2264, - [2450] = 2334, - [2451] = 2335, - [2452] = 2356, - [2453] = 2442, - [2454] = 2454, - [2455] = 2318, - [2456] = 2343, - [2457] = 2335, - [2458] = 2281, - [2459] = 1611, - [2460] = 2246, - [2461] = 2445, - [2462] = 2338, - [2463] = 2283, - [2464] = 1898, - [2465] = 1583, - [2466] = 2417, - [2467] = 2467, - [2468] = 2277, - [2469] = 2266, - [2470] = 1979, - [2471] = 2445, - [2472] = 1986, - [2473] = 2279, - [2474] = 2454, - [2475] = 2280, - [2476] = 1904, - [2477] = 2281, - [2478] = 2283, - [2479] = 2316, - [2480] = 1898, - [2481] = 2481, - [2482] = 2141, - [2483] = 1583, - [2484] = 2288, - [2485] = 1926, - [2486] = 2320, - [2487] = 2487, - [2488] = 2412, - [2489] = 2251, - [2490] = 2297, - [2491] = 2354, - [2492] = 2492, - [2493] = 2493, - [2494] = 2494, - [2495] = 648, + [2418] = 2314, + [2419] = 2315, + [2420] = 2316, + [2421] = 2309, + [2422] = 2318, + [2423] = 2319, + [2424] = 2424, + [2425] = 2296, + [2426] = 2426, + [2427] = 2297, + [2428] = 2305, + [2429] = 2343, + [2430] = 2290, + [2431] = 2431, + [2432] = 2307, + [2433] = 2297, + [2434] = 1631, + [2435] = 2305, + [2436] = 2307, + [2437] = 2308, + [2438] = 2438, + [2439] = 2307, + [2440] = 2311, + [2441] = 2318, + [2442] = 2319, + [2443] = 2314, + [2444] = 2444, + [2445] = 2315, + [2446] = 2316, + [2447] = 2308, + [2448] = 2318, + [2449] = 2319, + [2450] = 2450, + [2451] = 2308, + [2452] = 2311, + [2453] = 1986, + [2454] = 1989, + [2455] = 2455, + [2456] = 1991, + [2457] = 2457, + [2458] = 2458, + [2459] = 2374, + [2460] = 2185, + [2461] = 2293, + [2462] = 2462, + [2463] = 2297, + [2464] = 2464, + [2465] = 2305, + [2466] = 2307, + [2467] = 2308, + [2468] = 2322, + [2469] = 2311, + [2470] = 2470, + [2471] = 2314, + [2472] = 2457, + [2473] = 2315, + [2474] = 2316, + [2475] = 2318, + [2476] = 2319, + [2477] = 2302, + [2478] = 2478, + [2479] = 2303, + [2480] = 2480, + [2481] = 2314, + [2482] = 2311, + [2483] = 2318, + [2484] = 2319, + [2485] = 2315, + [2486] = 2316, + [2487] = 2318, + [2488] = 2311, + [2489] = 2489, + [2490] = 2318, + [2491] = 2319, + [2492] = 2289, + [2493] = 2319, + [2494] = 2462, + [2495] = 2296, [2496] = 2496, [2497] = 2497, [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, + [2499] = 2416, + [2500] = 2402, + [2501] = 2327, [2502] = 2502, - [2503] = 2503, - [2504] = 2504, + [2503] = 2288, + [2504] = 2478, [2505] = 2505, - [2506] = 2506, - [2507] = 2501, - [2508] = 2508, - [2509] = 2509, - [2510] = 2510, - [2511] = 622, - [2512] = 2512, - [2513] = 2385, - [2514] = 2494, - [2515] = 2059, - [2516] = 2516, - [2517] = 2059, - [2518] = 2508, - [2519] = 2519, - [2520] = 2505, - [2521] = 2512, - [2522] = 2522, - [2523] = 2059, - [2524] = 2524, - [2525] = 1594, - [2526] = 2526, - [2527] = 2527, - [2528] = 639, - [2529] = 2508, + [2506] = 2312, + [2507] = 1963, + [2508] = 2424, + [2509] = 2339, + [2510] = 2299, + [2511] = 2455, + [2512] = 2373, + [2513] = 2513, + [2514] = 2458, + [2515] = 2502, + [2516] = 2478, + [2517] = 2517, + [2518] = 2417, + [2519] = 2216, + [2520] = 2039, + [2521] = 1994, + [2522] = 2002, + [2523] = 2329, + [2524] = 2470, + [2525] = 2426, + [2526] = 2323, + [2527] = 2295, + [2528] = 2325, + [2529] = 2336, [2530] = 2530, - [2531] = 2531, - [2532] = 2512, - [2533] = 2533, - [2534] = 2534, - [2535] = 2531, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 1614, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 2544, - [2545] = 2545, - [2546] = 632, - [2547] = 2539, - [2548] = 2510, - [2549] = 2496, - [2550] = 2498, + [2531] = 2338, + [2532] = 2496, + [2533] = 2378, + [2534] = 2497, + [2535] = 2286, + [2536] = 2502, + [2537] = 2236, + [2538] = 2340, + [2539] = 1007, + [2540] = 2253, + [2541] = 2266, + [2542] = 2289, + [2543] = 2480, + [2544] = 2310, + [2545] = 2293, + [2546] = 1647, + [2547] = 1655, + [2548] = 643, + [2549] = 2549, + [2550] = 2146, [2551] = 2551, [2552] = 2552, - [2553] = 2359, + [2553] = 2553, [2554] = 2554, - [2555] = 2504, - [2556] = 2505, - [2557] = 2557, - [2558] = 2519, - [2559] = 2559, + [2555] = 2555, + [2556] = 2556, + [2557] = 653, + [2558] = 639, + [2559] = 1646, [2560] = 2560, - [2561] = 2539, - [2562] = 2543, - [2563] = 1592, + [2561] = 2561, + [2562] = 2562, + [2563] = 2563, [2564] = 2564, - [2565] = 1611, - [2566] = 2508, - [2567] = 2512, + [2565] = 2565, + [2566] = 2566, + [2567] = 2555, [2568] = 2568, [2569] = 2569, [2570] = 2570, - [2571] = 2531, + [2571] = 2571, [2572] = 2572, - [2573] = 2383, - [2574] = 1614, - [2575] = 2498, - [2576] = 2539, - [2577] = 2577, - [2578] = 1594, + [2573] = 2563, + [2574] = 2574, + [2575] = 2564, + [2576] = 2576, + [2577] = 651, + [2578] = 2578, [2579] = 2579, - [2580] = 2580, + [2580] = 2579, [2581] = 2581, - [2582] = 2504, - [2583] = 623, - [2584] = 1592, - [2585] = 2524, - [2586] = 2493, - [2587] = 2587, - [2588] = 2531, - [2589] = 2559, - [2590] = 2590, + [2582] = 2582, + [2583] = 2583, + [2584] = 2584, + [2585] = 2585, + [2586] = 2578, + [2587] = 1641, + [2588] = 2588, + [2589] = 2563, + [2590] = 2578, [2591] = 2591, - [2592] = 2560, + [2592] = 2552, [2593] = 2593, [2594] = 2594, - [2595] = 2595, - [2596] = 2596, + [2595] = 2306, + [2596] = 2579, [2597] = 2597, [2598] = 2598, - [2599] = 2599, + [2599] = 2549, [2600] = 2600, [2601] = 2601, [2602] = 2602, - [2603] = 2593, - [2604] = 2604, - [2605] = 2605, - [2606] = 2606, + [2603] = 2438, + [2604] = 2146, + [2605] = 1647, + [2606] = 2601, [2607] = 2607, - [2608] = 2608, + [2608] = 2571, [2609] = 2609, [2610] = 2610, - [2611] = 2598, - [2612] = 2606, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2616, + [2611] = 2611, + [2612] = 2612, + [2613] = 2610, + [2614] = 2572, + [2615] = 2574, + [2616] = 2563, [2617] = 2617, - [2618] = 2618, + [2618] = 2564, [2619] = 2619, - [2620] = 2615, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2616, - [2625] = 2596, + [2620] = 1641, + [2621] = 2571, + [2622] = 640, + [2623] = 2572, + [2624] = 2624, + [2625] = 2579, [2626] = 2626, - [2627] = 2597, + [2627] = 2627, [2628] = 2628, - [2629] = 2593, - [2630] = 2599, + [2629] = 2629, + [2630] = 2607, [2631] = 2631, [2632] = 2632, - [2633] = 2600, - [2634] = 2634, - [2635] = 2622, - [2636] = 2618, - [2637] = 2606, - [2638] = 2638, - [2639] = 2639, - [2640] = 2640, - [2641] = 2609, - [2642] = 2615, - [2643] = 2616, + [2633] = 2633, + [2634] = 1646, + [2635] = 2578, + [2636] = 2574, + [2637] = 2498, + [2638] = 2632, + [2639] = 2602, + [2640] = 2633, + [2641] = 2611, + [2642] = 2564, + [2643] = 2643, [2644] = 2644, [2645] = 2645, - [2646] = 2626, - [2647] = 2596, - [2648] = 2622, - [2649] = 2615, - [2650] = 2593, - [2651] = 2609, - [2652] = 2618, - [2653] = 2596, - [2654] = 2654, - [2655] = 2604, + [2646] = 2146, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2650, + [2651] = 2651, + [2652] = 2652, + [2653] = 2653, + [2654] = 2653, + [2655] = 2655, [2656] = 2656, [2657] = 2657, - [2658] = 2593, - [2659] = 2600, + [2658] = 2658, + [2659] = 2659, [2660] = 2660, - [2661] = 2604, - [2662] = 2616, - [2663] = 2593, - [2664] = 2599, - [2665] = 2604, + [2661] = 2661, + [2662] = 2662, + [2663] = 2653, + [2664] = 2656, + [2665] = 2665, [2666] = 2666, - [2667] = 2605, + [2667] = 2667, [2668] = 2668, - [2669] = 2607, - [2670] = 2596, - [2671] = 2657, - [2672] = 2600, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, + [2672] = 2662, [2673] = 2673, - [2674] = 2617, - [2675] = 2596, - [2676] = 2607, - [2677] = 2654, - [2678] = 2639, - [2679] = 2604, + [2674] = 2674, + [2675] = 2666, + [2676] = 2674, + [2677] = 2667, + [2678] = 2678, + [2679] = 2679, [2680] = 2680, - [2681] = 2608, - [2682] = 2595, - [2683] = 2644, - [2684] = 2602, - [2685] = 2615, - [2686] = 2628, - [2687] = 2609, + [2681] = 2681, + [2682] = 2655, + [2683] = 2656, + [2684] = 2684, + [2685] = 2685, + [2686] = 2670, + [2687] = 2687, [2688] = 2688, - [2689] = 2600, - [2690] = 2690, - [2691] = 2638, + [2689] = 2670, + [2690] = 2671, + [2691] = 2691, [2692] = 2692, - [2693] = 2598, - [2694] = 2600, + [2693] = 2693, + [2694] = 2651, [2695] = 2695, - [2696] = 2696, - [2697] = 2644, - [2698] = 2606, - [2699] = 2626, - [2700] = 2700, - [2701] = 2608, - [2702] = 2616, - [2703] = 2703, - [2704] = 2604, - [2705] = 2607, + [2696] = 2693, + [2697] = 2697, + [2698] = 2656, + [2699] = 2699, + [2700] = 2695, + [2701] = 2667, + [2702] = 2655, + [2703] = 2665, + [2704] = 2659, + [2705] = 2673, [2706] = 2706, - [2707] = 2598, - [2708] = 2604, - [2709] = 2615, - [2710] = 2607, - [2711] = 2616, - [2712] = 2599, - [2713] = 2608, - [2714] = 2609, - [2715] = 2600, - [2716] = 2680, - [2717] = 2597, - [2718] = 2690, - [2719] = 2618, - [2720] = 2703, - [2721] = 2598, - [2722] = 2626, - [2723] = 2723, - [2724] = 2606, - [2725] = 2608, - [2726] = 2726, - [2727] = 2618, - [2728] = 2615, - [2729] = 2616, - [2730] = 2688, - [2731] = 2703, - [2732] = 2606, - [2733] = 2618, - [2734] = 2622, - [2735] = 2690, - [2736] = 2618, - [2737] = 2621, - [2738] = 2609, - [2739] = 2606, - [2740] = 2740, + [2707] = 2707, + [2708] = 2656, + [2709] = 2709, + [2710] = 2671, + [2711] = 2665, + [2712] = 2679, + [2713] = 2713, + [2714] = 2651, + [2715] = 2715, + [2716] = 2670, + [2717] = 2717, + [2718] = 2656, + [2719] = 2657, + [2720] = 2668, + [2721] = 2671, + [2722] = 2679, + [2723] = 2717, + [2724] = 2707, + [2725] = 2655, + [2726] = 2651, + [2727] = 2658, + [2728] = 2655, + [2729] = 2729, + [2730] = 2699, + [2731] = 2709, + [2732] = 2655, + [2733] = 2733, + [2734] = 2699, + [2735] = 2713, + [2736] = 2658, + [2737] = 2737, + [2738] = 2738, + [2739] = 2739, + [2740] = 2658, [2741] = 2741, - [2742] = 2594, - [2743] = 2743, - [2744] = 2607, - [2745] = 2608, - [2746] = 2621, - [2747] = 2626, - [2748] = 2609, - [2749] = 2700, - [2750] = 2593, - [2751] = 2621, - [2752] = 2609, - [2753] = 2609, - [2754] = 2607, - [2755] = 2668, - [2756] = 2644, - [2757] = 2757, - [2758] = 2604, - [2759] = 2598, - [2760] = 2680, - [2761] = 2606, - [2762] = 2596, - [2763] = 2645, - [2764] = 2596, - [2765] = 2608, - [2766] = 2615, - [2767] = 2616, - [2768] = 2597, - [2769] = 2598, - [2770] = 2618, - [2771] = 2598, - [2772] = 2660, - [2773] = 2609, - [2774] = 2644, - [2775] = 2608, - [2776] = 2623, - [2777] = 2614, - [2778] = 2607, - [2779] = 2640, - [2780] = 2632, - [2781] = 2726, - [2782] = 2597, - [2783] = 2741, - [2784] = 2726, - [2785] = 2600, - [2786] = 2786, - [2787] = 2593, + [2742] = 2659, + [2743] = 2678, + [2744] = 2693, + [2745] = 2745, + [2746] = 2659, + [2747] = 2691, + [2748] = 2748, + [2749] = 2749, + [2750] = 2693, + [2751] = 2662, + [2752] = 2651, + [2753] = 2753, + [2754] = 2662, + [2755] = 2655, + [2756] = 2666, + [2757] = 2653, + [2758] = 2656, + [2759] = 2656, + [2760] = 2760, + [2761] = 2665, + [2762] = 2666, + [2763] = 2667, + [2764] = 2680, + [2765] = 2659, + [2766] = 2766, + [2767] = 2666, + [2768] = 2667, + [2769] = 2658, + [2770] = 2737, + [2771] = 2771, + [2772] = 2658, + [2773] = 2737, + [2774] = 2670, + [2775] = 2691, + [2776] = 2671, + [2777] = 2760, + [2778] = 2778, + [2779] = 2673, + [2780] = 2780, + [2781] = 2699, + [2782] = 2670, + [2783] = 2674, + [2784] = 2745, + [2785] = 2671, + [2786] = 2673, + [2787] = 2699, + [2788] = 2673, + [2789] = 2658, + [2790] = 2662, + [2791] = 2695, + [2792] = 2741, + [2793] = 2674, + [2794] = 2679, + [2795] = 2795, + [2796] = 2760, + [2797] = 2651, + [2798] = 2666, + [2799] = 2653, + [2800] = 2673, + [2801] = 2656, + [2802] = 2771, + [2803] = 2666, + [2804] = 2667, + [2805] = 2651, + [2806] = 2739, + [2807] = 2659, + [2808] = 2667, + [2809] = 2673, + [2810] = 2662, + [2811] = 2748, + [2812] = 2706, + [2813] = 2813, + [2814] = 2656, + [2815] = 2659, + [2816] = 2695, + [2817] = 2817, + [2818] = 2659, + [2819] = 2670, + [2820] = 2666, + [2821] = 2671, + [2822] = 2655, + [2823] = 2653, + [2824] = 2673, + [2825] = 2662, + [2826] = 2651, + [2827] = 2671, + [2828] = 2653, + [2829] = 2665, + [2830] = 2658, + [2831] = 2831, + [2832] = 2662, + [2833] = 2660, + [2834] = 2831, + [2835] = 2679, + [2836] = 2715, + [2837] = 2795, + [2838] = 2817, + [2839] = 2667, + [2840] = 2681, + [2841] = 2817, + [2842] = 2766, + [2843] = 2670, + [2844] = 2653, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -5940,29 +6034,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(20); + if (lookahead == '!') ADVANCE(21); if (lookahead == '#') ADVANCE(148); - if (lookahead == '%') ADVANCE(92); - if (lookahead == '&') ADVANCE(96); + if (lookahead == '%') ADVANCE(91); + if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); + if (lookahead == ')') ADVANCE(59); if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(88); + if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(60); - if (lookahead == '-') ADVANCE(81); + if (lookahead == '-') ADVANCE(80); if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(89); + if (lookahead == '/') ADVANCE(90); if (lookahead == '0') ADVANCE(136); if (lookahead == ':') ADVANCE(69); if (lookahead == ';') ADVANCE(55); - if (lookahead == '<') ADVANCE(102); + if (lookahead == '<') ADVANCE(103); if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '@') ADVANCE(79); + if (lookahead == '>') ADVANCE(111); + if (lookahead == '@') ADVANCE(78); if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(11); - if (lookahead == '^') ADVANCE(98); + if (lookahead == ']') ADVANCE(77); + if (lookahead == '^') ADVANCE(97); if (lookahead == '{') ADVANCE(85); - if (lookahead == '|') ADVANCE(84); + if (lookahead == '|') ADVANCE(83); + if (lookahead == '}') ADVANCE(86); if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || @@ -5974,32 +6071,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(21); + if (lookahead == '!') ADVANCE(20); if (lookahead == '#') ADVANCE(148); - if (lookahead == '%') ADVANCE(91); - if (lookahead == '&') ADVANCE(95); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); - if (lookahead == ')') ADVANCE(59); if (lookahead == '*') ADVANCE(63); - if (lookahead == '+') ADVANCE(87); + if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(60); - if (lookahead == '-') ADVANCE(80); + if (lookahead == '-') ADVANCE(81); if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(89); if (lookahead == '0') ADVANCE(136); if (lookahead == ':') ADVANCE(69); if (lookahead == ';') ADVANCE(55); - if (lookahead == '<') ADVANCE(103); + if (lookahead == '<') ADVANCE(102); if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(111); - if (lookahead == '@') ADVANCE(78); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); if (lookahead == '[') ADVANCE(76); if (lookahead == '\\') ADVANCE(11); - if (lookahead == ']') ADVANCE(77); - if (lookahead == '^') ADVANCE(97); + if (lookahead == '^') ADVANCE(98); if (lookahead == '{') ADVANCE(85); - if (lookahead == '|') ADVANCE(83); - if (lookahead == '}') ADVANCE(86); + if (lookahead == '|') ADVANCE(84); if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || @@ -6043,35 +6137,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '#') ADVANCE(148); - if (lookahead == '(') ADVANCE(58); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(87); - if (lookahead == '-') ADVANCE(80); - if (lookahead == '.') ADVANCE(16); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(68); - if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(11); - if (lookahead == '{') ADVANCE(85); - if (lookahead == '~') ADVANCE(101); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); - END_STATE(); - case 8: - if (lookahead == '\r') SKIP(8); if (lookahead == '!') ADVANCE(20); if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(92); if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); + if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(81); @@ -6089,11 +6161,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '^') ADVANCE(98); if (lookahead == '|') ADVANCE(84); if (lookahead == '}') ADVANCE(86); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(7); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); + END_STATE(); + case 8: + if (lookahead == '\r') SKIP(8); + if (lookahead == '#') ADVANCE(148); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(70); + if (lookahead == '+') ADVANCE(87); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(8); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); case 9: @@ -6104,7 +6198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); + if (lookahead == '*') ADVANCE(63); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(81); @@ -6147,47 +6241,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 12: if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(148); - if (lookahead == '%') ADVANCE(92); - if (lookahead == '&') ADVANCE(96); - if (lookahead == '(') ADVANCE(58); - if (lookahead == '*') ADVANCE(62); - if (lookahead == '+') ADVANCE(88); - if (lookahead == ',') ADVANCE(60); - if (lookahead == '-') ADVANCE(81); - if (lookahead == '.') ADVANCE(57); - if (lookahead == '/') ADVANCE(89); - if (lookahead == '0') ADVANCE(136); - if (lookahead == ':') ADVANCE(68); - if (lookahead == ';') ADVANCE(55); - if (lookahead == '<') ADVANCE(102); - if (lookahead == '=') ADVANCE(75); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '@') ADVANCE(79); - if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(11); - if (lookahead == '^') ADVANCE(98); - if (lookahead == '{') ADVANCE(85); - if (lookahead == '|') ADVANCE(84); - if (lookahead == '~') ADVANCE(101); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); - END_STATE(); - case 13: - if (lookahead == '\r') SKIP(13); if (lookahead == '!') ADVANCE(21); if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(91); if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); + if (lookahead == '*') ADVANCE(62); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(80); @@ -6208,6 +6268,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '|') ADVANCE(83); if (lookahead == '}') ADVANCE(86); if (lookahead == '~') ADVANCE(101); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); + END_STATE(); + case 13: + if (lookahead == '\r') SKIP(13); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(148); + if (lookahead == '%') ADVANCE(92); + if (lookahead == '&') ADVANCE(96); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(88); + if (lookahead == ',') ADVANCE(60); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(57); + if (lookahead == '/') ADVANCE(89); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(55); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(110); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(98); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '|') ADVANCE(84); + if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || @@ -6224,7 +6318,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); + if (lookahead == '*') ADVANCE(62); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(80); @@ -6257,7 +6351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); - if (lookahead == '*') ADVANCE(63); + if (lookahead == '*') ADVANCE(62); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(80); @@ -6522,12 +6616,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 62: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(73); - if (lookahead == '=') ADVANCE(115); + if (lookahead == '*') ADVANCE(72); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(72); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_STAR); @@ -7502,8 +7596,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [11] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [12] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [13] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [14] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, - [15] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [14] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [15] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, [16] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [17] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [18] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, @@ -7533,8 +7627,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [43] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [44] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [45] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, - [46] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [45] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [46] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, [47] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [48] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [49] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, @@ -7556,465 +7650,465 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [66] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [67] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [68] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, - [69] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [70] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [71] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [72] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [73] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [68] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [69] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [70] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [71] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [72] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [73] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [74] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [75] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [76] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [77] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [78] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [79] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [80] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [81] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [76] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [77] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [78] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [79] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [80] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [81] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [82] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [83] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [84] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [85] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [86] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [87] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [88] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [89] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [90] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [91] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [92] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [93] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [94] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [95] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [96] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [97] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [98] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [99] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [100] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [101] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, - [102] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [103] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [104] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [105] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [106] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [107] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [108] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [109] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [110] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [111] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [112] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [113] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [114] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [115] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [116] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [117] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [118] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [119] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [120] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [121] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [122] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [123] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [124] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, - [125] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [126] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [127] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [128] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [129] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [130] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [131] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [132] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [133] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [134] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [135] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [136] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [137] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [138] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [139] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [140] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [141] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, - [142] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [143] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, - [144] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, - [145] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, - [146] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, - [147] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [148] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [149] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [150] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [151] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 4}, - [152] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, - [153] = {.lex_state = 13, .external_lex_state = 4, .reserved_word_set_id = 5}, - [154] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [155] = {.lex_state = 13, .external_lex_state = 4, .reserved_word_set_id = 5}, - [156] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, - [157] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, - [158] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, - [159] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 4}, - [160] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 6}, - [161] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [162] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, - [163] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [164] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [165] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [166] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [167] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 6}, - [168] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 1}, - [169] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, - [170] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [171] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, - [172] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 4}, - [173] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 6}, - [174] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, - [175] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [176] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [177] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [178] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [179] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, - [180] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [181] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 4}, - [182] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [183] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [184] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [185] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [186] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [187] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [188] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [189] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [190] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [191] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [192] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [193] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [194] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [84] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [85] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [86] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [87] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [88] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [89] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [90] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [91] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [92] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [93] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [94] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [95] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [96] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [97] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [98] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [99] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [100] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [101] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [102] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [103] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [104] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [105] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [106] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [107] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [108] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [109] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [110] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [111] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [112] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [113] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [114] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [115] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [116] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [117] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [118] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [119] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [120] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [121] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [122] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [123] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [124] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [125] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [126] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [127] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [128] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [129] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [130] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [131] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [132] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [133] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [134] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [135] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [136] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [137] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [138] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [139] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [140] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [141] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [142] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [143] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [144] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [145] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [146] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [147] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [148] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [149] = {.lex_state = 13, .external_lex_state = 5, .reserved_word_set_id = 4}, + [150] = {.lex_state = 4, .external_lex_state = 5, .reserved_word_set_id = 5}, + [151] = {.lex_state = 12, .external_lex_state = 5, .reserved_word_set_id = 5}, + [152] = {.lex_state = 12, .external_lex_state = 5, .reserved_word_set_id = 5}, + [153] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [154] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [155] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 4}, + [156] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 7}, + [157] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [158] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 6}, + [159] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 4}, + [160] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, + [161] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 4}, + [162] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 6}, + [163] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [164] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [165] = {.lex_state = 13, .external_lex_state = 5, .reserved_word_set_id = 1}, + [166] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [167] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 6}, + [168] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, + [169] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 6}, + [170] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, + [171] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 4}, + [172] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, + [173] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 4}, + [174] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [175] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 6}, + [176] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 6}, + [177] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 4}, + [178] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 6}, + [179] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 6}, + [180] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [181] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [182] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [183] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, + [184] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [185] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [186] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [187] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [188] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, + [189] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [190] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [191] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [192] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [193] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [194] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, [195] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [196] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [197] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [196] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [197] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, [198] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [199] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [200] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [200] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, [201] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [202] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [203] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [203] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, [204] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [205] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [206] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [206] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, [207] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [208] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [209] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [209] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 8}, [210] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [211] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [212] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [213] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [212] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [213] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [214] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [215] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [216] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [217] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [218] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [219] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [220] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [221] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [222] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [223] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [224] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [225] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [226] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [227] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [228] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [229] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [231] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [232] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [233] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [234] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [235] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [236] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [237] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [238] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [239] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [240] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [242] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [243] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 10}, - [244] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [245] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [246] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [247] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [248] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [249] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [250] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [251] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [252] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [253] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [254] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [255] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [256] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [257] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [258] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [259] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [260] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [261] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [262] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [264] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [265] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [266] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [267] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [268] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [269] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [270] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [271] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [272] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [273] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [274] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [275] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [276] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [277] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [278] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [279] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [280] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [281] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [282] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [283] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [284] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [285] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [286] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [287] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [288] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [289] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [290] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [291] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [292] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [293] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [294] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [295] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [296] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [297] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [298] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [299] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [300] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [301] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [302] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [303] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [304] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [305] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [306] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [307] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [308] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [309] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [310] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [311] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, - [312] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [313] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [314] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [315] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [316] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, - [317] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [318] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [319] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [320] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [321] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [322] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [323] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [324] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 1}, - [325] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [326] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [327] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [328] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [215] = {.lex_state = 6, .external_lex_state = 5, .reserved_word_set_id = 1}, + [216] = {.lex_state = 6, .external_lex_state = 5, .reserved_word_set_id = 1}, + [217] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 9}, + [218] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [219] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 9}, + [220] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [221] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [222] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 9}, + [223] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 9}, + [224] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 9}, + [225] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [226] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 9}, + [227] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [228] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [229] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [230] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [231] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [232] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [233] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [234] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [235] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [236] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [237] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [238] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [239] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [240] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [241] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [242] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [243] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [244] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [245] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [246] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 10}, + [247] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [248] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [249] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [250] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [251] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [252] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [253] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [254] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [255] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [256] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [257] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [258] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [259] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [260] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 9}, + [261] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [262] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [263] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [264] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [265] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [266] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [267] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [268] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [269] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [270] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [271] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [272] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [273] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [274] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [275] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [276] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [277] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [278] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [279] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [280] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [281] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [282] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [283] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [284] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [285] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [286] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [287] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [288] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [289] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [290] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [291] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [292] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [293] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [294] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [295] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [296] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [297] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [298] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [299] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [300] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [301] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [302] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [303] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [304] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [305] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [306] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [307] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [308] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [309] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [310] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [311] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [312] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [313] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [314] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [315] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [316] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [317] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [318] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [319] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [320] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [321] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [322] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [323] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [324] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [325] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [326] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 9}, + [327] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [328] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [329] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, - [330] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [330] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, [331] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [332] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [333] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, - [334] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [335] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [336] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [337] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [338] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [339] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [340] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [341] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [333] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [334] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [335] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [336] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [337] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [338] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, + [339] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [340] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [341] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [342] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [343] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [344] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [345] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [346] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [347] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [348] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [349] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [350] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [351] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [352] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [353] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [354] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [355] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [356] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [357] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [358] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [359] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [360] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [361] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [362] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [363] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [364] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [365] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [366] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [367] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [368] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [369] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [370] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [371] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [343] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [344] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [345] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [346] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [347] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [348] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [349] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [350] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [351] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [352] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [353] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [354] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [355] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [356] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [357] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [358] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [359] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [360] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [361] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [362] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [363] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [364] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [365] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [366] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [367] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [368] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [369] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [370] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, + [371] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 9}, [372] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [373] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [373] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [374] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [375] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [376] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [377] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [377] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, [378] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [379] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, + [379] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [380] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [381] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [382] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [383] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [384] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [385] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, - [386] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 1}, + [383] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [384] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [385] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 1}, + [386] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [387] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [388] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [388] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, [389] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [390] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [391] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [392] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [393] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [394] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [391] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 10}, + [392] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [393] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [394] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [395] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [396] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [397] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [398] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [399] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [400] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 1}, + [396] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [397] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 10}, + [398] = {.lex_state = 7, .external_lex_state = 9, .reserved_word_set_id = 1}, + [399] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [400] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [401] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [402] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [403] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, [404] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, - [405] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, - [406] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [407] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [408] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [409] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [410] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [411] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [412] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [413] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [414] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [415] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [416] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [417] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [418] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [419] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [420] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [421] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, - [422] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [405] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [406] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [407] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [408] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [409] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [410] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 9}, + [411] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [412] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [413] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [414] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [415] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [416] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [417] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [418] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [419] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [420] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [421] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [422] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, [423] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [424] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [425] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [426] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [427] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [428] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [424] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [425] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [426] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [427] = {.lex_state = 7, .external_lex_state = 9, .reserved_word_set_id = 1}, + [428] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [429] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [430] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [430] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [431] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [432] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [433] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [434] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [435] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [436] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [437] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [438] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [433] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [434] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [435] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [436] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [437] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [438] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, [439] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [440] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [441] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, - [442] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [441] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [442] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [443] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [444] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [444] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [445] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [446] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [447] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [448] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, - [449] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [447] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [448] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [449] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, [450] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [451] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [451] = {.lex_state = 8, .external_lex_state = 2, .reserved_word_set_id = 1}, [452] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [453] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [454] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [455] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [456] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [457] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [458] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [456] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [457] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [458] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [459] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [460] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [460] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, [461] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [462] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [463] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [464] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, - [465] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [464] = {.lex_state = 8, .external_lex_state = 2, .reserved_word_set_id = 1}, + [465] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [466] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [467] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [468] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [469] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [470] = {.lex_state = 8, .external_lex_state = 9}, + [470] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [471] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [472] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [473] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [474] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [475] = {.lex_state = 8, .external_lex_state = 9}, + [474] = {.lex_state = 7, .external_lex_state = 5, .reserved_word_set_id = 1}, + [475] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [476] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [477] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [478] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [479] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [480] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [481] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [482] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [483] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [479] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [480] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [481] = {.lex_state = 7, .external_lex_state = 5, .reserved_word_set_id = 1}, + [482] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [483] = {.lex_state = 7, .external_lex_state = 9}, [484] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [485] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [486] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [487] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [488] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [489] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [490] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [485] = {.lex_state = 7, .external_lex_state = 9}, + [486] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [487] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [488] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [489] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [490] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [491] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [492] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [493] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [492] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [493] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [494] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [495] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [496] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [497] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [498] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [497] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [498] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [499] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [500] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [500] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [501] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [502] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [502] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [503] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [504] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [504] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [505] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [506] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [507] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [508] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [507] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [508] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [509] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [510] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [510] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [511] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [512] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [513] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [513] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [514] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [515] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [516] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [515] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [516] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [517] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [518] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [519] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [520] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [522] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [523] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [522] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [523] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [524] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [525] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [526] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [526] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [527] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [528] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [529] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, @@ -8033,277 +8127,277 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [543] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [544] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [546] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [547] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [548] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [549] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [546] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [547] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [548] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [549] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [550] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [551] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [552] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [552] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [554] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [555] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [557] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [558] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [559] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [559] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [560] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [561] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [561] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [562] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [565] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [565] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [566] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [567] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [567] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [568] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [569] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [569] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [570] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [571] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [572] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [573] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [574] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [572] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [573] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [574] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [575] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [576] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [577] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [578] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [579] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [576] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [577] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [578] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [579] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [580] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [581] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [581] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [583] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [584] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [584] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [585] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [586] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [587] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [588] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [589] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [586] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [587] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [588] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [589] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [590] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [591] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [592] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [591] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [592] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [593] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [594] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [595] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [596] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [597] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [597] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [598] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [599] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [600] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, - [601] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [602] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [601] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [602] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, [603] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [605] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [606] = {.lex_state = 8, .external_lex_state = 9}, - [607] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [608] = {.lex_state = 8, .external_lex_state = 9}, - [609] = {.lex_state = 8, .external_lex_state = 9}, - [610] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [605] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [606] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [607] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [608] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [609] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [610] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [611] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [612] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [613] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [614] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [615] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [616] = {.lex_state = 8, .external_lex_state = 9}, - [617] = {.lex_state = 8, .external_lex_state = 9}, - [618] = {.lex_state = 8, .external_lex_state = 9}, - [619] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [620] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [612] = {.lex_state = 7, .external_lex_state = 9}, + [613] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [614] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [615] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [616] = {.lex_state = 7, .external_lex_state = 9}, + [617] = {.lex_state = 7, .external_lex_state = 9}, + [618] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [619] = {.lex_state = 7, .external_lex_state = 9}, + [620] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [621] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [622] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, - [623] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [624] = {.lex_state = 9, .external_lex_state = 9}, - [625] = {.lex_state = 9, .external_lex_state = 9}, - [626] = {.lex_state = 9, .external_lex_state = 9}, - [627] = {.lex_state = 9, .external_lex_state = 9}, - [628] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [622] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [623] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [624] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [625] = {.lex_state = 7, .external_lex_state = 9}, + [626] = {.lex_state = 7, .external_lex_state = 9}, + [627] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [628] = {.lex_state = 9, .external_lex_state = 9}, [629] = {.lex_state = 9, .external_lex_state = 9}, [630] = {.lex_state = 9, .external_lex_state = 9}, [631] = {.lex_state = 9, .external_lex_state = 9}, - [632] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [633] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [632] = {.lex_state = 9, .external_lex_state = 9}, + [633] = {.lex_state = 9, .external_lex_state = 9}, [634] = {.lex_state = 9, .external_lex_state = 9}, [635] = {.lex_state = 9, .external_lex_state = 9}, [636] = {.lex_state = 9, .external_lex_state = 9}, - [637] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [638] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [639] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, - [640] = {.lex_state = 9, .external_lex_state = 9}, + [637] = {.lex_state = 9, .external_lex_state = 9}, + [638] = {.lex_state = 9, .external_lex_state = 9}, + [639] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [640] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, [641] = {.lex_state = 9, .external_lex_state = 9}, [642] = {.lex_state = 9, .external_lex_state = 9}, - [643] = {.lex_state = 9, .external_lex_state = 9}, + [643] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, [644] = {.lex_state = 9, .external_lex_state = 9}, - [645] = {.lex_state = 9, .external_lex_state = 9}, - [646] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, - [647] = {.lex_state = 9, .external_lex_state = 9}, - [648] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, - [649] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [645] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [646] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [647] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [648] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [649] = {.lex_state = 9, .external_lex_state = 9}, [650] = {.lex_state = 9, .external_lex_state = 9}, - [651] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [651] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, [652] = {.lex_state = 9, .external_lex_state = 9}, - [653] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [654] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [655] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [656] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [657] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [658] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [653] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [654] = {.lex_state = 9, .external_lex_state = 9}, + [655] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [656] = {.lex_state = 9, .external_lex_state = 9}, + [657] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [658] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, [659] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [660] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [660] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [661] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [662] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [663] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [663] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [664] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [665] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [665] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [666] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [667] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [668] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [668] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [669] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [670] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [670] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [671] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [672] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [673] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [673] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [674] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [675] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [676] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [677] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [678] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [679] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [680] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [680] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, [681] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [682] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [683] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, - [684] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [685] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [683] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [684] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [685] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [686] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [687] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [688] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [689] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [690] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, - [691] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [692] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [693] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [694] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [695] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [696] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [697] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [698] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [689] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [690] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [691] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [692] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [693] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [694] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [695] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [696] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [697] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [698] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [699] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [700] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [701] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [702] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [701] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [702] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [703] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [704] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [705] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [706] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [707] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [704] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [705] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [706] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [707] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [708] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [709] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [710] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [710] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [711] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [712] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [713] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [712] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [713] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [714] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [715] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [716] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [717] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [718] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, - [719] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, - [720] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, - [721] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, - [722] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [723] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [724] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [725] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [726] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [727] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [728] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [717] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [718] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [719] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [720] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [721] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [722] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [723] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, + [724] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, + [725] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, + [726] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [727] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, + [728] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [729] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [730] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [731] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [730] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [731] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [732] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [733] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [733] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [734] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [735] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [736] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [735] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [736] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [737] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [738] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [739] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [740] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [741] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [742] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [741] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [742] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [743] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [744] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [745] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [746] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [747] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [748] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [749] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [750] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [745] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [746] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [747] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [748] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [749] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [750] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [751] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [752] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [753] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [752] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [753] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [754] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [755] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [756] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [755] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [756] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [757] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [758] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [758] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [759] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [760] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [761] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [762] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [763] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [764] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [765] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [764] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [765] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [766] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [767] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [768] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [767] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [768] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [769] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [770] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [770] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [771] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [772] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [773] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [774] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [773] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [774] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [775] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [776] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [777] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [778] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [777] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [778] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [779] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [780] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [781] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [782] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [783] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [782] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [783] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [784] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [785] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [786] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [785] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [786] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [787] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [788] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [789] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [790] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [789] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [790] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [791] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [792] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [793] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [792] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [793] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [794] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [795] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [796] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [797] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [798] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [796] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [797] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [798] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [799] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [800] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [801] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [802] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [802] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [803] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [804] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [805] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [806] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [807] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [808] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [808] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [809] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [810] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [811] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [810] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [811] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [812] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [813] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [813] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [814] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [815] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [815] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [816] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [817] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [818] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, @@ -8311,60 +8405,60 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [820] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [821] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [822] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [823] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [823] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [824] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [825] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [826] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [827] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [827] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [828] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [829] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [830] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [831] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [830] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [831] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [832] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [833] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [833] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [834] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [835] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [836] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [837] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [836] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [837] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [838] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [839] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [839] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [840] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [841] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, - [842] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [842] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [843] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [844] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [845] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [846] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [847] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [848] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [846] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [847] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [848] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [849] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [850] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [851] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [852] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [851] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [852] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, [853] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [854] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, - [855] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [856] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [857] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [858] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [859] = {.lex_state = 14, .external_lex_state = 9}, - [860] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [854] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [855] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [856] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [857] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [858] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [859] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [860] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [861] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [862] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [863] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, - [864] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [865] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [866] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [867] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [868] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [869] = {.lex_state = 14, .external_lex_state = 12}, + [864] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [865] = {.lex_state = 14, .external_lex_state = 9}, + [866] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [867] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [868] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [869] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, [870] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [871] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [872] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [873] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [874] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [875] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [876] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [876] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [877] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [878] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [879] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, @@ -8402,338 +8496,338 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [911] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [912] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [913] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [915] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [916] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [917] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [917] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [918] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [919] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [920] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [921] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [922] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [923] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [923] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [924] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [925] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [926] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [927] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [926] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [927] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [928] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [929] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [930] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [930] = {.lex_state = 14, .external_lex_state = 12}, + [931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [932] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [933] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [935] = {.lex_state = 14, .external_lex_state = 13}, + [934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [935] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [936] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [937] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [938] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [939] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [939] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [940] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [941] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [942] = {.lex_state = 14, .external_lex_state = 13}, + [942] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [943] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [944] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [945] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [946] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [947] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [948] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [948] = {.lex_state = 14, .external_lex_state = 12}, [949] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [950] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [951] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [952] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [953] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [951] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [952] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [953] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, [954] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [955] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [956] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [957] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [955] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [956] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [957] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [958] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, - [959] = {.lex_state = 14, .external_lex_state = 14}, - [960] = {.lex_state = 14, .external_lex_state = 4}, - [961] = {.lex_state = 14, .external_lex_state = 4}, - [962] = {.lex_state = 14, .external_lex_state = 15}, - [963] = {.lex_state = 14, .external_lex_state = 9}, - [964] = {.lex_state = 14, .external_lex_state = 14}, - [965] = {.lex_state = 14, .external_lex_state = 4}, - [966] = {.lex_state = 14, .external_lex_state = 8}, - [967] = {.lex_state = 14, .external_lex_state = 9}, - [968] = {.lex_state = 14, .external_lex_state = 6}, - [969] = {.lex_state = 14, .external_lex_state = 8}, - [970] = {.lex_state = 14, .external_lex_state = 9}, - [971] = {.lex_state = 14, .external_lex_state = 8}, - [972] = {.lex_state = 14, .external_lex_state = 9}, + [959] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [960] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [961] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [962] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [963] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [964] = {.lex_state = 14, .external_lex_state = 5}, + [965] = {.lex_state = 14, .external_lex_state = 9}, + [966] = {.lex_state = 14, .external_lex_state = 5}, + [967] = {.lex_state = 14, .external_lex_state = 13}, + [968] = {.lex_state = 14, .external_lex_state = 14}, + [969] = {.lex_state = 14, .external_lex_state = 5}, + [970] = {.lex_state = 14, .external_lex_state = 14}, + [971] = {.lex_state = 14, .external_lex_state = 15}, + [972] = {.lex_state = 14, .external_lex_state = 6}, [973] = {.lex_state = 14, .external_lex_state = 6}, - [974] = {.lex_state = 14, .external_lex_state = 9}, - [975] = {.lex_state = 14, .external_lex_state = 9}, - [976] = {.lex_state = 14, .external_lex_state = 12}, - [977] = {.lex_state = 14, .external_lex_state = 9}, - [978] = {.lex_state = 14, .external_lex_state = 6}, + [974] = {.lex_state = 14, .external_lex_state = 6}, + [975] = {.lex_state = 14, .external_lex_state = 6}, + [976] = {.lex_state = 14, .external_lex_state = 9}, + [977] = {.lex_state = 14, .external_lex_state = 6}, + [978] = {.lex_state = 14, .external_lex_state = 9}, [979] = {.lex_state = 14, .external_lex_state = 9}, - [980] = {.lex_state = 14, .external_lex_state = 6}, - [981] = {.lex_state = 14, .external_lex_state = 6}, - [982] = {.lex_state = 14, .external_lex_state = 6}, + [980] = {.lex_state = 14, .external_lex_state = 9}, + [981] = {.lex_state = 14, .external_lex_state = 9}, + [982] = {.lex_state = 14, .external_lex_state = 9}, [983] = {.lex_state = 14, .external_lex_state = 9}, [984] = {.lex_state = 14, .external_lex_state = 9}, - [985] = {.lex_state = 14, .external_lex_state = 9}, - [986] = {.lex_state = 15, .external_lex_state = 12}, - [987] = {.lex_state = 14, .external_lex_state = 12}, - [988] = {.lex_state = 14, .external_lex_state = 13}, + [985] = {.lex_state = 14, .external_lex_state = 6}, + [986] = {.lex_state = 14, .external_lex_state = 9}, + [987] = {.lex_state = 14, .external_lex_state = 13}, + [988] = {.lex_state = 14, .external_lex_state = 9}, [989] = {.lex_state = 14, .external_lex_state = 13}, - [990] = {.lex_state = 14, .external_lex_state = 13}, - [991] = {.lex_state = 14, .external_lex_state = 14}, + [990] = {.lex_state = 14, .external_lex_state = 12}, + [991] = {.lex_state = 14, .external_lex_state = 12}, [992] = {.lex_state = 14, .external_lex_state = 12}, - [993] = {.lex_state = 14, .external_lex_state = 7}, + [993] = {.lex_state = 14, .external_lex_state = 2}, [994] = {.lex_state = 14, .external_lex_state = 12}, - [995] = {.lex_state = 14, .external_lex_state = 13}, - [996] = {.lex_state = 15, .external_lex_state = 9}, - [997] = {.lex_state = 14, .external_lex_state = 7}, - [998] = {.lex_state = 14, .external_lex_state = 13}, - [999] = {.lex_state = 14, .external_lex_state = 12}, + [995] = {.lex_state = 14, .external_lex_state = 12}, + [996] = {.lex_state = 14, .external_lex_state = 7}, + [997] = {.lex_state = 14, .external_lex_state = 8}, + [998] = {.lex_state = 14, .external_lex_state = 7}, + [999] = {.lex_state = 14, .external_lex_state = 7}, [1000] = {.lex_state = 14, .external_lex_state = 12}, - [1001] = {.lex_state = 14, .external_lex_state = 13}, - [1002] = {.lex_state = 14, .external_lex_state = 13}, - [1003] = {.lex_state = 14, .external_lex_state = 13}, - [1004] = {.lex_state = 14, .external_lex_state = 13}, - [1005] = {.lex_state = 14, .external_lex_state = 13}, - [1006] = {.lex_state = 14, .external_lex_state = 12}, - [1007] = {.lex_state = 14, .external_lex_state = 4}, - [1008] = {.lex_state = 14, .external_lex_state = 13}, - [1009] = {.lex_state = 14, .external_lex_state = 7}, - [1010] = {.lex_state = 14, .external_lex_state = 12}, - [1011] = {.lex_state = 15, .external_lex_state = 12}, - [1012] = {.lex_state = 14, .external_lex_state = 7}, - [1013] = {.lex_state = 14, .external_lex_state = 13}, - [1014] = {.lex_state = 14, .external_lex_state = 13}, - [1015] = {.lex_state = 14, .external_lex_state = 13}, - [1016] = {.lex_state = 14, .external_lex_state = 13}, - [1017] = {.lex_state = 14, .external_lex_state = 2}, - [1018] = {.lex_state = 15, .external_lex_state = 9}, - [1019] = {.lex_state = 14, .external_lex_state = 2}, + [1001] = {.lex_state = 14, .external_lex_state = 8}, + [1002] = {.lex_state = 14, .external_lex_state = 14}, + [1003] = {.lex_state = 14, .external_lex_state = 7}, + [1004] = {.lex_state = 14, .external_lex_state = 7}, + [1005] = {.lex_state = 14, .external_lex_state = 12}, + [1006] = {.lex_state = 14, .external_lex_state = 8}, + [1007] = {.lex_state = 14, .external_lex_state = 5}, + [1008] = {.lex_state = 14, .external_lex_state = 7}, + [1009] = {.lex_state = 14, .external_lex_state = 12}, + [1010] = {.lex_state = 15, .external_lex_state = 9}, + [1011] = {.lex_state = 14, .external_lex_state = 2}, + [1012] = {.lex_state = 14, .external_lex_state = 12}, + [1013] = {.lex_state = 14, .external_lex_state = 2}, + [1014] = {.lex_state = 14, .external_lex_state = 12}, + [1015] = {.lex_state = 14, .external_lex_state = 12}, + [1016] = {.lex_state = 14, .external_lex_state = 12}, + [1017] = {.lex_state = 15, .external_lex_state = 9}, + [1018] = {.lex_state = 14, .external_lex_state = 12}, + [1019] = {.lex_state = 14, .external_lex_state = 12}, [1020] = {.lex_state = 14, .external_lex_state = 12}, - [1021] = {.lex_state = 14, .external_lex_state = 13}, - [1022] = {.lex_state = 14, .external_lex_state = 13}, - [1023] = {.lex_state = 14, .external_lex_state = 13}, - [1024] = {.lex_state = 14, .external_lex_state = 13}, - [1025] = {.lex_state = 14, .external_lex_state = 13}, - [1026] = {.lex_state = 14, .external_lex_state = 2}, - [1027] = {.lex_state = 14, .external_lex_state = 13}, - [1028] = {.lex_state = 14, .external_lex_state = 13}, + [1021] = {.lex_state = 14, .external_lex_state = 12}, + [1022] = {.lex_state = 14, .external_lex_state = 12}, + [1023] = {.lex_state = 14, .external_lex_state = 12}, + [1024] = {.lex_state = 14, .external_lex_state = 5}, + [1025] = {.lex_state = 14, .external_lex_state = 12}, + [1026] = {.lex_state = 14, .external_lex_state = 12}, + [1027] = {.lex_state = 14, .external_lex_state = 12}, + [1028] = {.lex_state = 14, .external_lex_state = 12}, [1029] = {.lex_state = 15, .external_lex_state = 9}, [1030] = {.lex_state = 14, .external_lex_state = 12}, - [1031] = {.lex_state = 14, .external_lex_state = 4}, - [1032] = {.lex_state = 14, .external_lex_state = 13}, - [1033] = {.lex_state = 14, .external_lex_state = 7}, + [1031] = {.lex_state = 14, .external_lex_state = 12}, + [1032] = {.lex_state = 14, .external_lex_state = 12}, + [1033] = {.lex_state = 14, .external_lex_state = 12}, [1034] = {.lex_state = 14, .external_lex_state = 12}, - [1035] = {.lex_state = 14, .external_lex_state = 13}, - [1036] = {.lex_state = 14, .external_lex_state = 13}, - [1037] = {.lex_state = 14, .external_lex_state = 13}, - [1038] = {.lex_state = 14, .external_lex_state = 13}, - [1039] = {.lex_state = 14, .external_lex_state = 12}, - [1040] = {.lex_state = 14, .external_lex_state = 13}, - [1041] = {.lex_state = 14, .external_lex_state = 7}, - [1042] = {.lex_state = 15, .external_lex_state = 12}, - [1043] = {.lex_state = 14, .external_lex_state = 9}, - [1044] = {.lex_state = 14, .external_lex_state = 15}, - [1045] = {.lex_state = 14, .external_lex_state = 15}, - [1046] = {.lex_state = 14, .external_lex_state = 15}, - [1047] = {.lex_state = 14, .external_lex_state = 15}, - [1048] = {.lex_state = 14, .external_lex_state = 6}, - [1049] = {.lex_state = 14, .external_lex_state = 15}, - [1050] = {.lex_state = 14, .external_lex_state = 15}, - [1051] = {.lex_state = 14, .external_lex_state = 15}, - [1052] = {.lex_state = 14, .external_lex_state = 14}, - [1053] = {.lex_state = 14, .external_lex_state = 15}, - [1054] = {.lex_state = 14, .external_lex_state = 14}, + [1035] = {.lex_state = 14, .external_lex_state = 12}, + [1036] = {.lex_state = 14, .external_lex_state = 9}, + [1037] = {.lex_state = 14, .external_lex_state = 14}, + [1038] = {.lex_state = 14, .external_lex_state = 9}, + [1039] = {.lex_state = 15, .external_lex_state = 14}, + [1040] = {.lex_state = 14, .external_lex_state = 9}, + [1041] = {.lex_state = 14, .external_lex_state = 14}, + [1042] = {.lex_state = 14, .external_lex_state = 13}, + [1043] = {.lex_state = 14, .external_lex_state = 13}, + [1044] = {.lex_state = 14, .external_lex_state = 6}, + [1045] = {.lex_state = 15, .external_lex_state = 14}, + [1046] = {.lex_state = 15, .external_lex_state = 12}, + [1047] = {.lex_state = 14, .external_lex_state = 13}, + [1048] = {.lex_state = 14, .external_lex_state = 13}, + [1049] = {.lex_state = 14, .external_lex_state = 13}, + [1050] = {.lex_state = 14, .external_lex_state = 13}, + [1051] = {.lex_state = 14, .external_lex_state = 9}, + [1052] = {.lex_state = 15, .external_lex_state = 14}, + [1053] = {.lex_state = 15, .external_lex_state = 14}, + [1054] = {.lex_state = 14, .external_lex_state = 9}, [1055] = {.lex_state = 14, .external_lex_state = 9}, - [1056] = {.lex_state = 14, .external_lex_state = 9}, - [1057] = {.lex_state = 14, .external_lex_state = 6}, - [1058] = {.lex_state = 14, .external_lex_state = 14}, - [1059] = {.lex_state = 14, .external_lex_state = 14}, + [1056] = {.lex_state = 14, .external_lex_state = 13}, + [1057] = {.lex_state = 14, .external_lex_state = 15}, + [1058] = {.lex_state = 14, .external_lex_state = 9}, + [1059] = {.lex_state = 14, .external_lex_state = 8}, [1060] = {.lex_state = 14, .external_lex_state = 14}, - [1061] = {.lex_state = 14, .external_lex_state = 14}, - [1062] = {.lex_state = 14, .external_lex_state = 14}, - [1063] = {.lex_state = 14, .external_lex_state = 14}, - [1064] = {.lex_state = 14, .external_lex_state = 14}, - [1065] = {.lex_state = 14, .external_lex_state = 14}, - [1066] = {.lex_state = 14, .external_lex_state = 9}, - [1067] = {.lex_state = 14, .external_lex_state = 9}, - [1068] = {.lex_state = 14, .external_lex_state = 8}, + [1061] = {.lex_state = 14, .external_lex_state = 9}, + [1062] = {.lex_state = 14, .external_lex_state = 6}, + [1063] = {.lex_state = 14, .external_lex_state = 9}, + [1064] = {.lex_state = 14, .external_lex_state = 9}, + [1065] = {.lex_state = 15, .external_lex_state = 12}, + [1066] = {.lex_state = 14, .external_lex_state = 13}, + [1067] = {.lex_state = 14, .external_lex_state = 13}, + [1068] = {.lex_state = 15, .external_lex_state = 12}, [1069] = {.lex_state = 14, .external_lex_state = 9}, - [1070] = {.lex_state = 15, .external_lex_state = 13}, - [1071] = {.lex_state = 15, .external_lex_state = 13}, - [1072] = {.lex_state = 15, .external_lex_state = 13}, - [1073] = {.lex_state = 14, .external_lex_state = 9}, - [1074] = {.lex_state = 14, .external_lex_state = 9}, - [1075] = {.lex_state = 14, .external_lex_state = 9}, + [1070] = {.lex_state = 14, .external_lex_state = 9}, + [1071] = {.lex_state = 14, .external_lex_state = 14}, + [1072] = {.lex_state = 14, .external_lex_state = 15}, + [1073] = {.lex_state = 14, .external_lex_state = 15}, + [1074] = {.lex_state = 14, .external_lex_state = 15}, + [1075] = {.lex_state = 14, .external_lex_state = 15}, [1076] = {.lex_state = 14, .external_lex_state = 9}, - [1077] = {.lex_state = 14, .external_lex_state = 9}, - [1078] = {.lex_state = 15, .external_lex_state = 13}, - [1079] = {.lex_state = 14, .external_lex_state = 8}, - [1080] = {.lex_state = 14, .external_lex_state = 8}, - [1081] = {.lex_state = 14, .external_lex_state = 9}, - [1082] = {.lex_state = 15, .external_lex_state = 14}, - [1083] = {.lex_state = 15, .external_lex_state = 14}, - [1084] = {.lex_state = 14, .external_lex_state = 9}, - [1085] = {.lex_state = 14, .external_lex_state = 9}, - [1086] = {.lex_state = 15, .external_lex_state = 14}, - [1087] = {.lex_state = 15, .external_lex_state = 12}, - [1088] = {.lex_state = 15, .external_lex_state = 14}, + [1077] = {.lex_state = 14, .external_lex_state = 15}, + [1078] = {.lex_state = 14, .external_lex_state = 15}, + [1079] = {.lex_state = 14, .external_lex_state = 14}, + [1080] = {.lex_state = 14, .external_lex_state = 14}, + [1081] = {.lex_state = 14, .external_lex_state = 14}, + [1082] = {.lex_state = 14, .external_lex_state = 9}, + [1083] = {.lex_state = 14, .external_lex_state = 14}, + [1084] = {.lex_state = 14, .external_lex_state = 14}, + [1085] = {.lex_state = 14, .external_lex_state = 14}, + [1086] = {.lex_state = 14, .external_lex_state = 14}, + [1087] = {.lex_state = 14, .external_lex_state = 15}, + [1088] = {.lex_state = 14, .external_lex_state = 14}, [1089] = {.lex_state = 14, .external_lex_state = 9}, [1090] = {.lex_state = 14, .external_lex_state = 9}, - [1091] = {.lex_state = 15, .external_lex_state = 9}, - [1092] = {.lex_state = 15, .external_lex_state = 9}, - [1093] = {.lex_state = 14, .external_lex_state = 9}, + [1091] = {.lex_state = 15, .external_lex_state = 12}, + [1092] = {.lex_state = 14, .external_lex_state = 9}, + [1093] = {.lex_state = 15, .external_lex_state = 12}, [1094] = {.lex_state = 14, .external_lex_state = 9}, - [1095] = {.lex_state = 14, .external_lex_state = 9}, - [1096] = {.lex_state = 14, .external_lex_state = 9}, - [1097] = {.lex_state = 14, .external_lex_state = 9}, - [1098] = {.lex_state = 15, .external_lex_state = 14}, - [1099] = {.lex_state = 14, .external_lex_state = 14}, - [1100] = {.lex_state = 14, .external_lex_state = 8}, + [1095] = {.lex_state = 15, .external_lex_state = 12}, + [1096] = {.lex_state = 15, .external_lex_state = 12}, + [1097] = {.lex_state = 14, .external_lex_state = 6}, + [1098] = {.lex_state = 14, .external_lex_state = 9}, + [1099] = {.lex_state = 14, .external_lex_state = 9}, + [1100] = {.lex_state = 14, .external_lex_state = 9}, [1101] = {.lex_state = 14, .external_lex_state = 9}, [1102] = {.lex_state = 14, .external_lex_state = 9}, - [1103] = {.lex_state = 14, .external_lex_state = 14}, - [1104] = {.lex_state = 14, .external_lex_state = 9}, - [1105] = {.lex_state = 14, .external_lex_state = 14}, - [1106] = {.lex_state = 14, .external_lex_state = 14}, - [1107] = {.lex_state = 14, .external_lex_state = 14}, + [1103] = {.lex_state = 14, .external_lex_state = 6}, + [1104] = {.lex_state = 15, .external_lex_state = 12}, + [1105] = {.lex_state = 14, .external_lex_state = 9}, + [1106] = {.lex_state = 15, .external_lex_state = 12}, + [1107] = {.lex_state = 14, .external_lex_state = 9}, [1108] = {.lex_state = 14, .external_lex_state = 9}, - [1109] = {.lex_state = 14, .external_lex_state = 9}, - [1110] = {.lex_state = 15, .external_lex_state = 13}, - [1111] = {.lex_state = 15, .external_lex_state = 13}, - [1112] = {.lex_state = 14, .external_lex_state = 9}, - [1113] = {.lex_state = 14, .external_lex_state = 9}, - [1114] = {.lex_state = 15, .external_lex_state = 13}, - [1115] = {.lex_state = 14, .external_lex_state = 8}, - [1116] = {.lex_state = 14, .external_lex_state = 9}, - [1117] = {.lex_state = 15, .external_lex_state = 13}, - [1118] = {.lex_state = 15, .external_lex_state = 13}, - [1119] = {.lex_state = 14, .external_lex_state = 14}, - [1120] = {.lex_state = 14, .external_lex_state = 9}, - [1121] = {.lex_state = 14, .external_lex_state = 14}, - [1122] = {.lex_state = 14, .external_lex_state = 15}, - [1123] = {.lex_state = 14, .external_lex_state = 14}, - [1124] = {.lex_state = 14, .external_lex_state = 15}, - [1125] = {.lex_state = 14, .external_lex_state = 14}, - [1126] = {.lex_state = 14, .external_lex_state = 6}, + [1109] = {.lex_state = 14, .external_lex_state = 14}, + [1110] = {.lex_state = 15, .external_lex_state = 9}, + [1111] = {.lex_state = 15, .external_lex_state = 12}, + [1112] = {.lex_state = 14, .external_lex_state = 14}, + [1113] = {.lex_state = 14, .external_lex_state = 14}, + [1114] = {.lex_state = 14, .external_lex_state = 9}, + [1115] = {.lex_state = 15, .external_lex_state = 9}, + [1116] = {.lex_state = 14, .external_lex_state = 14}, + [1117] = {.lex_state = 14, .external_lex_state = 14}, + [1118] = {.lex_state = 14, .external_lex_state = 14}, + [1119] = {.lex_state = 14, .external_lex_state = 9}, + [1120] = {.lex_state = 14, .external_lex_state = 14}, + [1121] = {.lex_state = 15, .external_lex_state = 14}, + [1122] = {.lex_state = 14, .external_lex_state = 9}, + [1123] = {.lex_state = 14, .external_lex_state = 9}, + [1124] = {.lex_state = 14, .external_lex_state = 9}, + [1125] = {.lex_state = 14, .external_lex_state = 9}, + [1126] = {.lex_state = 14, .external_lex_state = 9}, [1127] = {.lex_state = 14, .external_lex_state = 14}, - [1128] = {.lex_state = 15, .external_lex_state = 12}, - [1129] = {.lex_state = 15, .external_lex_state = 12}, - [1130] = {.lex_state = 15, .external_lex_state = 12}, - [1131] = {.lex_state = 15, .external_lex_state = 12}, + [1128] = {.lex_state = 14, .external_lex_state = 13}, + [1129] = {.lex_state = 14, .external_lex_state = 9}, + [1130] = {.lex_state = 14, .external_lex_state = 9}, + [1131] = {.lex_state = 14, .external_lex_state = 8}, [1132] = {.lex_state = 14, .external_lex_state = 9}, - [1133] = {.lex_state = 14, .external_lex_state = 9}, - [1134] = {.lex_state = 15, .external_lex_state = 13}, - [1135] = {.lex_state = 15, .external_lex_state = 13}, - [1136] = {.lex_state = 15, .external_lex_state = 13}, + [1133] = {.lex_state = 15, .external_lex_state = 12}, + [1134] = {.lex_state = 14, .external_lex_state = 9}, + [1135] = {.lex_state = 14, .external_lex_state = 8}, + [1136] = {.lex_state = 14, .external_lex_state = 9}, [1137] = {.lex_state = 14, .external_lex_state = 9}, [1138] = {.lex_state = 14, .external_lex_state = 9}, - [1139] = {.lex_state = 14, .external_lex_state = 6}, + [1139] = {.lex_state = 14, .external_lex_state = 15}, [1140] = {.lex_state = 14, .external_lex_state = 9}, - [1141] = {.lex_state = 14, .external_lex_state = 9}, - [1142] = {.lex_state = 14, .external_lex_state = 12}, - [1143] = {.lex_state = 14, .external_lex_state = 13}, - [1144] = {.lex_state = 14, .external_lex_state = 7}, - [1145] = {.lex_state = 14, .external_lex_state = 13}, - [1146] = {.lex_state = 14, .external_lex_state = 13}, - [1147] = {.lex_state = 14, .external_lex_state = 13}, + [1141] = {.lex_state = 14, .external_lex_state = 15}, + [1142] = {.lex_state = 15, .external_lex_state = 12}, + [1143] = {.lex_state = 15, .external_lex_state = 14}, + [1144] = {.lex_state = 14, .external_lex_state = 14}, + [1145] = {.lex_state = 14, .external_lex_state = 14}, + [1146] = {.lex_state = 15, .external_lex_state = 13}, + [1147] = {.lex_state = 14, .external_lex_state = 2}, [1148] = {.lex_state = 14, .external_lex_state = 12}, - [1149] = {.lex_state = 14, .external_lex_state = 12}, - [1150] = {.lex_state = 14, .external_lex_state = 13}, + [1149] = {.lex_state = 14, .external_lex_state = 2}, + [1150] = {.lex_state = 14, .external_lex_state = 12}, [1151] = {.lex_state = 14, .external_lex_state = 12}, - [1152] = {.lex_state = 14, .external_lex_state = 7}, - [1153] = {.lex_state = 14, .external_lex_state = 13}, - [1154] = {.lex_state = 14, .external_lex_state = 13}, - [1155] = {.lex_state = 14, .external_lex_state = 12}, - [1156] = {.lex_state = 14, .external_lex_state = 12}, + [1152] = {.lex_state = 15, .external_lex_state = 15}, + [1153] = {.lex_state = 15, .external_lex_state = 15}, + [1154] = {.lex_state = 15, .external_lex_state = 14}, + [1155] = {.lex_state = 15, .external_lex_state = 14}, + [1156] = {.lex_state = 15, .external_lex_state = 14}, [1157] = {.lex_state = 14, .external_lex_state = 12}, [1158] = {.lex_state = 14, .external_lex_state = 12}, [1159] = {.lex_state = 14, .external_lex_state = 12}, - [1160] = {.lex_state = 14, .external_lex_state = 12}, + [1160] = {.lex_state = 14, .external_lex_state = 8}, [1161] = {.lex_state = 14, .external_lex_state = 12}, [1162] = {.lex_state = 14, .external_lex_state = 12}, [1163] = {.lex_state = 14, .external_lex_state = 12}, - [1164] = {.lex_state = 14, .external_lex_state = 12}, - [1165] = {.lex_state = 14, .external_lex_state = 13}, - [1166] = {.lex_state = 14, .external_lex_state = 13}, + [1164] = {.lex_state = 15, .external_lex_state = 14}, + [1165] = {.lex_state = 15, .external_lex_state = 14}, + [1166] = {.lex_state = 15, .external_lex_state = 14}, [1167] = {.lex_state = 14, .external_lex_state = 12}, - [1168] = {.lex_state = 14, .external_lex_state = 13}, - [1169] = {.lex_state = 15, .external_lex_state = 15}, - [1170] = {.lex_state = 15, .external_lex_state = 14}, - [1171] = {.lex_state = 15, .external_lex_state = 14}, - [1172] = {.lex_state = 15, .external_lex_state = 14}, - [1173] = {.lex_state = 14, .external_lex_state = 13}, - [1174] = {.lex_state = 14, .external_lex_state = 13}, + [1168] = {.lex_state = 14, .external_lex_state = 12}, + [1169] = {.lex_state = 14, .external_lex_state = 12}, + [1170] = {.lex_state = 14, .external_lex_state = 12}, + [1171] = {.lex_state = 14, .external_lex_state = 12}, + [1172] = {.lex_state = 14, .external_lex_state = 8}, + [1173] = {.lex_state = 14, .external_lex_state = 12}, + [1174] = {.lex_state = 14, .external_lex_state = 12}, [1175] = {.lex_state = 14, .external_lex_state = 12}, [1176] = {.lex_state = 14, .external_lex_state = 12}, [1177] = {.lex_state = 14, .external_lex_state = 12}, - [1178] = {.lex_state = 14, .external_lex_state = 14}, - [1179] = {.lex_state = 15, .external_lex_state = 15}, - [1180] = {.lex_state = 14, .external_lex_state = 13}, - [1181] = {.lex_state = 15, .external_lex_state = 15}, - [1182] = {.lex_state = 14, .external_lex_state = 7}, - [1183] = {.lex_state = 15, .external_lex_state = 12}, - [1184] = {.lex_state = 15, .external_lex_state = 12}, - [1185] = {.lex_state = 14, .external_lex_state = 13}, + [1178] = {.lex_state = 14, .external_lex_state = 12}, + [1179] = {.lex_state = 14, .external_lex_state = 12}, + [1180] = {.lex_state = 14, .external_lex_state = 12}, + [1181] = {.lex_state = 14, .external_lex_state = 12}, + [1182] = {.lex_state = 14, .external_lex_state = 12}, + [1183] = {.lex_state = 14, .external_lex_state = 12}, + [1184] = {.lex_state = 14, .external_lex_state = 12}, + [1185] = {.lex_state = 14, .external_lex_state = 12}, [1186] = {.lex_state = 14, .external_lex_state = 12}, [1187] = {.lex_state = 14, .external_lex_state = 12}, [1188] = {.lex_state = 14, .external_lex_state = 12}, [1189] = {.lex_state = 14, .external_lex_state = 12}, [1190] = {.lex_state = 14, .external_lex_state = 12}, [1191] = {.lex_state = 14, .external_lex_state = 12}, - [1192] = {.lex_state = 14, .external_lex_state = 13}, + [1192] = {.lex_state = 14, .external_lex_state = 12}, [1193] = {.lex_state = 14, .external_lex_state = 12}, [1194] = {.lex_state = 14, .external_lex_state = 12}, [1195] = {.lex_state = 14, .external_lex_state = 12}, [1196] = {.lex_state = 14, .external_lex_state = 12}, [1197] = {.lex_state = 14, .external_lex_state = 12}, - [1198] = {.lex_state = 14, .external_lex_state = 14}, - [1199] = {.lex_state = 14, .external_lex_state = 12}, - [1200] = {.lex_state = 14, .external_lex_state = 12}, + [1198] = {.lex_state = 15, .external_lex_state = 13}, + [1199] = {.lex_state = 15, .external_lex_state = 13}, + [1200] = {.lex_state = 15, .external_lex_state = 13}, [1201] = {.lex_state = 14, .external_lex_state = 12}, [1202] = {.lex_state = 14, .external_lex_state = 12}, [1203] = {.lex_state = 14, .external_lex_state = 12}, [1204] = {.lex_state = 14, .external_lex_state = 12}, [1205] = {.lex_state = 14, .external_lex_state = 12}, - [1206] = {.lex_state = 14, .external_lex_state = 13}, - [1207] = {.lex_state = 14, .external_lex_state = 14}, - [1208] = {.lex_state = 14, .external_lex_state = 13}, - [1209] = {.lex_state = 14, .external_lex_state = 14}, - [1210] = {.lex_state = 14, .external_lex_state = 13}, - [1211] = {.lex_state = 14, .external_lex_state = 13}, - [1212] = {.lex_state = 14, .external_lex_state = 13}, - [1213] = {.lex_state = 14, .external_lex_state = 13}, + [1206] = {.lex_state = 14, .external_lex_state = 12}, + [1207] = {.lex_state = 14, .external_lex_state = 12}, + [1208] = {.lex_state = 14, .external_lex_state = 12}, + [1209] = {.lex_state = 14, .external_lex_state = 12}, + [1210] = {.lex_state = 14, .external_lex_state = 12}, + [1211] = {.lex_state = 14, .external_lex_state = 12}, + [1212] = {.lex_state = 14, .external_lex_state = 12}, + [1213] = {.lex_state = 14, .external_lex_state = 12}, [1214] = {.lex_state = 14, .external_lex_state = 12}, - [1215] = {.lex_state = 15, .external_lex_state = 14}, - [1216] = {.lex_state = 15, .external_lex_state = 14}, - [1217] = {.lex_state = 15, .external_lex_state = 14}, - [1218] = {.lex_state = 15, .external_lex_state = 14}, - [1219] = {.lex_state = 14, .external_lex_state = 14}, - [1220] = {.lex_state = 14, .external_lex_state = 13}, - [1221] = {.lex_state = 14, .external_lex_state = 13}, - [1222] = {.lex_state = 14, .external_lex_state = 13}, - [1223] = {.lex_state = 14, .external_lex_state = 13}, - [1224] = {.lex_state = 15, .external_lex_state = 12}, - [1225] = {.lex_state = 15, .external_lex_state = 14}, - [1226] = {.lex_state = 14, .external_lex_state = 13}, - [1227] = {.lex_state = 14, .external_lex_state = 13}, - [1228] = {.lex_state = 15, .external_lex_state = 14}, - [1229] = {.lex_state = 15, .external_lex_state = 15}, - [1230] = {.lex_state = 15, .external_lex_state = 14}, - [1231] = {.lex_state = 14, .external_lex_state = 13}, - [1232] = {.lex_state = 14, .external_lex_state = 13}, - [1233] = {.lex_state = 14, .external_lex_state = 13}, - [1234] = {.lex_state = 14, .external_lex_state = 13}, - [1235] = {.lex_state = 14, .external_lex_state = 13}, - [1236] = {.lex_state = 14, .external_lex_state = 13}, - [1237] = {.lex_state = 14, .external_lex_state = 13}, - [1238] = {.lex_state = 14, .external_lex_state = 13}, - [1239] = {.lex_state = 14, .external_lex_state = 13}, + [1215] = {.lex_state = 14, .external_lex_state = 14}, + [1216] = {.lex_state = 14, .external_lex_state = 12}, + [1217] = {.lex_state = 14, .external_lex_state = 12}, + [1218] = {.lex_state = 14, .external_lex_state = 12}, + [1219] = {.lex_state = 14, .external_lex_state = 12}, + [1220] = {.lex_state = 14, .external_lex_state = 12}, + [1221] = {.lex_state = 14, .external_lex_state = 12}, + [1222] = {.lex_state = 14, .external_lex_state = 12}, + [1223] = {.lex_state = 14, .external_lex_state = 12}, + [1224] = {.lex_state = 14, .external_lex_state = 12}, + [1225] = {.lex_state = 14, .external_lex_state = 12}, + [1226] = {.lex_state = 14, .external_lex_state = 12}, + [1227] = {.lex_state = 14, .external_lex_state = 12}, + [1228] = {.lex_state = 14, .external_lex_state = 12}, + [1229] = {.lex_state = 15, .external_lex_state = 14}, + [1230] = {.lex_state = 14, .external_lex_state = 12}, + [1231] = {.lex_state = 14, .external_lex_state = 12}, + [1232] = {.lex_state = 14, .external_lex_state = 12}, + [1233] = {.lex_state = 14, .external_lex_state = 12}, + [1234] = {.lex_state = 14, .external_lex_state = 12}, + [1235] = {.lex_state = 14, .external_lex_state = 12}, + [1236] = {.lex_state = 15, .external_lex_state = 14}, + [1237] = {.lex_state = 14, .external_lex_state = 7}, + [1238] = {.lex_state = 14, .external_lex_state = 12}, + [1239] = {.lex_state = 14, .external_lex_state = 12}, [1240] = {.lex_state = 14, .external_lex_state = 13}, - [1241] = {.lex_state = 14, .external_lex_state = 12}, - [1242] = {.lex_state = 14, .external_lex_state = 13}, - [1243] = {.lex_state = 15, .external_lex_state = 15}, - [1244] = {.lex_state = 15, .external_lex_state = 12}, - [1245] = {.lex_state = 15, .external_lex_state = 12}, + [1241] = {.lex_state = 14, .external_lex_state = 13}, + [1242] = {.lex_state = 14, .external_lex_state = 7}, + [1243] = {.lex_state = 14, .external_lex_state = 12}, + [1244] = {.lex_state = 14, .external_lex_state = 12}, + [1245] = {.lex_state = 14, .external_lex_state = 13}, [1246] = {.lex_state = 14, .external_lex_state = 13}, [1247] = {.lex_state = 14, .external_lex_state = 13}, [1248] = {.lex_state = 14, .external_lex_state = 13}, @@ -8742,1540 +8836,1597 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1251] = {.lex_state = 14, .external_lex_state = 13}, [1252] = {.lex_state = 14, .external_lex_state = 13}, [1253] = {.lex_state = 14, .external_lex_state = 12}, - [1254] = {.lex_state = 14, .external_lex_state = 13}, - [1255] = {.lex_state = 14, .external_lex_state = 13}, - [1256] = {.lex_state = 14, .external_lex_state = 13}, - [1257] = {.lex_state = 14, .external_lex_state = 12}, - [1258] = {.lex_state = 14, .external_lex_state = 12}, - [1259] = {.lex_state = 14, .external_lex_state = 12}, - [1260] = {.lex_state = 14, .external_lex_state = 13}, - [1261] = {.lex_state = 14, .external_lex_state = 13}, - [1262] = {.lex_state = 14, .external_lex_state = 12}, - [1263] = {.lex_state = 14, .external_lex_state = 12}, - [1264] = {.lex_state = 15, .external_lex_state = 14}, - [1265] = {.lex_state = 14, .external_lex_state = 13}, - [1266] = {.lex_state = 15, .external_lex_state = 14}, - [1267] = {.lex_state = 14, .external_lex_state = 13}, - [1268] = {.lex_state = 14, .external_lex_state = 12}, - [1269] = {.lex_state = 14, .external_lex_state = 13}, - [1270] = {.lex_state = 14, .external_lex_state = 13}, - [1271] = {.lex_state = 14, .external_lex_state = 13}, - [1272] = {.lex_state = 14, .external_lex_state = 13}, - [1273] = {.lex_state = 14, .external_lex_state = 13}, - [1274] = {.lex_state = 14, .external_lex_state = 7}, - [1275] = {.lex_state = 14, .external_lex_state = 14}, - [1276] = {.lex_state = 14, .external_lex_state = 14}, - [1277] = {.lex_state = 14, .external_lex_state = 2}, + [1254] = {.lex_state = 14, .external_lex_state = 12}, + [1255] = {.lex_state = 14, .external_lex_state = 12}, + [1256] = {.lex_state = 15, .external_lex_state = 14}, + [1257] = {.lex_state = 14, .external_lex_state = 7}, + [1258] = {.lex_state = 15, .external_lex_state = 13}, + [1259] = {.lex_state = 15, .external_lex_state = 13}, + [1260] = {.lex_state = 15, .external_lex_state = 15}, + [1261] = {.lex_state = 15, .external_lex_state = 15}, + [1262] = {.lex_state = 15, .external_lex_state = 15}, + [1263] = {.lex_state = 14, .external_lex_state = 7}, + [1264] = {.lex_state = 15, .external_lex_state = 13}, + [1265] = {.lex_state = 15, .external_lex_state = 13}, + [1266] = {.lex_state = 15, .external_lex_state = 13}, + [1267] = {.lex_state = 15, .external_lex_state = 13}, + [1268] = {.lex_state = 15, .external_lex_state = 13}, + [1269] = {.lex_state = 14, .external_lex_state = 14}, + [1270] = {.lex_state = 14, .external_lex_state = 14}, + [1271] = {.lex_state = 15, .external_lex_state = 14}, + [1272] = {.lex_state = 15, .external_lex_state = 14}, + [1273] = {.lex_state = 14, .external_lex_state = 14}, + [1274] = {.lex_state = 14, .external_lex_state = 14}, + [1275] = {.lex_state = 14, .external_lex_state = 12}, + [1276] = {.lex_state = 15, .external_lex_state = 14}, + [1277] = {.lex_state = 14, .external_lex_state = 13}, [1278] = {.lex_state = 14, .external_lex_state = 13}, [1279] = {.lex_state = 14, .external_lex_state = 13}, [1280] = {.lex_state = 14, .external_lex_state = 13}, - [1281] = {.lex_state = 14, .external_lex_state = 13}, - [1282] = {.lex_state = 14, .external_lex_state = 13}, + [1281] = {.lex_state = 14, .external_lex_state = 14}, + [1282] = {.lex_state = 14, .external_lex_state = 14}, [1283] = {.lex_state = 14, .external_lex_state = 13}, - [1284] = {.lex_state = 14, .external_lex_state = 12}, - [1285] = {.lex_state = 14, .external_lex_state = 12}, - [1286] = {.lex_state = 14, .external_lex_state = 13}, + [1284] = {.lex_state = 14, .external_lex_state = 13}, + [1285] = {.lex_state = 14, .external_lex_state = 14}, + [1286] = {.lex_state = 14, .external_lex_state = 14}, [1287] = {.lex_state = 14, .external_lex_state = 13}, - [1288] = {.lex_state = 14, .external_lex_state = 13}, - [1289] = {.lex_state = 14, .external_lex_state = 13}, + [1288] = {.lex_state = 9, .external_lex_state = 9}, + [1289] = {.lex_state = 9, .external_lex_state = 9}, [1290] = {.lex_state = 14, .external_lex_state = 13}, [1291] = {.lex_state = 14, .external_lex_state = 13}, - [1292] = {.lex_state = 15, .external_lex_state = 12}, + [1292] = {.lex_state = 14, .external_lex_state = 15}, [1293] = {.lex_state = 14, .external_lex_state = 13}, - [1294] = {.lex_state = 14, .external_lex_state = 2}, - [1295] = {.lex_state = 14, .external_lex_state = 15}, - [1296] = {.lex_state = 14, .external_lex_state = 12}, - [1297] = {.lex_state = 14, .external_lex_state = 15}, - [1298] = {.lex_state = 14, .external_lex_state = 14}, - [1299] = {.lex_state = 14, .external_lex_state = 14}, - [1300] = {.lex_state = 14, .external_lex_state = 14}, - [1301] = {.lex_state = 14, .external_lex_state = 15}, - [1302] = {.lex_state = 14, .external_lex_state = 14}, - [1303] = {.lex_state = 14, .external_lex_state = 14}, - [1304] = {.lex_state = 14, .external_lex_state = 9}, + [1294] = {.lex_state = 14, .external_lex_state = 13}, + [1295] = {.lex_state = 14, .external_lex_state = 13}, + [1296] = {.lex_state = 14, .external_lex_state = 13}, + [1297] = {.lex_state = 14, .external_lex_state = 13}, + [1298] = {.lex_state = 14, .external_lex_state = 13}, + [1299] = {.lex_state = 14, .external_lex_state = 13}, + [1300] = {.lex_state = 14, .external_lex_state = 13}, + [1301] = {.lex_state = 14, .external_lex_state = 14}, + [1302] = {.lex_state = 14, .external_lex_state = 13}, + [1303] = {.lex_state = 14, .external_lex_state = 13}, + [1304] = {.lex_state = 14, .external_lex_state = 13}, [1305] = {.lex_state = 14, .external_lex_state = 15}, - [1306] = {.lex_state = 14, .external_lex_state = 15}, - [1307] = {.lex_state = 14, .external_lex_state = 14}, - [1308] = {.lex_state = 14, .external_lex_state = 15}, - [1309] = {.lex_state = 14, .external_lex_state = 15}, - [1310] = {.lex_state = 14, .external_lex_state = 15}, - [1311] = {.lex_state = 14, .external_lex_state = 15}, + [1306] = {.lex_state = 14, .external_lex_state = 13}, + [1307] = {.lex_state = 14, .external_lex_state = 13}, + [1308] = {.lex_state = 14, .external_lex_state = 13}, + [1309] = {.lex_state = 14, .external_lex_state = 13}, + [1310] = {.lex_state = 14, .external_lex_state = 13}, + [1311] = {.lex_state = 14, .external_lex_state = 13}, [1312] = {.lex_state = 14, .external_lex_state = 15}, - [1313] = {.lex_state = 14, .external_lex_state = 14}, - [1314] = {.lex_state = 14, .external_lex_state = 14}, - [1315] = {.lex_state = 14, .external_lex_state = 14}, - [1316] = {.lex_state = 14, .external_lex_state = 14}, - [1317] = {.lex_state = 14, .external_lex_state = 15}, - [1318] = {.lex_state = 14, .external_lex_state = 14}, + [1313] = {.lex_state = 14, .external_lex_state = 15}, + [1314] = {.lex_state = 14, .external_lex_state = 15}, + [1315] = {.lex_state = 14, .external_lex_state = 13}, + [1316] = {.lex_state = 14, .external_lex_state = 13}, + [1317] = {.lex_state = 14, .external_lex_state = 13}, + [1318] = {.lex_state = 14, .external_lex_state = 15}, [1319] = {.lex_state = 14, .external_lex_state = 14}, [1320] = {.lex_state = 14, .external_lex_state = 14}, - [1321] = {.lex_state = 14, .external_lex_state = 15}, - [1322] = {.lex_state = 14, .external_lex_state = 14}, - [1323] = {.lex_state = 14, .external_lex_state = 15}, - [1324] = {.lex_state = 14, .external_lex_state = 15}, - [1325] = {.lex_state = 14, .external_lex_state = 15}, - [1326] = {.lex_state = 14, .external_lex_state = 15}, + [1321] = {.lex_state = 14, .external_lex_state = 14}, + [1322] = {.lex_state = 15, .external_lex_state = 13}, + [1323] = {.lex_state = 15, .external_lex_state = 13}, + [1324] = {.lex_state = 15, .external_lex_state = 13}, + [1325] = {.lex_state = 14, .external_lex_state = 14}, + [1326] = {.lex_state = 14, .external_lex_state = 14}, [1327] = {.lex_state = 14, .external_lex_state = 14}, - [1328] = {.lex_state = 14, .external_lex_state = 15}, - [1329] = {.lex_state = 14, .external_lex_state = 15}, + [1328] = {.lex_state = 14, .external_lex_state = 14}, + [1329] = {.lex_state = 14, .external_lex_state = 14}, [1330] = {.lex_state = 14, .external_lex_state = 14}, [1331] = {.lex_state = 14, .external_lex_state = 14}, [1332] = {.lex_state = 14, .external_lex_state = 14}, [1333] = {.lex_state = 14, .external_lex_state = 14}, - [1334] = {.lex_state = 14, .external_lex_state = 14}, + [1334] = {.lex_state = 14, .external_lex_state = 15}, [1335] = {.lex_state = 14, .external_lex_state = 14}, - [1336] = {.lex_state = 14, .external_lex_state = 14}, + [1336] = {.lex_state = 14, .external_lex_state = 15}, [1337] = {.lex_state = 14, .external_lex_state = 14}, [1338] = {.lex_state = 14, .external_lex_state = 14}, [1339] = {.lex_state = 14, .external_lex_state = 14}, - [1340] = {.lex_state = 14, .external_lex_state = 15}, + [1340] = {.lex_state = 14, .external_lex_state = 14}, [1341] = {.lex_state = 14, .external_lex_state = 14}, - [1342] = {.lex_state = 15, .external_lex_state = 14}, - [1343] = {.lex_state = 14, .external_lex_state = 8}, - [1344] = {.lex_state = 15, .external_lex_state = 14}, - [1345] = {.lex_state = 15, .external_lex_state = 14}, - [1346] = {.lex_state = 15, .external_lex_state = 12}, + [1342] = {.lex_state = 14, .external_lex_state = 14}, + [1343] = {.lex_state = 14, .external_lex_state = 14}, + [1344] = {.lex_state = 14, .external_lex_state = 14}, + [1345] = {.lex_state = 14, .external_lex_state = 15}, + [1346] = {.lex_state = 14, .external_lex_state = 14}, [1347] = {.lex_state = 14, .external_lex_state = 14}, - [1348] = {.lex_state = 14, .external_lex_state = 15}, + [1348] = {.lex_state = 14, .external_lex_state = 14}, [1349] = {.lex_state = 14, .external_lex_state = 14}, [1350] = {.lex_state = 14, .external_lex_state = 14}, [1351] = {.lex_state = 14, .external_lex_state = 14}, - [1352] = {.lex_state = 14, .external_lex_state = 14}, - [1353] = {.lex_state = 14, .external_lex_state = 14}, + [1352] = {.lex_state = 14, .external_lex_state = 15}, + [1353] = {.lex_state = 14, .external_lex_state = 15}, [1354] = {.lex_state = 14, .external_lex_state = 15}, - [1355] = {.lex_state = 14, .external_lex_state = 8}, + [1355] = {.lex_state = 14, .external_lex_state = 14}, [1356] = {.lex_state = 14, .external_lex_state = 14}, - [1357] = {.lex_state = 14, .external_lex_state = 15}, + [1357] = {.lex_state = 14, .external_lex_state = 14}, [1358] = {.lex_state = 14, .external_lex_state = 15}, - [1359] = {.lex_state = 9, .external_lex_state = 9}, - [1360] = {.lex_state = 14, .external_lex_state = 14}, + [1359] = {.lex_state = 14, .external_lex_state = 15}, + [1360] = {.lex_state = 14, .external_lex_state = 13}, [1361] = {.lex_state = 14, .external_lex_state = 14}, - [1362] = {.lex_state = 9, .external_lex_state = 9}, + [1362] = {.lex_state = 14, .external_lex_state = 15}, [1363] = {.lex_state = 14, .external_lex_state = 15}, - [1364] = {.lex_state = 9, .external_lex_state = 9}, - [1365] = {.lex_state = 14, .external_lex_state = 14}, - [1366] = {.lex_state = 9, .external_lex_state = 9}, + [1364] = {.lex_state = 14, .external_lex_state = 15}, + [1365] = {.lex_state = 14, .external_lex_state = 15}, + [1366] = {.lex_state = 14, .external_lex_state = 15}, [1367] = {.lex_state = 14, .external_lex_state = 14}, [1368] = {.lex_state = 14, .external_lex_state = 15}, [1369] = {.lex_state = 14, .external_lex_state = 15}, - [1370] = {.lex_state = 14, .external_lex_state = 15}, + [1370] = {.lex_state = 14, .external_lex_state = 14}, [1371] = {.lex_state = 14, .external_lex_state = 15}, - [1372] = {.lex_state = 14, .external_lex_state = 15}, + [1372] = {.lex_state = 14, .external_lex_state = 14}, [1373] = {.lex_state = 14, .external_lex_state = 15}, - [1374] = {.lex_state = 14, .external_lex_state = 12}, + [1374] = {.lex_state = 14, .external_lex_state = 15}, [1375] = {.lex_state = 14, .external_lex_state = 14}, [1376] = {.lex_state = 14, .external_lex_state = 14}, - [1377] = {.lex_state = 14, .external_lex_state = 12}, - [1378] = {.lex_state = 14, .external_lex_state = 14}, + [1377] = {.lex_state = 14, .external_lex_state = 15}, + [1378] = {.lex_state = 14, .external_lex_state = 15}, [1379] = {.lex_state = 14, .external_lex_state = 14}, - [1380] = {.lex_state = 15, .external_lex_state = 12}, - [1381] = {.lex_state = 15, .external_lex_state = 12}, + [1380] = {.lex_state = 14, .external_lex_state = 14}, + [1381] = {.lex_state = 14, .external_lex_state = 14}, [1382] = {.lex_state = 14, .external_lex_state = 14}, [1383] = {.lex_state = 14, .external_lex_state = 14}, [1384] = {.lex_state = 14, .external_lex_state = 14}, - [1385] = {.lex_state = 14, .external_lex_state = 14}, - [1386] = {.lex_state = 14, .external_lex_state = 14}, - [1387] = {.lex_state = 14, .external_lex_state = 14}, + [1385] = {.lex_state = 14, .external_lex_state = 8}, + [1386] = {.lex_state = 14, .external_lex_state = 13}, + [1387] = {.lex_state = 14, .external_lex_state = 13}, [1388] = {.lex_state = 14, .external_lex_state = 14}, - [1389] = {.lex_state = 14, .external_lex_state = 14}, - [1390] = {.lex_state = 14, .external_lex_state = 14}, - [1391] = {.lex_state = 14, .external_lex_state = 14}, + [1389] = {.lex_state = 14, .external_lex_state = 8}, + [1390] = {.lex_state = 9, .external_lex_state = 9}, + [1391] = {.lex_state = 9, .external_lex_state = 9}, [1392] = {.lex_state = 9, .external_lex_state = 9}, - [1393] = {.lex_state = 9, .external_lex_state = 9}, - [1394] = {.lex_state = 14, .external_lex_state = 14}, + [1393] = {.lex_state = 14, .external_lex_state = 15}, + [1394] = {.lex_state = 14, .external_lex_state = 13}, [1395] = {.lex_state = 14, .external_lex_state = 14}, - [1396] = {.lex_state = 14, .external_lex_state = 15}, - [1397] = {.lex_state = 14, .external_lex_state = 14}, - [1398] = {.lex_state = 14, .external_lex_state = 14}, + [1396] = {.lex_state = 9, .external_lex_state = 9}, + [1397] = {.lex_state = 14, .external_lex_state = 13}, + [1398] = {.lex_state = 14, .external_lex_state = 15}, [1399] = {.lex_state = 14, .external_lex_state = 14}, - [1400] = {.lex_state = 14, .external_lex_state = 12}, + [1400] = {.lex_state = 14, .external_lex_state = 15}, [1401] = {.lex_state = 14, .external_lex_state = 14}, [1402] = {.lex_state = 14, .external_lex_state = 14}, - [1403] = {.lex_state = 14, .external_lex_state = 14}, + [1403] = {.lex_state = 14, .external_lex_state = 15}, [1404] = {.lex_state = 14, .external_lex_state = 14}, [1405] = {.lex_state = 14, .external_lex_state = 15}, - [1406] = {.lex_state = 14, .external_lex_state = 14}, - [1407] = {.lex_state = 14, .external_lex_state = 14}, - [1408] = {.lex_state = 14, .external_lex_state = 14}, + [1406] = {.lex_state = 14, .external_lex_state = 15}, + [1407] = {.lex_state = 14, .external_lex_state = 15}, + [1408] = {.lex_state = 14, .external_lex_state = 15}, [1409] = {.lex_state = 14, .external_lex_state = 14}, - [1410] = {.lex_state = 14, .external_lex_state = 14}, - [1411] = {.lex_state = 14, .external_lex_state = 14}, - [1412] = {.lex_state = 14, .external_lex_state = 14}, - [1413] = {.lex_state = 14, .external_lex_state = 15}, + [1410] = {.lex_state = 14, .external_lex_state = 13}, + [1411] = {.lex_state = 14, .external_lex_state = 13}, + [1412] = {.lex_state = 14, .external_lex_state = 13}, + [1413] = {.lex_state = 14, .external_lex_state = 14}, [1414] = {.lex_state = 14, .external_lex_state = 14}, - [1415] = {.lex_state = 14, .external_lex_state = 15}, + [1415] = {.lex_state = 14, .external_lex_state = 14}, [1416] = {.lex_state = 14, .external_lex_state = 15}, [1417] = {.lex_state = 14, .external_lex_state = 14}, [1418] = {.lex_state = 14, .external_lex_state = 14}, - [1419] = {.lex_state = 14, .external_lex_state = 14}, - [1420] = {.lex_state = 14, .external_lex_state = 15}, - [1421] = {.lex_state = 14, .external_lex_state = 12}, - [1422] = {.lex_state = 14, .external_lex_state = 12}, - [1423] = {.lex_state = 15, .external_lex_state = 12}, - [1424] = {.lex_state = 15, .external_lex_state = 12}, - [1425] = {.lex_state = 14, .external_lex_state = 12}, - [1426] = {.lex_state = 15, .external_lex_state = 12}, - [1427] = {.lex_state = 14, .external_lex_state = 15}, - [1428] = {.lex_state = 14, .external_lex_state = 12}, - [1429] = {.lex_state = 14, .external_lex_state = 12}, - [1430] = {.lex_state = 14, .external_lex_state = 12}, - [1431] = {.lex_state = 14, .external_lex_state = 12}, - [1432] = {.lex_state = 15, .external_lex_state = 14}, - [1433] = {.lex_state = 14, .external_lex_state = 12}, - [1434] = {.lex_state = 14, .external_lex_state = 12}, - [1435] = {.lex_state = 15, .external_lex_state = 14}, - [1436] = {.lex_state = 14, .external_lex_state = 12}, - [1437] = {.lex_state = 15, .external_lex_state = 14}, - [1438] = {.lex_state = 14, .external_lex_state = 12}, - [1439] = {.lex_state = 14, .external_lex_state = 12}, - [1440] = {.lex_state = 14, .external_lex_state = 12}, - [1441] = {.lex_state = 14, .external_lex_state = 12}, - [1442] = {.lex_state = 14, .external_lex_state = 12}, - [1443] = {.lex_state = 14, .external_lex_state = 12}, - [1444] = {.lex_state = 14, .external_lex_state = 12}, - [1445] = {.lex_state = 14, .external_lex_state = 12}, - [1446] = {.lex_state = 14, .external_lex_state = 12}, - [1447] = {.lex_state = 14, .external_lex_state = 12}, - [1448] = {.lex_state = 14, .external_lex_state = 12}, - [1449] = {.lex_state = 14, .external_lex_state = 12}, - [1450] = {.lex_state = 14, .external_lex_state = 12}, - [1451] = {.lex_state = 15, .external_lex_state = 13}, - [1452] = {.lex_state = 15, .external_lex_state = 13}, - [1453] = {.lex_state = 15, .external_lex_state = 13}, - [1454] = {.lex_state = 14, .external_lex_state = 12}, - [1455] = {.lex_state = 14, .external_lex_state = 12}, - [1456] = {.lex_state = 14, .external_lex_state = 12}, - [1457] = {.lex_state = 14, .external_lex_state = 12}, - [1458] = {.lex_state = 14, .external_lex_state = 12}, - [1459] = {.lex_state = 14, .external_lex_state = 12}, - [1460] = {.lex_state = 14, .external_lex_state = 12}, - [1461] = {.lex_state = 14, .external_lex_state = 12}, - [1462] = {.lex_state = 14, .external_lex_state = 12}, - [1463] = {.lex_state = 14, .external_lex_state = 12}, - [1464] = {.lex_state = 14, .external_lex_state = 12}, - [1465] = {.lex_state = 14, .external_lex_state = 12}, - [1466] = {.lex_state = 14, .external_lex_state = 12}, - [1467] = {.lex_state = 14, .external_lex_state = 12}, - [1468] = {.lex_state = 9, .external_lex_state = 15}, - [1469] = {.lex_state = 9, .external_lex_state = 15}, - [1470] = {.lex_state = 9, .external_lex_state = 15}, - [1471] = {.lex_state = 9, .external_lex_state = 15}, - [1472] = {.lex_state = 9, .external_lex_state = 15}, - [1473] = {.lex_state = 9, .external_lex_state = 15}, - [1474] = {.lex_state = 9, .external_lex_state = 15}, - [1475] = {.lex_state = 9, .external_lex_state = 15}, - [1476] = {.lex_state = 9, .external_lex_state = 15}, - [1477] = {.lex_state = 9, .external_lex_state = 15}, - [1478] = {.lex_state = 9, .external_lex_state = 15}, - [1479] = {.lex_state = 9, .external_lex_state = 15}, - [1480] = {.lex_state = 9, .external_lex_state = 15}, - [1481] = {.lex_state = 9, .external_lex_state = 15}, - [1482] = {.lex_state = 9, .external_lex_state = 15}, - [1483] = {.lex_state = 9, .external_lex_state = 15}, - [1484] = {.lex_state = 14, .external_lex_state = 14}, - [1485] = {.lex_state = 14, .external_lex_state = 12}, + [1419] = {.lex_state = 14, .external_lex_state = 13}, + [1420] = {.lex_state = 14, .external_lex_state = 13}, + [1421] = {.lex_state = 14, .external_lex_state = 14}, + [1422] = {.lex_state = 14, .external_lex_state = 15}, + [1423] = {.lex_state = 14, .external_lex_state = 14}, + [1424] = {.lex_state = 14, .external_lex_state = 14}, + [1425] = {.lex_state = 14, .external_lex_state = 14}, + [1426] = {.lex_state = 14, .external_lex_state = 14}, + [1427] = {.lex_state = 14, .external_lex_state = 14}, + [1428] = {.lex_state = 14, .external_lex_state = 15}, + [1429] = {.lex_state = 14, .external_lex_state = 15}, + [1430] = {.lex_state = 14, .external_lex_state = 13}, + [1431] = {.lex_state = 14, .external_lex_state = 14}, + [1432] = {.lex_state = 14, .external_lex_state = 14}, + [1433] = {.lex_state = 15, .external_lex_state = 14}, + [1434] = {.lex_state = 15, .external_lex_state = 14}, + [1435] = {.lex_state = 14, .external_lex_state = 9}, + [1436] = {.lex_state = 14, .external_lex_state = 14}, + [1437] = {.lex_state = 14, .external_lex_state = 14}, + [1438] = {.lex_state = 14, .external_lex_state = 14}, + [1439] = {.lex_state = 14, .external_lex_state = 14}, + [1440] = {.lex_state = 14, .external_lex_state = 14}, + [1441] = {.lex_state = 14, .external_lex_state = 14}, + [1442] = {.lex_state = 14, .external_lex_state = 14}, + [1443] = {.lex_state = 14, .external_lex_state = 14}, + [1444] = {.lex_state = 14, .external_lex_state = 13}, + [1445] = {.lex_state = 14, .external_lex_state = 13}, + [1446] = {.lex_state = 14, .external_lex_state = 13}, + [1447] = {.lex_state = 14, .external_lex_state = 14}, + [1448] = {.lex_state = 14, .external_lex_state = 14}, + [1449] = {.lex_state = 14, .external_lex_state = 14}, + [1450] = {.lex_state = 14, .external_lex_state = 14}, + [1451] = {.lex_state = 14, .external_lex_state = 14}, + [1452] = {.lex_state = 14, .external_lex_state = 14}, + [1453] = {.lex_state = 14, .external_lex_state = 13}, + [1454] = {.lex_state = 14, .external_lex_state = 13}, + [1455] = {.lex_state = 14, .external_lex_state = 13}, + [1456] = {.lex_state = 14, .external_lex_state = 15}, + [1457] = {.lex_state = 14, .external_lex_state = 15}, + [1458] = {.lex_state = 14, .external_lex_state = 15}, + [1459] = {.lex_state = 14, .external_lex_state = 13}, + [1460] = {.lex_state = 14, .external_lex_state = 13}, + [1461] = {.lex_state = 14, .external_lex_state = 13}, + [1462] = {.lex_state = 14, .external_lex_state = 13}, + [1463] = {.lex_state = 14, .external_lex_state = 13}, + [1464] = {.lex_state = 14, .external_lex_state = 13}, + [1465] = {.lex_state = 14, .external_lex_state = 13}, + [1466] = {.lex_state = 14, .external_lex_state = 13}, + [1467] = {.lex_state = 15, .external_lex_state = 14}, + [1468] = {.lex_state = 15, .external_lex_state = 14}, + [1469] = {.lex_state = 15, .external_lex_state = 13}, + [1470] = {.lex_state = 14, .external_lex_state = 13}, + [1471] = {.lex_state = 14, .external_lex_state = 13}, + [1472] = {.lex_state = 14, .external_lex_state = 13}, + [1473] = {.lex_state = 14, .external_lex_state = 13}, + [1474] = {.lex_state = 15, .external_lex_state = 13}, + [1475] = {.lex_state = 14, .external_lex_state = 13}, + [1476] = {.lex_state = 14, .external_lex_state = 13}, + [1477] = {.lex_state = 15, .external_lex_state = 13}, + [1478] = {.lex_state = 14, .external_lex_state = 13}, + [1479] = {.lex_state = 15, .external_lex_state = 14}, + [1480] = {.lex_state = 14, .external_lex_state = 13}, + [1481] = {.lex_state = 14, .external_lex_state = 13}, + [1482] = {.lex_state = 14, .external_lex_state = 13}, + [1483] = {.lex_state = 14, .external_lex_state = 13}, + [1484] = {.lex_state = 14, .external_lex_state = 13}, + [1485] = {.lex_state = 14, .external_lex_state = 13}, [1486] = {.lex_state = 14, .external_lex_state = 13}, - [1487] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1488] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1489] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1490] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1491] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1492] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1493] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1494] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1495] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1496] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1497] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1498] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1499] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1500] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1501] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1502] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1504] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1505] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1506] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1507] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1508] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1509] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1510] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1511] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1512] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1513] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1514] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1515] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1516] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1517] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1518] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1519] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1520] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1521] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1522] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1523] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1524] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1525] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1526] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1527] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1528] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1529] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1530] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1532] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1533] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1534] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1535] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1536] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1538] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1539] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1540] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1541] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1542] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1543] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1544] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1545] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1546] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1547] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1548] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1549] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1550] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1551] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1552] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1553] = {.lex_state = 9, .external_lex_state = 9}, - [1554] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1555] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1556] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1557] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, - [1558] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1559] = {.lex_state = 9, .external_lex_state = 9}, - [1560] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1561] = {.lex_state = 9, .external_lex_state = 12}, - [1562] = {.lex_state = 9, .external_lex_state = 12}, - [1563] = {.lex_state = 9, .external_lex_state = 14}, - [1564] = {.lex_state = 9, .external_lex_state = 14}, - [1565] = {.lex_state = 9, .external_lex_state = 15}, - [1566] = {.lex_state = 9, .external_lex_state = 15}, - [1567] = {.lex_state = 53, .external_lex_state = 13}, - [1568] = {.lex_state = 53, .external_lex_state = 13}, - [1569] = {.lex_state = 9, .external_lex_state = 12}, - [1570] = {.lex_state = 53, .external_lex_state = 13}, - [1571] = {.lex_state = 53, .external_lex_state = 13}, - [1572] = {.lex_state = 9, .external_lex_state = 12}, - [1573] = {.lex_state = 53, .external_lex_state = 14}, - [1574] = {.lex_state = 14, .external_lex_state = 13}, - [1575] = {.lex_state = 14, .external_lex_state = 13}, - [1576] = {.lex_state = 14, .external_lex_state = 13}, - [1577] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1578] = {.lex_state = 14, .external_lex_state = 13}, - [1579] = {.lex_state = 53, .external_lex_state = 14}, - [1580] = {.lex_state = 14, .external_lex_state = 13}, - [1581] = {.lex_state = 14, .external_lex_state = 13}, - [1582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1583] = {.lex_state = 12, .external_lex_state = 9}, - [1584] = {.lex_state = 12, .external_lex_state = 9}, - [1585] = {.lex_state = 14, .external_lex_state = 14}, - [1586] = {.lex_state = 14, .external_lex_state = 14}, - [1587] = {.lex_state = 14, .external_lex_state = 14}, - [1588] = {.lex_state = 14, .external_lex_state = 14}, - [1589] = {.lex_state = 14, .external_lex_state = 14}, - [1590] = {.lex_state = 14, .external_lex_state = 14}, - [1591] = {.lex_state = 14, .external_lex_state = 15}, - [1592] = {.lex_state = 12, .external_lex_state = 9}, - [1593] = {.lex_state = 14, .external_lex_state = 14}, - [1594] = {.lex_state = 12, .external_lex_state = 9}, - [1595] = {.lex_state = 14, .external_lex_state = 14}, - [1596] = {.lex_state = 14, .external_lex_state = 14}, - [1597] = {.lex_state = 14, .external_lex_state = 14}, - [1598] = {.lex_state = 14, .external_lex_state = 14}, - [1599] = {.lex_state = 14, .external_lex_state = 14}, - [1600] = {.lex_state = 14, .external_lex_state = 15}, - [1601] = {.lex_state = 14, .external_lex_state = 15}, - [1602] = {.lex_state = 14, .external_lex_state = 15}, - [1603] = {.lex_state = 14, .external_lex_state = 15}, - [1604] = {.lex_state = 14, .external_lex_state = 12}, - [1605] = {.lex_state = 14, .external_lex_state = 12}, - [1606] = {.lex_state = 14, .external_lex_state = 12}, - [1607] = {.lex_state = 14, .external_lex_state = 12}, - [1608] = {.lex_state = 14, .external_lex_state = 15}, - [1609] = {.lex_state = 14, .external_lex_state = 15}, - [1610] = {.lex_state = 14, .external_lex_state = 15}, - [1611] = {.lex_state = 12, .external_lex_state = 9}, - [1612] = {.lex_state = 14, .external_lex_state = 15}, - [1613] = {.lex_state = 14, .external_lex_state = 15}, - [1614] = {.lex_state = 12, .external_lex_state = 9}, - [1615] = {.lex_state = 14, .external_lex_state = 15}, - [1616] = {.lex_state = 14, .external_lex_state = 15}, - [1617] = {.lex_state = 14, .external_lex_state = 15}, + [1487] = {.lex_state = 14, .external_lex_state = 13}, + [1488] = {.lex_state = 14, .external_lex_state = 15}, + [1489] = {.lex_state = 14, .external_lex_state = 13}, + [1490] = {.lex_state = 14, .external_lex_state = 13}, + [1491] = {.lex_state = 14, .external_lex_state = 13}, + [1492] = {.lex_state = 14, .external_lex_state = 13}, + [1493] = {.lex_state = 14, .external_lex_state = 13}, + [1494] = {.lex_state = 14, .external_lex_state = 13}, + [1495] = {.lex_state = 14, .external_lex_state = 13}, + [1496] = {.lex_state = 14, .external_lex_state = 13}, + [1497] = {.lex_state = 15, .external_lex_state = 12}, + [1498] = {.lex_state = 14, .external_lex_state = 13}, + [1499] = {.lex_state = 14, .external_lex_state = 13}, + [1500] = {.lex_state = 14, .external_lex_state = 13}, + [1501] = {.lex_state = 14, .external_lex_state = 13}, + [1502] = {.lex_state = 14, .external_lex_state = 13}, + [1503] = {.lex_state = 14, .external_lex_state = 13}, + [1504] = {.lex_state = 14, .external_lex_state = 13}, + [1505] = {.lex_state = 15, .external_lex_state = 12}, + [1506] = {.lex_state = 15, .external_lex_state = 12}, + [1507] = {.lex_state = 14, .external_lex_state = 13}, + [1508] = {.lex_state = 14, .external_lex_state = 13}, + [1509] = {.lex_state = 14, .external_lex_state = 13}, + [1510] = {.lex_state = 14, .external_lex_state = 13}, + [1511] = {.lex_state = 9, .external_lex_state = 15}, + [1512] = {.lex_state = 9, .external_lex_state = 15}, + [1513] = {.lex_state = 9, .external_lex_state = 15}, + [1514] = {.lex_state = 14, .external_lex_state = 14}, + [1515] = {.lex_state = 14, .external_lex_state = 13}, + [1516] = {.lex_state = 14, .external_lex_state = 12}, + [1517] = {.lex_state = 9, .external_lex_state = 15}, + [1518] = {.lex_state = 9, .external_lex_state = 15}, + [1519] = {.lex_state = 9, .external_lex_state = 15}, + [1520] = {.lex_state = 9, .external_lex_state = 15}, + [1521] = {.lex_state = 9, .external_lex_state = 15}, + [1522] = {.lex_state = 9, .external_lex_state = 15}, + [1523] = {.lex_state = 9, .external_lex_state = 15}, + [1524] = {.lex_state = 9, .external_lex_state = 15}, + [1525] = {.lex_state = 9, .external_lex_state = 15}, + [1526] = {.lex_state = 9, .external_lex_state = 15}, + [1527] = {.lex_state = 9, .external_lex_state = 15}, + [1528] = {.lex_state = 9, .external_lex_state = 15}, + [1529] = {.lex_state = 9, .external_lex_state = 15}, + [1530] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1531] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1532] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1533] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1534] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1535] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1536] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1537] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1538] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1539] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1540] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1541] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1542] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1543] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1544] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1545] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1546] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1547] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1548] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1549] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1550] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1551] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1552] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1553] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1554] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1555] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1556] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1557] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1558] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1559] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1560] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1561] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1562] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1563] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1564] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1565] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1566] = {.lex_state = 4, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1567] = {.lex_state = 4, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1568] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1569] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1570] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1571] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1572] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1573] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1574] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1575] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1576] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1577] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1578] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1579] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1580] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1581] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1582] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1583] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1584] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1585] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1586] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1587] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1588] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1589] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1590] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1591] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1592] = {.lex_state = 4, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1593] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1594] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1595] = {.lex_state = 9, .external_lex_state = 9}, + [1596] = {.lex_state = 9, .external_lex_state = 9}, + [1597] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1598] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1599] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1600] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1601] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1602] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1603] = {.lex_state = 4, .external_lex_state = 2, .reserved_word_set_id = 15}, + [1604] = {.lex_state = 9, .external_lex_state = 15}, + [1605] = {.lex_state = 9, .external_lex_state = 15}, + [1606] = {.lex_state = 9, .external_lex_state = 14}, + [1607] = {.lex_state = 9, .external_lex_state = 14}, + [1608] = {.lex_state = 53, .external_lex_state = 12}, + [1609] = {.lex_state = 53, .external_lex_state = 12}, + [1610] = {.lex_state = 53, .external_lex_state = 12}, + [1611] = {.lex_state = 53, .external_lex_state = 12}, + [1612] = {.lex_state = 9, .external_lex_state = 13}, + [1613] = {.lex_state = 9, .external_lex_state = 13}, + [1614] = {.lex_state = 53, .external_lex_state = 14}, + [1615] = {.lex_state = 14, .external_lex_state = 12}, + [1616] = {.lex_state = 53, .external_lex_state = 13}, + [1617] = {.lex_state = 14, .external_lex_state = 12}, [1618] = {.lex_state = 14, .external_lex_state = 12}, [1619] = {.lex_state = 14, .external_lex_state = 12}, - [1620] = {.lex_state = 14, .external_lex_state = 15}, - [1621] = {.lex_state = 14, .external_lex_state = 15}, - [1622] = {.lex_state = 14, .external_lex_state = 15}, - [1623] = {.lex_state = 14, .external_lex_state = 15}, - [1624] = {.lex_state = 14, .external_lex_state = 15}, - [1625] = {.lex_state = 14, .external_lex_state = 15}, - [1626] = {.lex_state = 14, .external_lex_state = 15}, - [1627] = {.lex_state = 14, .external_lex_state = 15}, - [1628] = {.lex_state = 14, .external_lex_state = 15}, - [1629] = {.lex_state = 12, .external_lex_state = 15}, - [1630] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1631] = {.lex_state = 12, .external_lex_state = 15}, - [1632] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1633] = {.lex_state = 12, .external_lex_state = 15}, - [1634] = {.lex_state = 12, .external_lex_state = 15}, - [1635] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1636] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1637] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1638] = {.lex_state = 12, .external_lex_state = 15}, - [1639] = {.lex_state = 12, .external_lex_state = 9}, - [1640] = {.lex_state = 12, .external_lex_state = 15}, - [1641] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1642] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1643] = {.lex_state = 12, .external_lex_state = 15}, - [1644] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1645] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1646] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1647] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1648] = {.lex_state = 12, .external_lex_state = 15}, - [1649] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1650] = {.lex_state = 12, .external_lex_state = 15}, - [1651] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1652] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1653] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1654] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1655] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1656] = {.lex_state = 9, .external_lex_state = 12}, - [1657] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1658] = {.lex_state = 53, .external_lex_state = 13}, - [1659] = {.lex_state = 9, .external_lex_state = 9}, - [1660] = {.lex_state = 9, .external_lex_state = 9}, - [1661] = {.lex_state = 9, .external_lex_state = 9}, - [1662] = {.lex_state = 9, .external_lex_state = 9}, - [1663] = {.lex_state = 9, .external_lex_state = 9}, - [1664] = {.lex_state = 9, .external_lex_state = 9}, - [1665] = {.lex_state = 9, .external_lex_state = 9}, - [1666] = {.lex_state = 9, .external_lex_state = 9}, - [1667] = {.lex_state = 53, .external_lex_state = 13}, - [1668] = {.lex_state = 53, .external_lex_state = 13}, - [1669] = {.lex_state = 53, .external_lex_state = 13}, - [1670] = {.lex_state = 53, .external_lex_state = 13}, - [1671] = {.lex_state = 53, .external_lex_state = 13}, - [1672] = {.lex_state = 53, .external_lex_state = 13}, - [1673] = {.lex_state = 53, .external_lex_state = 13}, - [1674] = {.lex_state = 9, .external_lex_state = 9}, - [1675] = {.lex_state = 0, .external_lex_state = 16}, - [1676] = {.lex_state = 53, .external_lex_state = 14}, - [1677] = {.lex_state = 0, .external_lex_state = 16}, - [1678] = {.lex_state = 0, .external_lex_state = 16}, - [1679] = {.lex_state = 53, .external_lex_state = 14}, - [1680] = {.lex_state = 53, .external_lex_state = 14}, - [1681] = {.lex_state = 53, .external_lex_state = 14}, - [1682] = {.lex_state = 0, .external_lex_state = 16}, - [1683] = {.lex_state = 53, .external_lex_state = 12}, - [1684] = {.lex_state = 0, .external_lex_state = 16}, - [1685] = {.lex_state = 53, .external_lex_state = 14}, - [1686] = {.lex_state = 53, .external_lex_state = 14}, - [1687] = {.lex_state = 0, .external_lex_state = 16}, - [1688] = {.lex_state = 0, .external_lex_state = 16}, - [1689] = {.lex_state = 53, .external_lex_state = 14}, - [1690] = {.lex_state = 53, .external_lex_state = 14}, - [1691] = {.lex_state = 0, .external_lex_state = 16}, - [1692] = {.lex_state = 0, .external_lex_state = 16}, - [1693] = {.lex_state = 53, .external_lex_state = 14}, - [1694] = {.lex_state = 53, .external_lex_state = 14}, - [1695] = {.lex_state = 9, .external_lex_state = 12}, - [1696] = {.lex_state = 0, .external_lex_state = 16}, - [1697] = {.lex_state = 9, .external_lex_state = 12}, - [1698] = {.lex_state = 0, .external_lex_state = 16}, - [1699] = {.lex_state = 53, .external_lex_state = 14}, - [1700] = {.lex_state = 53, .external_lex_state = 14}, - [1701] = {.lex_state = 0, .external_lex_state = 16}, - [1702] = {.lex_state = 0, .external_lex_state = 16}, - [1703] = {.lex_state = 53, .external_lex_state = 14}, - [1704] = {.lex_state = 53, .external_lex_state = 14}, - [1705] = {.lex_state = 9, .external_lex_state = 12}, - [1706] = {.lex_state = 0, .external_lex_state = 16}, - [1707] = {.lex_state = 0, .external_lex_state = 16}, - [1708] = {.lex_state = 53, .external_lex_state = 14}, - [1709] = {.lex_state = 53, .external_lex_state = 14}, - [1710] = {.lex_state = 0, .external_lex_state = 16}, - [1711] = {.lex_state = 0, .external_lex_state = 16}, + [1620] = {.lex_state = 53, .external_lex_state = 13}, + [1621] = {.lex_state = 53, .external_lex_state = 14}, + [1622] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1623] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1624] = {.lex_state = 14, .external_lex_state = 12}, + [1625] = {.lex_state = 14, .external_lex_state = 12}, + [1626] = {.lex_state = 14, .external_lex_state = 14}, + [1627] = {.lex_state = 14, .external_lex_state = 14}, + [1628] = {.lex_state = 14, .external_lex_state = 14}, + [1629] = {.lex_state = 14, .external_lex_state = 14}, + [1630] = {.lex_state = 14, .external_lex_state = 14}, + [1631] = {.lex_state = 13, .external_lex_state = 9}, + [1632] = {.lex_state = 14, .external_lex_state = 14}, + [1633] = {.lex_state = 13, .external_lex_state = 9}, + [1634] = {.lex_state = 14, .external_lex_state = 15}, + [1635] = {.lex_state = 14, .external_lex_state = 13}, + [1636] = {.lex_state = 14, .external_lex_state = 13}, + [1637] = {.lex_state = 14, .external_lex_state = 15}, + [1638] = {.lex_state = 14, .external_lex_state = 15}, + [1639] = {.lex_state = 14, .external_lex_state = 13}, + [1640] = {.lex_state = 14, .external_lex_state = 13}, + [1641] = {.lex_state = 13, .external_lex_state = 9}, + [1642] = {.lex_state = 14, .external_lex_state = 15}, + [1643] = {.lex_state = 14, .external_lex_state = 13}, + [1644] = {.lex_state = 14, .external_lex_state = 15}, + [1645] = {.lex_state = 14, .external_lex_state = 13}, + [1646] = {.lex_state = 13, .external_lex_state = 9}, + [1647] = {.lex_state = 13, .external_lex_state = 9}, + [1648] = {.lex_state = 14, .external_lex_state = 15}, + [1649] = {.lex_state = 14, .external_lex_state = 15}, + [1650] = {.lex_state = 14, .external_lex_state = 15}, + [1651] = {.lex_state = 14, .external_lex_state = 15}, + [1652] = {.lex_state = 14, .external_lex_state = 15}, + [1653] = {.lex_state = 14, .external_lex_state = 15}, + [1654] = {.lex_state = 14, .external_lex_state = 15}, + [1655] = {.lex_state = 13, .external_lex_state = 9}, + [1656] = {.lex_state = 14, .external_lex_state = 14}, + [1657] = {.lex_state = 14, .external_lex_state = 14}, + [1658] = {.lex_state = 14, .external_lex_state = 15}, + [1659] = {.lex_state = 14, .external_lex_state = 14}, + [1660] = {.lex_state = 14, .external_lex_state = 14}, + [1661] = {.lex_state = 14, .external_lex_state = 15}, + [1662] = {.lex_state = 14, .external_lex_state = 15}, + [1663] = {.lex_state = 14, .external_lex_state = 15}, + [1664] = {.lex_state = 14, .external_lex_state = 15}, + [1665] = {.lex_state = 14, .external_lex_state = 15}, + [1666] = {.lex_state = 14, .external_lex_state = 15}, + [1667] = {.lex_state = 14, .external_lex_state = 15}, + [1668] = {.lex_state = 14, .external_lex_state = 15}, + [1669] = {.lex_state = 14, .external_lex_state = 14}, + [1670] = {.lex_state = 14, .external_lex_state = 14}, + [1671] = {.lex_state = 14, .external_lex_state = 15}, + [1672] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1673] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1674] = {.lex_state = 13, .external_lex_state = 15}, + [1675] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1676] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1677] = {.lex_state = 13, .external_lex_state = 15}, + [1678] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1679] = {.lex_state = 13, .external_lex_state = 15}, + [1680] = {.lex_state = 13, .external_lex_state = 15}, + [1681] = {.lex_state = 13, .external_lex_state = 15}, + [1682] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1683] = {.lex_state = 13, .external_lex_state = 9}, + [1684] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1685] = {.lex_state = 13, .external_lex_state = 15}, + [1686] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1687] = {.lex_state = 13, .external_lex_state = 15}, + [1688] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1689] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1690] = {.lex_state = 13, .external_lex_state = 15}, + [1691] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1692] = {.lex_state = 4, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1693] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1694] = {.lex_state = 4, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1695] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1696] = {.lex_state = 13, .external_lex_state = 15}, + [1697] = {.lex_state = 4, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1698] = {.lex_state = 4, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1699] = {.lex_state = 4, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1700] = {.lex_state = 9, .external_lex_state = 9}, + [1701] = {.lex_state = 9, .external_lex_state = 9}, + [1702] = {.lex_state = 9, .external_lex_state = 9}, + [1703] = {.lex_state = 9, .external_lex_state = 9}, + [1704] = {.lex_state = 53, .external_lex_state = 12}, + [1705] = {.lex_state = 9, .external_lex_state = 9}, + [1706] = {.lex_state = 53, .external_lex_state = 12}, + [1707] = {.lex_state = 53, .external_lex_state = 12}, + [1708] = {.lex_state = 9, .external_lex_state = 9}, + [1709] = {.lex_state = 53, .external_lex_state = 12}, + [1710] = {.lex_state = 53, .external_lex_state = 12}, + [1711] = {.lex_state = 9, .external_lex_state = 9}, [1712] = {.lex_state = 53, .external_lex_state = 12}, - [1713] = {.lex_state = 0, .external_lex_state = 16}, + [1713] = {.lex_state = 53, .external_lex_state = 12}, [1714] = {.lex_state = 53, .external_lex_state = 12}, - [1715] = {.lex_state = 9, .external_lex_state = 12}, - [1716] = {.lex_state = 53, .external_lex_state = 12}, - [1717] = {.lex_state = 9, .external_lex_state = 12}, - [1718] = {.lex_state = 53, .external_lex_state = 12}, - [1719] = {.lex_state = 53, .external_lex_state = 12}, - [1720] = {.lex_state = 9, .external_lex_state = 12}, - [1721] = {.lex_state = 9, .external_lex_state = 12}, - [1722] = {.lex_state = 53, .external_lex_state = 12}, - [1723] = {.lex_state = 9, .external_lex_state = 12}, - [1724] = {.lex_state = 53, .external_lex_state = 12}, - [1725] = {.lex_state = 53, .external_lex_state = 14}, + [1715] = {.lex_state = 9, .external_lex_state = 9}, + [1716] = {.lex_state = 9, .external_lex_state = 9}, + [1717] = {.lex_state = 53, .external_lex_state = 13}, + [1718] = {.lex_state = 0, .external_lex_state = 16}, + [1719] = {.lex_state = 53, .external_lex_state = 14}, + [1720] = {.lex_state = 53, .external_lex_state = 14}, + [1721] = {.lex_state = 53, .external_lex_state = 14}, + [1722] = {.lex_state = 53, .external_lex_state = 13}, + [1723] = {.lex_state = 0, .external_lex_state = 16}, + [1724] = {.lex_state = 0, .external_lex_state = 16}, + [1725] = {.lex_state = 0, .external_lex_state = 16}, [1726] = {.lex_state = 0, .external_lex_state = 16}, - [1727] = {.lex_state = 9, .external_lex_state = 12}, - [1728] = {.lex_state = 9, .external_lex_state = 15}, - [1729] = {.lex_state = 9, .external_lex_state = 9}, - [1730] = {.lex_state = 9, .external_lex_state = 14}, - [1731] = {.lex_state = 9, .external_lex_state = 15}, - [1732] = {.lex_state = 9, .external_lex_state = 14}, - [1733] = {.lex_state = 9, .external_lex_state = 14}, - [1734] = {.lex_state = 9, .external_lex_state = 15}, - [1735] = {.lex_state = 9, .external_lex_state = 15}, - [1736] = {.lex_state = 9, .external_lex_state = 15}, - [1737] = {.lex_state = 9, .external_lex_state = 14}, + [1727] = {.lex_state = 53, .external_lex_state = 14}, + [1728] = {.lex_state = 53, .external_lex_state = 14}, + [1729] = {.lex_state = 53, .external_lex_state = 14}, + [1730] = {.lex_state = 0, .external_lex_state = 16}, + [1731] = {.lex_state = 53, .external_lex_state = 13}, + [1732] = {.lex_state = 0, .external_lex_state = 16}, + [1733] = {.lex_state = 0, .external_lex_state = 16}, + [1734] = {.lex_state = 0, .external_lex_state = 16}, + [1735] = {.lex_state = 53, .external_lex_state = 14}, + [1736] = {.lex_state = 0, .external_lex_state = 16}, + [1737] = {.lex_state = 53, .external_lex_state = 14}, [1738] = {.lex_state = 53, .external_lex_state = 13}, - [1739] = {.lex_state = 9, .external_lex_state = 14}, - [1740] = {.lex_state = 9, .external_lex_state = 9}, - [1741] = {.lex_state = 9, .external_lex_state = 14}, - [1742] = {.lex_state = 9, .external_lex_state = 14}, - [1743] = {.lex_state = 9, .external_lex_state = 14}, - [1744] = {.lex_state = 9, .external_lex_state = 15}, - [1745] = {.lex_state = 9, .external_lex_state = 14}, - [1746] = {.lex_state = 9, .external_lex_state = 14}, - [1747] = {.lex_state = 9, .external_lex_state = 15}, - [1748] = {.lex_state = 9, .external_lex_state = 15}, + [1739] = {.lex_state = 0, .external_lex_state = 16}, + [1740] = {.lex_state = 53, .external_lex_state = 14}, + [1741] = {.lex_state = 53, .external_lex_state = 14}, + [1742] = {.lex_state = 53, .external_lex_state = 13}, + [1743] = {.lex_state = 0, .external_lex_state = 16}, + [1744] = {.lex_state = 53, .external_lex_state = 14}, + [1745] = {.lex_state = 53, .external_lex_state = 13}, + [1746] = {.lex_state = 53, .external_lex_state = 14}, + [1747] = {.lex_state = 0, .external_lex_state = 16}, + [1748] = {.lex_state = 53, .external_lex_state = 14}, [1749] = {.lex_state = 53, .external_lex_state = 13}, - [1750] = {.lex_state = 9, .external_lex_state = 15}, - [1751] = {.lex_state = 9, .external_lex_state = 15}, - [1752] = {.lex_state = 9, .external_lex_state = 12}, - [1753] = {.lex_state = 53, .external_lex_state = 13}, - [1754] = {.lex_state = 53, .external_lex_state = 13}, - [1755] = {.lex_state = 53, .external_lex_state = 13}, - [1756] = {.lex_state = 9, .external_lex_state = 12}, - [1757] = {.lex_state = 9, .external_lex_state = 15}, - [1758] = {.lex_state = 53, .external_lex_state = 13}, - [1759] = {.lex_state = 53, .external_lex_state = 13}, - [1760] = {.lex_state = 9, .external_lex_state = 12}, - [1761] = {.lex_state = 53, .external_lex_state = 9}, - [1762] = {.lex_state = 9, .external_lex_state = 12}, - [1763] = {.lex_state = 53, .external_lex_state = 13}, - [1764] = {.lex_state = 53, .external_lex_state = 13}, - [1765] = {.lex_state = 53, .external_lex_state = 13}, - [1766] = {.lex_state = 53, .external_lex_state = 13}, - [1767] = {.lex_state = 53, .external_lex_state = 13}, - [1768] = {.lex_state = 9, .external_lex_state = 12}, - [1769] = {.lex_state = 53, .external_lex_state = 13}, - [1770] = {.lex_state = 53, .external_lex_state = 13}, - [1771] = {.lex_state = 53, .external_lex_state = 13}, - [1772] = {.lex_state = 53, .external_lex_state = 13}, - [1773] = {.lex_state = 9, .external_lex_state = 12}, - [1774] = {.lex_state = 53, .external_lex_state = 13}, - [1775] = {.lex_state = 9, .external_lex_state = 12}, - [1776] = {.lex_state = 53, .external_lex_state = 13}, - [1777] = {.lex_state = 53, .external_lex_state = 13}, - [1778] = {.lex_state = 9, .external_lex_state = 15}, - [1779] = {.lex_state = 9, .external_lex_state = 12}, - [1780] = {.lex_state = 53, .external_lex_state = 13}, - [1781] = {.lex_state = 53, .external_lex_state = 13}, - [1782] = {.lex_state = 53, .external_lex_state = 13}, - [1783] = {.lex_state = 9, .external_lex_state = 15}, - [1784] = {.lex_state = 9, .external_lex_state = 15}, - [1785] = {.lex_state = 9, .external_lex_state = 12}, - [1786] = {.lex_state = 9, .external_lex_state = 12}, - [1787] = {.lex_state = 53, .external_lex_state = 12}, - [1788] = {.lex_state = 53, .external_lex_state = 15}, - [1789] = {.lex_state = 53, .external_lex_state = 2}, - [1790] = {.lex_state = 8, .external_lex_state = 13}, - [1791] = {.lex_state = 53, .external_lex_state = 9}, - [1792] = {.lex_state = 53, .external_lex_state = 9}, + [1750] = {.lex_state = 0, .external_lex_state = 16}, + [1751] = {.lex_state = 53, .external_lex_state = 13}, + [1752] = {.lex_state = 0, .external_lex_state = 16}, + [1753] = {.lex_state = 0, .external_lex_state = 16}, + [1754] = {.lex_state = 53, .external_lex_state = 14}, + [1755] = {.lex_state = 53, .external_lex_state = 14}, + [1756] = {.lex_state = 0, .external_lex_state = 16}, + [1757] = {.lex_state = 53, .external_lex_state = 14}, + [1758] = {.lex_state = 0, .external_lex_state = 16}, + [1759] = {.lex_state = 0, .external_lex_state = 16}, + [1760] = {.lex_state = 53, .external_lex_state = 14}, + [1761] = {.lex_state = 9, .external_lex_state = 14}, + [1762] = {.lex_state = 9, .external_lex_state = 14}, + [1763] = {.lex_state = 9, .external_lex_state = 14}, + [1764] = {.lex_state = 9, .external_lex_state = 14}, + [1765] = {.lex_state = 9, .external_lex_state = 14}, + [1766] = {.lex_state = 9, .external_lex_state = 14}, + [1767] = {.lex_state = 9, .external_lex_state = 15}, + [1768] = {.lex_state = 9, .external_lex_state = 14}, + [1769] = {.lex_state = 9, .external_lex_state = 14}, + [1770] = {.lex_state = 9, .external_lex_state = 15}, + [1771] = {.lex_state = 9, .external_lex_state = 15}, + [1772] = {.lex_state = 9, .external_lex_state = 15}, + [1773] = {.lex_state = 9, .external_lex_state = 15}, + [1774] = {.lex_state = 9, .external_lex_state = 15}, + [1775] = {.lex_state = 9, .external_lex_state = 9}, + [1776] = {.lex_state = 9, .external_lex_state = 15}, + [1777] = {.lex_state = 9, .external_lex_state = 15}, + [1778] = {.lex_state = 9, .external_lex_state = 9}, + [1779] = {.lex_state = 53, .external_lex_state = 12}, + [1780] = {.lex_state = 9, .external_lex_state = 14}, + [1781] = {.lex_state = 9, .external_lex_state = 15}, + [1782] = {.lex_state = 9, .external_lex_state = 14}, + [1783] = {.lex_state = 53, .external_lex_state = 12}, + [1784] = {.lex_state = 53, .external_lex_state = 12}, + [1785] = {.lex_state = 9, .external_lex_state = 13}, + [1786] = {.lex_state = 9, .external_lex_state = 13}, + [1787] = {.lex_state = 9, .external_lex_state = 13}, + [1788] = {.lex_state = 53, .external_lex_state = 12}, + [1789] = {.lex_state = 9, .external_lex_state = 15}, + [1790] = {.lex_state = 9, .external_lex_state = 13}, + [1791] = {.lex_state = 9, .external_lex_state = 13}, + [1792] = {.lex_state = 53, .external_lex_state = 12}, [1793] = {.lex_state = 53, .external_lex_state = 12}, [1794] = {.lex_state = 53, .external_lex_state = 12}, [1795] = {.lex_state = 53, .external_lex_state = 12}, - [1796] = {.lex_state = 53, .external_lex_state = 9}, - [1797] = {.lex_state = 53, .external_lex_state = 14}, - [1798] = {.lex_state = 53, .external_lex_state = 15}, - [1799] = {.lex_state = 53, .external_lex_state = 12}, - [1800] = {.lex_state = 53, .external_lex_state = 14}, - [1801] = {.lex_state = 53, .external_lex_state = 14}, - [1802] = {.lex_state = 53, .external_lex_state = 14}, - [1803] = {.lex_state = 53, .external_lex_state = 14}, - [1804] = {.lex_state = 53, .external_lex_state = 14}, - [1805] = {.lex_state = 53, .external_lex_state = 9}, - [1806] = {.lex_state = 53, .external_lex_state = 12}, - [1807] = {.lex_state = 0, .external_lex_state = 16}, - [1808] = {.lex_state = 53, .external_lex_state = 14}, - [1809] = {.lex_state = 53, .external_lex_state = 13}, - [1810] = {.lex_state = 9, .external_lex_state = 15}, - [1811] = {.lex_state = 8, .external_lex_state = 12}, + [1796] = {.lex_state = 9, .external_lex_state = 15}, + [1797] = {.lex_state = 53, .external_lex_state = 12}, + [1798] = {.lex_state = 9, .external_lex_state = 13}, + [1799] = {.lex_state = 9, .external_lex_state = 13}, + [1800] = {.lex_state = 53, .external_lex_state = 12}, + [1801] = {.lex_state = 53, .external_lex_state = 12}, + [1802] = {.lex_state = 53, .external_lex_state = 12}, + [1803] = {.lex_state = 9, .external_lex_state = 13}, + [1804] = {.lex_state = 9, .external_lex_state = 13}, + [1805] = {.lex_state = 53, .external_lex_state = 12}, + [1806] = {.lex_state = 9, .external_lex_state = 15}, + [1807] = {.lex_state = 53, .external_lex_state = 12}, + [1808] = {.lex_state = 53, .external_lex_state = 12}, + [1809] = {.lex_state = 53, .external_lex_state = 12}, + [1810] = {.lex_state = 9, .external_lex_state = 13}, + [1811] = {.lex_state = 53, .external_lex_state = 12}, [1812] = {.lex_state = 53, .external_lex_state = 12}, - [1813] = {.lex_state = 53, .external_lex_state = 13}, - [1814] = {.lex_state = 53, .external_lex_state = 13}, + [1813] = {.lex_state = 53, .external_lex_state = 12}, + [1814] = {.lex_state = 53, .external_lex_state = 12}, [1815] = {.lex_state = 53, .external_lex_state = 12}, - [1816] = {.lex_state = 53, .external_lex_state = 12}, - [1817] = {.lex_state = 53, .external_lex_state = 9}, + [1816] = {.lex_state = 9, .external_lex_state = 15}, + [1817] = {.lex_state = 9, .external_lex_state = 15}, [1818] = {.lex_state = 53, .external_lex_state = 9}, - [1819] = {.lex_state = 53, .external_lex_state = 9}, - [1820] = {.lex_state = 53, .external_lex_state = 9}, - [1821] = {.lex_state = 53, .external_lex_state = 12}, + [1819] = {.lex_state = 53, .external_lex_state = 12}, + [1820] = {.lex_state = 53, .external_lex_state = 14}, + [1821] = {.lex_state = 53, .external_lex_state = 13}, [1822] = {.lex_state = 53, .external_lex_state = 14}, - [1823] = {.lex_state = 53, .external_lex_state = 12}, + [1823] = {.lex_state = 53, .external_lex_state = 13}, [1824] = {.lex_state = 53, .external_lex_state = 9}, - [1825] = {.lex_state = 53, .external_lex_state = 12}, + [1825] = {.lex_state = 0, .external_lex_state = 16}, [1826] = {.lex_state = 53, .external_lex_state = 14}, - [1827] = {.lex_state = 53, .external_lex_state = 14}, - [1828] = {.lex_state = 53, .external_lex_state = 14}, - [1829] = {.lex_state = 53, .external_lex_state = 12}, - [1830] = {.lex_state = 0, .external_lex_state = 16}, + [1827] = {.lex_state = 53, .external_lex_state = 9}, + [1828] = {.lex_state = 53, .external_lex_state = 9}, + [1829] = {.lex_state = 53, .external_lex_state = 13}, + [1830] = {.lex_state = 53, .external_lex_state = 13}, [1831] = {.lex_state = 53, .external_lex_state = 13}, - [1832] = {.lex_state = 8, .external_lex_state = 14}, - [1833] = {.lex_state = 53, .external_lex_state = 14}, - [1834] = {.lex_state = 53, .external_lex_state = 15}, - [1835] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1836] = {.lex_state = 53, .external_lex_state = 9}, - [1837] = {.lex_state = 53, .external_lex_state = 13}, - [1838] = {.lex_state = 53, .external_lex_state = 13}, - [1839] = {.lex_state = 53, .external_lex_state = 14}, - [1840] = {.lex_state = 53, .external_lex_state = 15}, - [1841] = {.lex_state = 53, .external_lex_state = 9}, - [1842] = {.lex_state = 53, .external_lex_state = 15}, - [1843] = {.lex_state = 53, .external_lex_state = 8}, - [1844] = {.lex_state = 53, .external_lex_state = 13}, - [1845] = {.lex_state = 8, .external_lex_state = 13}, - [1846] = {.lex_state = 8, .external_lex_state = 14}, - [1847] = {.lex_state = 53, .external_lex_state = 13}, + [1832] = {.lex_state = 53, .external_lex_state = 13}, + [1833] = {.lex_state = 53, .external_lex_state = 12}, + [1834] = {.lex_state = 53, .external_lex_state = 9}, + [1835] = {.lex_state = 53, .external_lex_state = 13}, + [1836] = {.lex_state = 7, .external_lex_state = 12}, + [1837] = {.lex_state = 53, .external_lex_state = 14}, + [1838] = {.lex_state = 53, .external_lex_state = 12}, + [1839] = {.lex_state = 7, .external_lex_state = 13}, + [1840] = {.lex_state = 53, .external_lex_state = 9}, + [1841] = {.lex_state = 53, .external_lex_state = 14}, + [1842] = {.lex_state = 53, .external_lex_state = 9}, + [1843] = {.lex_state = 53, .external_lex_state = 14}, + [1844] = {.lex_state = 53, .external_lex_state = 14}, + [1845] = {.lex_state = 53, .external_lex_state = 14}, + [1846] = {.lex_state = 53, .external_lex_state = 13}, + [1847] = {.lex_state = 53, .external_lex_state = 9}, [1848] = {.lex_state = 53, .external_lex_state = 12}, [1849] = {.lex_state = 53, .external_lex_state = 13}, - [1850] = {.lex_state = 53, .external_lex_state = 14}, - [1851] = {.lex_state = 53, .external_lex_state = 15}, + [1850] = {.lex_state = 53, .external_lex_state = 13}, + [1851] = {.lex_state = 9, .external_lex_state = 15}, [1852] = {.lex_state = 53, .external_lex_state = 13}, - [1853] = {.lex_state = 8, .external_lex_state = 12}, - [1854] = {.lex_state = 53, .external_lex_state = 13}, - [1855] = {.lex_state = 8, .external_lex_state = 13}, + [1853] = {.lex_state = 53, .external_lex_state = 13}, + [1854] = {.lex_state = 53, .external_lex_state = 2}, + [1855] = {.lex_state = 0, .external_lex_state = 16}, [1856] = {.lex_state = 53, .external_lex_state = 12}, - [1857] = {.lex_state = 53, .external_lex_state = 15}, - [1858] = {.lex_state = 53, .external_lex_state = 15}, + [1857] = {.lex_state = 53, .external_lex_state = 13}, + [1858] = {.lex_state = 53, .external_lex_state = 14}, [1859] = {.lex_state = 53, .external_lex_state = 13}, [1860] = {.lex_state = 53, .external_lex_state = 13}, - [1861] = {.lex_state = 53, .external_lex_state = 12}, - [1862] = {.lex_state = 53, .external_lex_state = 13}, - [1863] = {.lex_state = 53, .external_lex_state = 6}, - [1864] = {.lex_state = 53, .external_lex_state = 15}, - [1865] = {.lex_state = 8, .external_lex_state = 12}, - [1866] = {.lex_state = 53, .external_lex_state = 14}, + [1861] = {.lex_state = 53, .external_lex_state = 13}, + [1862] = {.lex_state = 53, .external_lex_state = 9}, + [1863] = {.lex_state = 53, .external_lex_state = 13}, + [1864] = {.lex_state = 53, .external_lex_state = 13}, + [1865] = {.lex_state = 53, .external_lex_state = 13}, + [1866] = {.lex_state = 53, .external_lex_state = 9}, [1867] = {.lex_state = 53, .external_lex_state = 14}, - [1868] = {.lex_state = 53, .external_lex_state = 15}, + [1868] = {.lex_state = 53, .external_lex_state = 14}, [1869] = {.lex_state = 53, .external_lex_state = 15}, - [1870] = {.lex_state = 53, .external_lex_state = 15}, - [1871] = {.lex_state = 53, .external_lex_state = 14}, + [1870] = {.lex_state = 53, .external_lex_state = 14}, + [1871] = {.lex_state = 53, .external_lex_state = 13}, [1872] = {.lex_state = 53, .external_lex_state = 15}, - [1873] = {.lex_state = 53, .external_lex_state = 12}, - [1874] = {.lex_state = 53, .external_lex_state = 15}, - [1875] = {.lex_state = 53, .external_lex_state = 12}, - [1876] = {.lex_state = 53, .external_lex_state = 12}, - [1877] = {.lex_state = 53, .external_lex_state = 12}, - [1878] = {.lex_state = 53, .external_lex_state = 14}, - [1879] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1880] = {.lex_state = 8, .external_lex_state = 13}, - [1881] = {.lex_state = 53, .external_lex_state = 9}, - [1882] = {.lex_state = 53, .external_lex_state = 12}, - [1883] = {.lex_state = 8, .external_lex_state = 14}, - [1884] = {.lex_state = 53, .external_lex_state = 13}, - [1885] = {.lex_state = 8, .external_lex_state = 12}, - [1886] = {.lex_state = 53, .external_lex_state = 7}, - [1887] = {.lex_state = 53, .external_lex_state = 13}, - [1888] = {.lex_state = 8, .external_lex_state = 14}, - [1889] = {.lex_state = 53, .external_lex_state = 14}, - [1890] = {.lex_state = 53, .external_lex_state = 13}, - [1891] = {.lex_state = 53, .external_lex_state = 9}, - [1892] = {.lex_state = 53, .external_lex_state = 14}, - [1893] = {.lex_state = 9, .external_lex_state = 12}, - [1894] = {.lex_state = 53, .external_lex_state = 15}, - [1895] = {.lex_state = 53, .external_lex_state = 12}, + [1873] = {.lex_state = 7, .external_lex_state = 14}, + [1874] = {.lex_state = 53, .external_lex_state = 13}, + [1875] = {.lex_state = 53, .external_lex_state = 13}, + [1876] = {.lex_state = 7, .external_lex_state = 12}, + [1877] = {.lex_state = 7, .external_lex_state = 12}, + [1878] = {.lex_state = 53, .external_lex_state = 12}, + [1879] = {.lex_state = 53, .external_lex_state = 8}, + [1880] = {.lex_state = 53, .external_lex_state = 15}, + [1881] = {.lex_state = 53, .external_lex_state = 13}, + [1882] = {.lex_state = 53, .external_lex_state = 14}, + [1883] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1884] = {.lex_state = 53, .external_lex_state = 12}, + [1885] = {.lex_state = 53, .external_lex_state = 12}, + [1886] = {.lex_state = 7, .external_lex_state = 13}, + [1887] = {.lex_state = 53, .external_lex_state = 12}, + [1888] = {.lex_state = 7, .external_lex_state = 12}, + [1889] = {.lex_state = 53, .external_lex_state = 15}, + [1890] = {.lex_state = 7, .external_lex_state = 14}, + [1891] = {.lex_state = 53, .external_lex_state = 13}, + [1892] = {.lex_state = 53, .external_lex_state = 13}, + [1893] = {.lex_state = 53, .external_lex_state = 12}, + [1894] = {.lex_state = 53, .external_lex_state = 6}, + [1895] = {.lex_state = 53, .external_lex_state = 14}, [1896] = {.lex_state = 53, .external_lex_state = 14}, - [1897] = {.lex_state = 53, .external_lex_state = 9}, + [1897] = {.lex_state = 53, .external_lex_state = 12}, [1898] = {.lex_state = 53, .external_lex_state = 13}, [1899] = {.lex_state = 53, .external_lex_state = 15}, - [1900] = {.lex_state = 0, .external_lex_state = 16}, - [1901] = {.lex_state = 53, .external_lex_state = 14}, - [1902] = {.lex_state = 53, .external_lex_state = 14}, - [1903] = {.lex_state = 9, .external_lex_state = 9}, - [1904] = {.lex_state = 0, .external_lex_state = 16}, + [1900] = {.lex_state = 53, .external_lex_state = 12}, + [1901] = {.lex_state = 53, .external_lex_state = 13}, + [1902] = {.lex_state = 53, .external_lex_state = 15}, + [1903] = {.lex_state = 53, .external_lex_state = 12}, + [1904] = {.lex_state = 53, .external_lex_state = 12}, [1905] = {.lex_state = 53, .external_lex_state = 15}, [1906] = {.lex_state = 53, .external_lex_state = 13}, [1907] = {.lex_state = 53, .external_lex_state = 15}, - [1908] = {.lex_state = 53, .external_lex_state = 12}, - [1909] = {.lex_state = 53, .external_lex_state = 12}, - [1910] = {.lex_state = 53, .external_lex_state = 9}, - [1911] = {.lex_state = 9, .external_lex_state = 9}, - [1912] = {.lex_state = 53, .external_lex_state = 13}, - [1913] = {.lex_state = 9, .external_lex_state = 9}, - [1914] = {.lex_state = 53, .external_lex_state = 13}, - [1915] = {.lex_state = 53, .external_lex_state = 12}, - [1916] = {.lex_state = 9, .external_lex_state = 12}, - [1917] = {.lex_state = 53, .external_lex_state = 12}, - [1918] = {.lex_state = 53, .external_lex_state = 13}, - [1919] = {.lex_state = 53, .external_lex_state = 15}, - [1920] = {.lex_state = 53, .external_lex_state = 13}, + [1908] = {.lex_state = 53, .external_lex_state = 15}, + [1909] = {.lex_state = 53, .external_lex_state = 15}, + [1910] = {.lex_state = 7, .external_lex_state = 13}, + [1911] = {.lex_state = 53, .external_lex_state = 14}, + [1912] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1913] = {.lex_state = 53, .external_lex_state = 9}, + [1914] = {.lex_state = 53, .external_lex_state = 9}, + [1915] = {.lex_state = 7, .external_lex_state = 14}, + [1916] = {.lex_state = 53, .external_lex_state = 15}, + [1917] = {.lex_state = 7, .external_lex_state = 14}, + [1918] = {.lex_state = 7, .external_lex_state = 13}, + [1919] = {.lex_state = 53, .external_lex_state = 12}, + [1920] = {.lex_state = 53, .external_lex_state = 14}, [1921] = {.lex_state = 53, .external_lex_state = 12}, - [1922] = {.lex_state = 53, .external_lex_state = 14}, - [1923] = {.lex_state = 8, .external_lex_state = 9}, - [1924] = {.lex_state = 8, .external_lex_state = 13}, + [1922] = {.lex_state = 53, .external_lex_state = 13}, + [1923] = {.lex_state = 53, .external_lex_state = 7}, + [1924] = {.lex_state = 53, .external_lex_state = 15}, [1925] = {.lex_state = 53, .external_lex_state = 15}, - [1926] = {.lex_state = 53, .external_lex_state = 13}, - [1927] = {.lex_state = 53, .external_lex_state = 14}, - [1928] = {.lex_state = 53, .external_lex_state = 15}, - [1929] = {.lex_state = 9, .external_lex_state = 15}, - [1930] = {.lex_state = 53, .external_lex_state = 13}, - [1931] = {.lex_state = 53, .external_lex_state = 13}, - [1932] = {.lex_state = 9, .external_lex_state = 14}, - [1933] = {.lex_state = 0, .external_lex_state = 16}, + [1926] = {.lex_state = 53, .external_lex_state = 14}, + [1927] = {.lex_state = 53, .external_lex_state = 13}, + [1928] = {.lex_state = 53, .external_lex_state = 9}, + [1929] = {.lex_state = 53, .external_lex_state = 15}, + [1930] = {.lex_state = 53, .external_lex_state = 12}, + [1931] = {.lex_state = 9, .external_lex_state = 9}, + [1932] = {.lex_state = 9, .external_lex_state = 15}, + [1933] = {.lex_state = 53, .external_lex_state = 12}, [1934] = {.lex_state = 53, .external_lex_state = 15}, - [1935] = {.lex_state = 53, .external_lex_state = 15}, - [1936] = {.lex_state = 9, .external_lex_state = 9}, - [1937] = {.lex_state = 9, .external_lex_state = 9}, - [1938] = {.lex_state = 8, .external_lex_state = 9}, - [1939] = {.lex_state = 9, .external_lex_state = 9}, - [1940] = {.lex_state = 9, .external_lex_state = 9}, + [1935] = {.lex_state = 53, .external_lex_state = 12}, + [1936] = {.lex_state = 53, .external_lex_state = 15}, + [1937] = {.lex_state = 53, .external_lex_state = 13}, + [1938] = {.lex_state = 53, .external_lex_state = 12}, + [1939] = {.lex_state = 53, .external_lex_state = 14}, + [1940] = {.lex_state = 53, .external_lex_state = 15}, [1941] = {.lex_state = 9, .external_lex_state = 14}, - [1942] = {.lex_state = 9, .external_lex_state = 15}, - [1943] = {.lex_state = 53, .external_lex_state = 13}, - [1944] = {.lex_state = 9, .external_lex_state = 14}, - [1945] = {.lex_state = 53, .external_lex_state = 15}, - [1946] = {.lex_state = 53, .external_lex_state = 15}, - [1947] = {.lex_state = 9, .external_lex_state = 14}, - [1948] = {.lex_state = 53, .external_lex_state = 12}, - [1949] = {.lex_state = 9, .external_lex_state = 12}, - [1950] = {.lex_state = 9, .external_lex_state = 9}, - [1951] = {.lex_state = 53, .external_lex_state = 15}, - [1952] = {.lex_state = 9, .external_lex_state = 12}, - [1953] = {.lex_state = 53, .external_lex_state = 14}, - [1954] = {.lex_state = 53, .external_lex_state = 12}, - [1955] = {.lex_state = 53, .external_lex_state = 14}, + [1942] = {.lex_state = 9, .external_lex_state = 14}, + [1943] = {.lex_state = 9, .external_lex_state = 15}, + [1944] = {.lex_state = 53, .external_lex_state = 13}, + [1945] = {.lex_state = 53, .external_lex_state = 12}, + [1946] = {.lex_state = 9, .external_lex_state = 13}, + [1947] = {.lex_state = 53, .external_lex_state = 12}, + [1948] = {.lex_state = 53, .external_lex_state = 9}, + [1949] = {.lex_state = 9, .external_lex_state = 9}, + [1950] = {.lex_state = 53, .external_lex_state = 15}, + [1951] = {.lex_state = 53, .external_lex_state = 9}, + [1952] = {.lex_state = 53, .external_lex_state = 12}, + [1953] = {.lex_state = 53, .external_lex_state = 15}, + [1954] = {.lex_state = 0, .external_lex_state = 16}, + [1955] = {.lex_state = 53, .external_lex_state = 13}, [1956] = {.lex_state = 53, .external_lex_state = 14}, - [1957] = {.lex_state = 53, .external_lex_state = 14}, + [1957] = {.lex_state = 9, .external_lex_state = 14}, [1958] = {.lex_state = 9, .external_lex_state = 14}, - [1959] = {.lex_state = 9, .external_lex_state = 14}, - [1960] = {.lex_state = 9, .external_lex_state = 14}, - [1961] = {.lex_state = 53, .external_lex_state = 14}, - [1962] = {.lex_state = 53, .external_lex_state = 14}, - [1963] = {.lex_state = 53, .external_lex_state = 14}, - [1964] = {.lex_state = 9, .external_lex_state = 15}, - [1965] = {.lex_state = 53, .external_lex_state = 13}, - [1966] = {.lex_state = 53, .external_lex_state = 13}, - [1967] = {.lex_state = 53, .external_lex_state = 15}, - [1968] = {.lex_state = 53, .external_lex_state = 15}, - [1969] = {.lex_state = 53, .external_lex_state = 14}, - [1970] = {.lex_state = 53, .external_lex_state = 12}, - [1971] = {.lex_state = 9, .external_lex_state = 9}, - [1972] = {.lex_state = 53, .external_lex_state = 12}, - [1973] = {.lex_state = 9, .external_lex_state = 9}, + [1959] = {.lex_state = 53, .external_lex_state = 13}, + [1960] = {.lex_state = 53, .external_lex_state = 15}, + [1961] = {.lex_state = 7, .external_lex_state = 9}, + [1962] = {.lex_state = 9, .external_lex_state = 14}, + [1963] = {.lex_state = 53, .external_lex_state = 12}, + [1964] = {.lex_state = 53, .external_lex_state = 15}, + [1965] = {.lex_state = 53, .external_lex_state = 14}, + [1966] = {.lex_state = 7, .external_lex_state = 9}, + [1967] = {.lex_state = 9, .external_lex_state = 14}, + [1968] = {.lex_state = 9, .external_lex_state = 13}, + [1969] = {.lex_state = 9, .external_lex_state = 14}, + [1970] = {.lex_state = 9, .external_lex_state = 9}, + [1971] = {.lex_state = 53, .external_lex_state = 12}, + [1972] = {.lex_state = 9, .external_lex_state = 14}, + [1973] = {.lex_state = 53, .external_lex_state = 14}, [1974] = {.lex_state = 9, .external_lex_state = 9}, - [1975] = {.lex_state = 53, .external_lex_state = 13}, - [1976] = {.lex_state = 0, .external_lex_state = 16}, - [1977] = {.lex_state = 0, .external_lex_state = 16}, - [1978] = {.lex_state = 0, .external_lex_state = 16}, - [1979] = {.lex_state = 0, .external_lex_state = 16}, - [1980] = {.lex_state = 53, .external_lex_state = 13}, - [1981] = {.lex_state = 53, .external_lex_state = 14}, + [1975] = {.lex_state = 9, .external_lex_state = 13}, + [1976] = {.lex_state = 53, .external_lex_state = 12}, + [1977] = {.lex_state = 7, .external_lex_state = 9}, + [1978] = {.lex_state = 53, .external_lex_state = 13}, + [1979] = {.lex_state = 53, .external_lex_state = 14}, + [1980] = {.lex_state = 53, .external_lex_state = 12}, + [1981] = {.lex_state = 9, .external_lex_state = 9}, [1982] = {.lex_state = 53, .external_lex_state = 15}, [1983] = {.lex_state = 53, .external_lex_state = 15}, [1984] = {.lex_state = 53, .external_lex_state = 12}, - [1985] = {.lex_state = 53, .external_lex_state = 12}, + [1985] = {.lex_state = 9, .external_lex_state = 14}, [1986] = {.lex_state = 0, .external_lex_state = 16}, [1987] = {.lex_state = 53, .external_lex_state = 14}, - [1988] = {.lex_state = 8, .external_lex_state = 12}, - [1989] = {.lex_state = 9, .external_lex_state = 14}, - [1990] = {.lex_state = 8, .external_lex_state = 14}, - [1991] = {.lex_state = 53, .external_lex_state = 12}, - [1992] = {.lex_state = 9, .external_lex_state = 14}, - [1993] = {.lex_state = 9, .external_lex_state = 14}, - [1994] = {.lex_state = 9, .external_lex_state = 14}, - [1995] = {.lex_state = 8, .external_lex_state = 9}, - [1996] = {.lex_state = 53, .external_lex_state = 12}, - [1997] = {.lex_state = 53, .external_lex_state = 14}, - [1998] = {.lex_state = 3, .external_lex_state = 13}, - [1999] = {.lex_state = 53, .external_lex_state = 13}, - [2000] = {.lex_state = 53, .external_lex_state = 15}, - [2001] = {.lex_state = 9, .external_lex_state = 12}, - [2002] = {.lex_state = 9, .external_lex_state = 12}, - [2003] = {.lex_state = 9, .external_lex_state = 12}, - [2004] = {.lex_state = 3, .external_lex_state = 13}, - [2005] = {.lex_state = 53, .external_lex_state = 15}, - [2006] = {.lex_state = 53, .external_lex_state = 13}, - [2007] = {.lex_state = 53, .external_lex_state = 13}, - [2008] = {.lex_state = 53, .external_lex_state = 12}, - [2009] = {.lex_state = 9, .external_lex_state = 12}, - [2010] = {.lex_state = 53, .external_lex_state = 14}, - [2011] = {.lex_state = 53, .external_lex_state = 12}, - [2012] = {.lex_state = 53, .external_lex_state = 14}, + [1988] = {.lex_state = 9, .external_lex_state = 14}, + [1989] = {.lex_state = 0, .external_lex_state = 16}, + [1990] = {.lex_state = 53, .external_lex_state = 14}, + [1991] = {.lex_state = 0, .external_lex_state = 16}, + [1992] = {.lex_state = 53, .external_lex_state = 13}, + [1993] = {.lex_state = 7, .external_lex_state = 13}, + [1994] = {.lex_state = 0, .external_lex_state = 16}, + [1995] = {.lex_state = 53, .external_lex_state = 13}, + [1996] = {.lex_state = 53, .external_lex_state = 13}, + [1997] = {.lex_state = 53, .external_lex_state = 12}, + [1998] = {.lex_state = 9, .external_lex_state = 9}, + [1999] = {.lex_state = 53, .external_lex_state = 14}, + [2000] = {.lex_state = 53, .external_lex_state = 14}, + [2001] = {.lex_state = 53, .external_lex_state = 13}, + [2002] = {.lex_state = 0, .external_lex_state = 16}, + [2003] = {.lex_state = 53, .external_lex_state = 13}, + [2004] = {.lex_state = 53, .external_lex_state = 14}, + [2005] = {.lex_state = 7, .external_lex_state = 12}, + [2006] = {.lex_state = 9, .external_lex_state = 14}, + [2007] = {.lex_state = 9, .external_lex_state = 9}, + [2008] = {.lex_state = 53, .external_lex_state = 15}, + [2009] = {.lex_state = 53, .external_lex_state = 13}, + [2010] = {.lex_state = 53, .external_lex_state = 9}, + [2011] = {.lex_state = 53, .external_lex_state = 14}, + [2012] = {.lex_state = 53, .external_lex_state = 15}, [2013] = {.lex_state = 53, .external_lex_state = 15}, - [2014] = {.lex_state = 53, .external_lex_state = 13}, - [2015] = {.lex_state = 53, .external_lex_state = 12}, - [2016] = {.lex_state = 53, .external_lex_state = 12}, - [2017] = {.lex_state = 9, .external_lex_state = 12}, - [2018] = {.lex_state = 53, .external_lex_state = 13}, - [2019] = {.lex_state = 53, .external_lex_state = 15}, + [2014] = {.lex_state = 53, .external_lex_state = 15}, + [2015] = {.lex_state = 0, .external_lex_state = 16}, + [2016] = {.lex_state = 53, .external_lex_state = 14}, + [2017] = {.lex_state = 53, .external_lex_state = 15}, + [2018] = {.lex_state = 53, .external_lex_state = 12}, + [2019] = {.lex_state = 9, .external_lex_state = 13}, [2020] = {.lex_state = 53, .external_lex_state = 15}, - [2021] = {.lex_state = 3, .external_lex_state = 13}, - [2022] = {.lex_state = 53, .external_lex_state = 15}, - [2023] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2024] = {.lex_state = 53, .external_lex_state = 15}, - [2025] = {.lex_state = 53, .external_lex_state = 12}, - [2026] = {.lex_state = 9, .external_lex_state = 12}, - [2027] = {.lex_state = 53, .external_lex_state = 15}, - [2028] = {.lex_state = 53, .external_lex_state = 13}, - [2029] = {.lex_state = 53, .external_lex_state = 13}, - [2030] = {.lex_state = 53, .external_lex_state = 13}, - [2031] = {.lex_state = 53, .external_lex_state = 13}, - [2032] = {.lex_state = 53, .external_lex_state = 12}, - [2033] = {.lex_state = 53, .external_lex_state = 12}, - [2034] = {.lex_state = 53, .external_lex_state = 12}, + [2021] = {.lex_state = 53, .external_lex_state = 14}, + [2022] = {.lex_state = 53, .external_lex_state = 14}, + [2023] = {.lex_state = 9, .external_lex_state = 9}, + [2024] = {.lex_state = 53, .external_lex_state = 13}, + [2025] = {.lex_state = 9, .external_lex_state = 9}, + [2026] = {.lex_state = 9, .external_lex_state = 9}, + [2027] = {.lex_state = 9, .external_lex_state = 15}, + [2028] = {.lex_state = 53, .external_lex_state = 12}, + [2029] = {.lex_state = 53, .external_lex_state = 14}, + [2030] = {.lex_state = 53, .external_lex_state = 14}, + [2031] = {.lex_state = 53, .external_lex_state = 14}, + [2032] = {.lex_state = 53, .external_lex_state = 13}, + [2033] = {.lex_state = 53, .external_lex_state = 15}, + [2034] = {.lex_state = 9, .external_lex_state = 15}, [2035] = {.lex_state = 53, .external_lex_state = 13}, - [2036] = {.lex_state = 8, .external_lex_state = 9}, - [2037] = {.lex_state = 53, .external_lex_state = 13}, - [2038] = {.lex_state = 53, .external_lex_state = 15}, - [2039] = {.lex_state = 53, .external_lex_state = 13}, - [2040] = {.lex_state = 53, .external_lex_state = 15}, - [2041] = {.lex_state = 53, .external_lex_state = 13}, - [2042] = {.lex_state = 53, .external_lex_state = 15}, - [2043] = {.lex_state = 9, .external_lex_state = 12}, - [2044] = {.lex_state = 53, .external_lex_state = 13}, - [2045] = {.lex_state = 53, .external_lex_state = 15}, - [2046] = {.lex_state = 9, .external_lex_state = 15}, - [2047] = {.lex_state = 53, .external_lex_state = 15}, - [2048] = {.lex_state = 53, .external_lex_state = 14}, - [2049] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2050] = {.lex_state = 53, .external_lex_state = 15}, - [2051] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2036] = {.lex_state = 7, .external_lex_state = 14}, + [2037] = {.lex_state = 9, .external_lex_state = 14}, + [2038] = {.lex_state = 53, .external_lex_state = 12}, + [2039] = {.lex_state = 0, .external_lex_state = 16}, + [2040] = {.lex_state = 9, .external_lex_state = 9}, + [2041] = {.lex_state = 9, .external_lex_state = 9}, + [2042] = {.lex_state = 53, .external_lex_state = 14}, + [2043] = {.lex_state = 53, .external_lex_state = 15}, + [2044] = {.lex_state = 53, .external_lex_state = 12}, + [2045] = {.lex_state = 9, .external_lex_state = 15}, + [2046] = {.lex_state = 53, .external_lex_state = 15}, + [2047] = {.lex_state = 53, .external_lex_state = 14}, + [2048] = {.lex_state = 53, .external_lex_state = 9}, + [2049] = {.lex_state = 53, .external_lex_state = 13}, + [2050] = {.lex_state = 53, .external_lex_state = 13}, + [2051] = {.lex_state = 9, .external_lex_state = 13}, [2052] = {.lex_state = 53, .external_lex_state = 15}, - [2053] = {.lex_state = 53, .external_lex_state = 15}, - [2054] = {.lex_state = 53, .external_lex_state = 13}, - [2055] = {.lex_state = 53, .external_lex_state = 14}, - [2056] = {.lex_state = 53, .external_lex_state = 14}, + [2053] = {.lex_state = 53, .external_lex_state = 12}, + [2054] = {.lex_state = 9, .external_lex_state = 13}, + [2055] = {.lex_state = 3, .external_lex_state = 12}, + [2056] = {.lex_state = 53, .external_lex_state = 9}, [2057] = {.lex_state = 53, .external_lex_state = 15}, - [2058] = {.lex_state = 53, .external_lex_state = 15}, + [2058] = {.lex_state = 9, .external_lex_state = 13}, [2059] = {.lex_state = 53, .external_lex_state = 13}, - [2060] = {.lex_state = 53, .external_lex_state = 15}, - [2061] = {.lex_state = 9, .external_lex_state = 14}, + [2060] = {.lex_state = 53, .external_lex_state = 13}, + [2061] = {.lex_state = 9, .external_lex_state = 13}, [2062] = {.lex_state = 53, .external_lex_state = 15}, [2063] = {.lex_state = 53, .external_lex_state = 15}, [2064] = {.lex_state = 53, .external_lex_state = 15}, - [2065] = {.lex_state = 53, .external_lex_state = 15}, - [2066] = {.lex_state = 53, .external_lex_state = 14}, - [2067] = {.lex_state = 53, .external_lex_state = 15}, - [2068] = {.lex_state = 9, .external_lex_state = 12}, - [2069] = {.lex_state = 53, .external_lex_state = 14}, + [2065] = {.lex_state = 53, .external_lex_state = 12}, + [2066] = {.lex_state = 53, .external_lex_state = 13}, + [2067] = {.lex_state = 9, .external_lex_state = 13}, + [2068] = {.lex_state = 53, .external_lex_state = 15}, + [2069] = {.lex_state = 53, .external_lex_state = 9}, [2070] = {.lex_state = 53, .external_lex_state = 15}, - [2071] = {.lex_state = 9, .external_lex_state = 15}, - [2072] = {.lex_state = 53, .external_lex_state = 13}, - [2073] = {.lex_state = 53, .external_lex_state = 15}, - [2074] = {.lex_state = 9, .external_lex_state = 15}, - [2075] = {.lex_state = 9, .external_lex_state = 9}, - [2076] = {.lex_state = 53, .external_lex_state = 15}, + [2071] = {.lex_state = 53, .external_lex_state = 12}, + [2072] = {.lex_state = 53, .external_lex_state = 15}, + [2073] = {.lex_state = 53, .external_lex_state = 14}, + [2074] = {.lex_state = 53, .external_lex_state = 14}, + [2075] = {.lex_state = 53, .external_lex_state = 15}, + [2076] = {.lex_state = 53, .external_lex_state = 12}, [2077] = {.lex_state = 53, .external_lex_state = 15}, - [2078] = {.lex_state = 53, .external_lex_state = 15}, - [2079] = {.lex_state = 53, .external_lex_state = 15}, + [2078] = {.lex_state = 53, .external_lex_state = 12}, + [2079] = {.lex_state = 53, .external_lex_state = 12}, [2080] = {.lex_state = 53, .external_lex_state = 15}, - [2081] = {.lex_state = 53, .external_lex_state = 15}, - [2082] = {.lex_state = 53, .external_lex_state = 15}, + [2081] = {.lex_state = 53, .external_lex_state = 13}, + [2082] = {.lex_state = 3, .external_lex_state = 12}, [2083] = {.lex_state = 53, .external_lex_state = 15}, - [2084] = {.lex_state = 53, .external_lex_state = 15}, - [2085] = {.lex_state = 9, .external_lex_state = 15}, - [2086] = {.lex_state = 53, .external_lex_state = 12}, - [2087] = {.lex_state = 53, .external_lex_state = 15}, - [2088] = {.lex_state = 9, .external_lex_state = 12}, - [2089] = {.lex_state = 53, .external_lex_state = 15}, - [2090] = {.lex_state = 53, .external_lex_state = 13}, - [2091] = {.lex_state = 53, .external_lex_state = 13}, - [2092] = {.lex_state = 9, .external_lex_state = 12}, - [2093] = {.lex_state = 9, .external_lex_state = 15}, - [2094] = {.lex_state = 9, .external_lex_state = 12}, - [2095] = {.lex_state = 9, .external_lex_state = 15}, - [2096] = {.lex_state = 9, .external_lex_state = 15}, - [2097] = {.lex_state = 53, .external_lex_state = 13}, - [2098] = {.lex_state = 53, .external_lex_state = 9}, - [2099] = {.lex_state = 53, .external_lex_state = 9}, - [2100] = {.lex_state = 53, .external_lex_state = 14}, + [2084] = {.lex_state = 53, .external_lex_state = 12}, + [2085] = {.lex_state = 53, .external_lex_state = 12}, + [2086] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2087] = {.lex_state = 53, .external_lex_state = 13}, + [2088] = {.lex_state = 53, .external_lex_state = 15}, + [2089] = {.lex_state = 9, .external_lex_state = 13}, + [2090] = {.lex_state = 9, .external_lex_state = 13}, + [2091] = {.lex_state = 53, .external_lex_state = 15}, + [2092] = {.lex_state = 7, .external_lex_state = 9}, + [2093] = {.lex_state = 53, .external_lex_state = 15}, + [2094] = {.lex_state = 53, .external_lex_state = 14}, + [2095] = {.lex_state = 53, .external_lex_state = 15}, + [2096] = {.lex_state = 53, .external_lex_state = 15}, + [2097] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2098] = {.lex_state = 53, .external_lex_state = 13}, + [2099] = {.lex_state = 53, .external_lex_state = 12}, + [2100] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2101] = {.lex_state = 53, .external_lex_state = 15}, - [2102] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [2103] = {.lex_state = 53, .external_lex_state = 13}, + [2102] = {.lex_state = 53, .external_lex_state = 12}, + [2103] = {.lex_state = 9, .external_lex_state = 15}, [2104] = {.lex_state = 53, .external_lex_state = 15}, [2105] = {.lex_state = 53, .external_lex_state = 15}, - [2106] = {.lex_state = 53, .external_lex_state = 15}, - [2107] = {.lex_state = 53, .external_lex_state = 9}, - [2108] = {.lex_state = 53, .external_lex_state = 9}, - [2109] = {.lex_state = 53, .external_lex_state = 15}, - [2110] = {.lex_state = 9, .external_lex_state = 15}, - [2111] = {.lex_state = 53, .external_lex_state = 14}, - [2112] = {.lex_state = 53, .external_lex_state = 15}, - [2113] = {.lex_state = 53, .external_lex_state = 14}, - [2114] = {.lex_state = 53, .external_lex_state = 9}, - [2115] = {.lex_state = 53, .external_lex_state = 12}, + [2106] = {.lex_state = 9, .external_lex_state = 14}, + [2107] = {.lex_state = 53, .external_lex_state = 13}, + [2108] = {.lex_state = 9, .external_lex_state = 15}, + [2109] = {.lex_state = 9, .external_lex_state = 13}, + [2110] = {.lex_state = 53, .external_lex_state = 15}, + [2111] = {.lex_state = 53, .external_lex_state = 15}, + [2112] = {.lex_state = 3, .external_lex_state = 12}, + [2113] = {.lex_state = 53, .external_lex_state = 15}, + [2114] = {.lex_state = 53, .external_lex_state = 15}, + [2115] = {.lex_state = 53, .external_lex_state = 15}, [2116] = {.lex_state = 53, .external_lex_state = 14}, - [2117] = {.lex_state = 53, .external_lex_state = 12}, - [2118] = {.lex_state = 53, .external_lex_state = 13}, - [2119] = {.lex_state = 53, .external_lex_state = 9}, + [2117] = {.lex_state = 9, .external_lex_state = 9}, + [2118] = {.lex_state = 53, .external_lex_state = 12}, + [2119] = {.lex_state = 53, .external_lex_state = 12}, [2120] = {.lex_state = 53, .external_lex_state = 12}, - [2121] = {.lex_state = 53, .external_lex_state = 9}, - [2122] = {.lex_state = 53, .external_lex_state = 13}, - [2123] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2124] = {.lex_state = 53, .external_lex_state = 13}, - [2125] = {.lex_state = 53, .external_lex_state = 13}, - [2126] = {.lex_state = 53, .external_lex_state = 13}, - [2127] = {.lex_state = 53, .external_lex_state = 9}, - [2128] = {.lex_state = 53, .external_lex_state = 13}, + [2121] = {.lex_state = 9, .external_lex_state = 13}, + [2122] = {.lex_state = 53, .external_lex_state = 12}, + [2123] = {.lex_state = 53, .external_lex_state = 15}, + [2124] = {.lex_state = 53, .external_lex_state = 15}, + [2125] = {.lex_state = 53, .external_lex_state = 15}, + [2126] = {.lex_state = 9, .external_lex_state = 13}, + [2127] = {.lex_state = 9, .external_lex_state = 13}, + [2128] = {.lex_state = 9, .external_lex_state = 13}, [2129] = {.lex_state = 53, .external_lex_state = 12}, - [2130] = {.lex_state = 53, .external_lex_state = 15}, - [2131] = {.lex_state = 53, .external_lex_state = 14}, - [2132] = {.lex_state = 53, .external_lex_state = 9}, - [2133] = {.lex_state = 53, .external_lex_state = 13}, - [2134] = {.lex_state = 53, .external_lex_state = 14}, - [2135] = {.lex_state = 53, .external_lex_state = 13}, - [2136] = {.lex_state = 53, .external_lex_state = 9}, - [2137] = {.lex_state = 53, .external_lex_state = 17}, - [2138] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2139] = {.lex_state = 53, .external_lex_state = 9}, - [2140] = {.lex_state = 53, .external_lex_state = 13}, + [2130] = {.lex_state = 9, .external_lex_state = 15}, + [2131] = {.lex_state = 9, .external_lex_state = 15}, + [2132] = {.lex_state = 53, .external_lex_state = 15}, + [2133] = {.lex_state = 53, .external_lex_state = 14}, + [2134] = {.lex_state = 53, .external_lex_state = 15}, + [2135] = {.lex_state = 9, .external_lex_state = 15}, + [2136] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2137] = {.lex_state = 53, .external_lex_state = 15}, + [2138] = {.lex_state = 9, .external_lex_state = 15}, + [2139] = {.lex_state = 53, .external_lex_state = 15}, + [2140] = {.lex_state = 9, .external_lex_state = 15}, [2141] = {.lex_state = 53, .external_lex_state = 9}, - [2142] = {.lex_state = 53, .external_lex_state = 14}, + [2142] = {.lex_state = 53, .external_lex_state = 15}, [2143] = {.lex_state = 53, .external_lex_state = 15}, - [2144] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2145] = {.lex_state = 9, .external_lex_state = 15}, - [2146] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2147] = {.lex_state = 53, .external_lex_state = 13}, - [2148] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2149] = {.lex_state = 53, .external_lex_state = 14}, + [2144] = {.lex_state = 53, .external_lex_state = 14}, + [2145] = {.lex_state = 53, .external_lex_state = 15}, + [2146] = {.lex_state = 53, .external_lex_state = 12}, + [2147] = {.lex_state = 53, .external_lex_state = 12}, + [2148] = {.lex_state = 53, .external_lex_state = 12}, + [2149] = {.lex_state = 53, .external_lex_state = 15}, [2150] = {.lex_state = 53, .external_lex_state = 12}, - [2151] = {.lex_state = 53, .external_lex_state = 17}, + [2151] = {.lex_state = 53, .external_lex_state = 14}, [2152] = {.lex_state = 53, .external_lex_state = 14}, - [2153] = {.lex_state = 53, .external_lex_state = 14}, - [2154] = {.lex_state = 53, .external_lex_state = 13}, - [2155] = {.lex_state = 53, .external_lex_state = 12}, - [2156] = {.lex_state = 53, .external_lex_state = 12}, - [2157] = {.lex_state = 53, .external_lex_state = 12}, + [2153] = {.lex_state = 53, .external_lex_state = 15}, + [2154] = {.lex_state = 53, .external_lex_state = 15}, + [2155] = {.lex_state = 53, .external_lex_state = 15}, + [2156] = {.lex_state = 53, .external_lex_state = 15}, + [2157] = {.lex_state = 53, .external_lex_state = 15}, [2158] = {.lex_state = 53, .external_lex_state = 12}, - [2159] = {.lex_state = 53, .external_lex_state = 13}, + [2159] = {.lex_state = 53, .external_lex_state = 12}, [2160] = {.lex_state = 53, .external_lex_state = 13}, [2161] = {.lex_state = 53, .external_lex_state = 17}, - [2162] = {.lex_state = 53, .external_lex_state = 17}, - [2163] = {.lex_state = 53, .external_lex_state = 9}, - [2164] = {.lex_state = 53, .external_lex_state = 14}, - [2165] = {.lex_state = 53, .external_lex_state = 12}, + [2162] = {.lex_state = 53, .external_lex_state = 13}, + [2163] = {.lex_state = 53, .external_lex_state = 13}, + [2164] = {.lex_state = 53, .external_lex_state = 9}, + [2165] = {.lex_state = 53, .external_lex_state = 13}, [2166] = {.lex_state = 53, .external_lex_state = 14}, - [2167] = {.lex_state = 53, .external_lex_state = 12}, + [2167] = {.lex_state = 53, .external_lex_state = 9}, [2168] = {.lex_state = 53, .external_lex_state = 13}, - [2169] = {.lex_state = 53, .external_lex_state = 17}, - [2170] = {.lex_state = 53, .external_lex_state = 14}, + [2169] = {.lex_state = 53, .external_lex_state = 13}, + [2170] = {.lex_state = 53, .external_lex_state = 13}, [2171] = {.lex_state = 53, .external_lex_state = 13}, - [2172] = {.lex_state = 53, .external_lex_state = 9}, - [2173] = {.lex_state = 53, .external_lex_state = 14}, - [2174] = {.lex_state = 53, .external_lex_state = 12}, - [2175] = {.lex_state = 53, .external_lex_state = 12}, - [2176] = {.lex_state = 53, .external_lex_state = 13}, - [2177] = {.lex_state = 53, .external_lex_state = 14}, - [2178] = {.lex_state = 53, .external_lex_state = 14}, + [2172] = {.lex_state = 53, .external_lex_state = 14}, + [2173] = {.lex_state = 53, .external_lex_state = 13}, + [2174] = {.lex_state = 53, .external_lex_state = 14}, + [2175] = {.lex_state = 53, .external_lex_state = 13}, + [2176] = {.lex_state = 53, .external_lex_state = 14}, + [2177] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2178] = {.lex_state = 53, .external_lex_state = 13}, [2179] = {.lex_state = 53, .external_lex_state = 14}, - [2180] = {.lex_state = 53, .external_lex_state = 12}, + [2180] = {.lex_state = 53, .external_lex_state = 13}, [2181] = {.lex_state = 53, .external_lex_state = 14}, - [2182] = {.lex_state = 53, .external_lex_state = 12}, - [2183] = {.lex_state = 53, .external_lex_state = 12}, - [2184] = {.lex_state = 53, .external_lex_state = 12}, - [2185] = {.lex_state = 53, .external_lex_state = 9}, - [2186] = {.lex_state = 53, .external_lex_state = 14}, - [2187] = {.lex_state = 53, .external_lex_state = 12}, - [2188] = {.lex_state = 53, .external_lex_state = 12}, - [2189] = {.lex_state = 53, .external_lex_state = 12}, - [2190] = {.lex_state = 53, .external_lex_state = 13}, - [2191] = {.lex_state = 53, .external_lex_state = 14}, - [2192] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2193] = {.lex_state = 53, .external_lex_state = 13}, - [2194] = {.lex_state = 53, .external_lex_state = 12}, - [2195] = {.lex_state = 53, .external_lex_state = 9}, - [2196] = {.lex_state = 53, .external_lex_state = 12}, - [2197] = {.lex_state = 53, .external_lex_state = 14}, - [2198] = {.lex_state = 53, .external_lex_state = 13}, - [2199] = {.lex_state = 53, .external_lex_state = 15}, - [2200] = {.lex_state = 53, .external_lex_state = 15}, - [2201] = {.lex_state = 53, .external_lex_state = 15}, - [2202] = {.lex_state = 53, .external_lex_state = 12}, - [2203] = {.lex_state = 53, .external_lex_state = 12}, - [2204] = {.lex_state = 53, .external_lex_state = 12}, - [2205] = {.lex_state = 53, .external_lex_state = 14}, - [2206] = {.lex_state = 53, .external_lex_state = 14}, + [2182] = {.lex_state = 53, .external_lex_state = 14}, + [2183] = {.lex_state = 53, .external_lex_state = 14}, + [2184] = {.lex_state = 53, .external_lex_state = 13}, + [2185] = {.lex_state = 53, .external_lex_state = 14}, + [2186] = {.lex_state = 53, .external_lex_state = 17}, + [2187] = {.lex_state = 53, .external_lex_state = 14}, + [2188] = {.lex_state = 53, .external_lex_state = 13}, + [2189] = {.lex_state = 53, .external_lex_state = 14}, + [2190] = {.lex_state = 53, .external_lex_state = 17}, + [2191] = {.lex_state = 53, .external_lex_state = 13}, + [2192] = {.lex_state = 53, .external_lex_state = 13}, + [2193] = {.lex_state = 53, .external_lex_state = 14}, + [2194] = {.lex_state = 53, .external_lex_state = 9}, + [2195] = {.lex_state = 53, .external_lex_state = 13}, + [2196] = {.lex_state = 53, .external_lex_state = 13}, + [2197] = {.lex_state = 53, .external_lex_state = 13}, + [2198] = {.lex_state = 53, .external_lex_state = 12}, + [2199] = {.lex_state = 53, .external_lex_state = 13}, + [2200] = {.lex_state = 53, .external_lex_state = 14}, + [2201] = {.lex_state = 53, .external_lex_state = 12}, + [2202] = {.lex_state = 53, .external_lex_state = 13}, + [2203] = {.lex_state = 53, .external_lex_state = 14}, + [2204] = {.lex_state = 53, .external_lex_state = 14}, + [2205] = {.lex_state = 53, .external_lex_state = 12}, + [2206] = {.lex_state = 53, .external_lex_state = 12}, [2207] = {.lex_state = 53, .external_lex_state = 12}, - [2208] = {.lex_state = 53, .external_lex_state = 12}, + [2208] = {.lex_state = 53, .external_lex_state = 14}, [2209] = {.lex_state = 53, .external_lex_state = 13}, - [2210] = {.lex_state = 53, .external_lex_state = 9}, - [2211] = {.lex_state = 53, .external_lex_state = 14}, - [2212] = {.lex_state = 53, .external_lex_state = 9}, + [2210] = {.lex_state = 53, .external_lex_state = 13}, + [2211] = {.lex_state = 9, .external_lex_state = 15}, + [2212] = {.lex_state = 53, .external_lex_state = 14}, [2213] = {.lex_state = 53, .external_lex_state = 14}, - [2214] = {.lex_state = 53, .external_lex_state = 14}, + [2214] = {.lex_state = 53, .external_lex_state = 9}, [2215] = {.lex_state = 53, .external_lex_state = 15}, - [2216] = {.lex_state = 53, .external_lex_state = 14}, - [2217] = {.lex_state = 53, .external_lex_state = 13}, - [2218] = {.lex_state = 53, .external_lex_state = 14}, - [2219] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2220] = {.lex_state = 53, .external_lex_state = 14}, + [2216] = {.lex_state = 53, .external_lex_state = 15}, + [2217] = {.lex_state = 53, .external_lex_state = 14}, + [2218] = {.lex_state = 53, .external_lex_state = 9}, + [2219] = {.lex_state = 53, .external_lex_state = 14}, + [2220] = {.lex_state = 53, .external_lex_state = 15}, [2221] = {.lex_state = 53, .external_lex_state = 14}, - [2222] = {.lex_state = 53, .external_lex_state = 14}, - [2223] = {.lex_state = 53, .external_lex_state = 15}, - [2224] = {.lex_state = 53, .external_lex_state = 13}, - [2225] = {.lex_state = 53, .external_lex_state = 14}, - [2226] = {.lex_state = 53, .external_lex_state = 13}, - [2227] = {.lex_state = 53, .external_lex_state = 15}, - [2228] = {.lex_state = 53, .external_lex_state = 15}, - [2229] = {.lex_state = 53, .external_lex_state = 13}, - [2230] = {.lex_state = 53, .external_lex_state = 9}, - [2231] = {.lex_state = 53, .external_lex_state = 9}, - [2232] = {.lex_state = 53, .external_lex_state = 13}, + [2222] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2223] = {.lex_state = 53, .external_lex_state = 12}, + [2224] = {.lex_state = 53, .external_lex_state = 12}, + [2225] = {.lex_state = 53, .external_lex_state = 13}, + [2226] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2227] = {.lex_state = 53, .external_lex_state = 14}, + [2228] = {.lex_state = 53, .external_lex_state = 9}, + [2229] = {.lex_state = 53, .external_lex_state = 14}, + [2230] = {.lex_state = 53, .external_lex_state = 12}, + [2231] = {.lex_state = 53, .external_lex_state = 12}, + [2232] = {.lex_state = 53, .external_lex_state = 12}, [2233] = {.lex_state = 53, .external_lex_state = 14}, - [2234] = {.lex_state = 53, .external_lex_state = 14}, + [2234] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, [2235] = {.lex_state = 53, .external_lex_state = 14}, - [2236] = {.lex_state = 9, .external_lex_state = 15}, + [2236] = {.lex_state = 53, .external_lex_state = 15}, [2237] = {.lex_state = 53, .external_lex_state = 12}, [2238] = {.lex_state = 53, .external_lex_state = 14}, - [2239] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2240] = {.lex_state = 53, .external_lex_state = 13}, + [2239] = {.lex_state = 53, .external_lex_state = 12}, + [2240] = {.lex_state = 53, .external_lex_state = 12}, [2241] = {.lex_state = 53, .external_lex_state = 9}, - [2242] = {.lex_state = 53, .external_lex_state = 12}, - [2243] = {.lex_state = 53, .external_lex_state = 12}, - [2244] = {.lex_state = 3, .external_lex_state = 13}, + [2242] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2243] = {.lex_state = 53, .external_lex_state = 9}, + [2244] = {.lex_state = 53, .external_lex_state = 14}, [2245] = {.lex_state = 53, .external_lex_state = 9}, - [2246] = {.lex_state = 53, .external_lex_state = 9}, - [2247] = {.lex_state = 53, .external_lex_state = 15}, + [2246] = {.lex_state = 53, .external_lex_state = 14}, + [2247] = {.lex_state = 53, .external_lex_state = 17}, [2248] = {.lex_state = 53, .external_lex_state = 14}, - [2249] = {.lex_state = 53, .external_lex_state = 18}, - [2250] = {.lex_state = 53, .external_lex_state = 15}, - [2251] = {.lex_state = 53, .external_lex_state = 15}, - [2252] = {.lex_state = 53, .external_lex_state = 13}, - [2253] = {.lex_state = 53, .external_lex_state = 14}, - [2254] = {.lex_state = 53, .external_lex_state = 9}, - [2255] = {.lex_state = 53, .external_lex_state = 14}, - [2256] = {.lex_state = 53, .external_lex_state = 14}, - [2257] = {.lex_state = 53, .external_lex_state = 13}, - [2258] = {.lex_state = 53, .external_lex_state = 14}, - [2259] = {.lex_state = 53, .external_lex_state = 14}, + [2249] = {.lex_state = 53, .external_lex_state = 9}, + [2250] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2251] = {.lex_state = 53, .external_lex_state = 14}, + [2252] = {.lex_state = 53, .external_lex_state = 14}, + [2253] = {.lex_state = 53, .external_lex_state = 9}, + [2254] = {.lex_state = 53, .external_lex_state = 17}, + [2255] = {.lex_state = 53, .external_lex_state = 12}, + [2256] = {.lex_state = 53, .external_lex_state = 9}, + [2257] = {.lex_state = 53, .external_lex_state = 15}, + [2258] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2259] = {.lex_state = 53, .external_lex_state = 15}, [2260] = {.lex_state = 53, .external_lex_state = 14}, - [2261] = {.lex_state = 53, .external_lex_state = 14}, + [2261] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2262] = {.lex_state = 53, .external_lex_state = 12}, [2263] = {.lex_state = 53, .external_lex_state = 12}, - [2264] = {.lex_state = 53, .external_lex_state = 13}, - [2265] = {.lex_state = 53, .external_lex_state = 15}, - [2266] = {.lex_state = 53, .external_lex_state = 14}, + [2264] = {.lex_state = 53, .external_lex_state = 12}, + [2265] = {.lex_state = 53, .external_lex_state = 12}, + [2266] = {.lex_state = 53, .external_lex_state = 9}, [2267] = {.lex_state = 53, .external_lex_state = 14}, - [2268] = {.lex_state = 53, .external_lex_state = 14}, - [2269] = {.lex_state = 53, .external_lex_state = 14}, + [2268] = {.lex_state = 53, .external_lex_state = 13}, + [2269] = {.lex_state = 53, .external_lex_state = 9}, [2270] = {.lex_state = 53, .external_lex_state = 12}, - [2271] = {.lex_state = 53, .external_lex_state = 12}, - [2272] = {.lex_state = 53, .external_lex_state = 12}, + [2271] = {.lex_state = 53, .external_lex_state = 15}, + [2272] = {.lex_state = 53, .external_lex_state = 13}, [2273] = {.lex_state = 53, .external_lex_state = 15}, - [2274] = {.lex_state = 53, .external_lex_state = 18}, - [2275] = {.lex_state = 53, .external_lex_state = 14}, - [2276] = {.lex_state = 53, .external_lex_state = 14}, - [2277] = {.lex_state = 53, .external_lex_state = 13}, - [2278] = {.lex_state = 3, .external_lex_state = 13}, - [2279] = {.lex_state = 53, .external_lex_state = 14}, + [2274] = {.lex_state = 53, .external_lex_state = 13}, + [2275] = {.lex_state = 53, .external_lex_state = 12}, + [2276] = {.lex_state = 53, .external_lex_state = 9}, + [2277] = {.lex_state = 53, .external_lex_state = 12}, + [2278] = {.lex_state = 53, .external_lex_state = 14}, + [2279] = {.lex_state = 53, .external_lex_state = 12}, [2280] = {.lex_state = 53, .external_lex_state = 12}, [2281] = {.lex_state = 53, .external_lex_state = 13}, - [2282] = {.lex_state = 53, .external_lex_state = 18}, - [2283] = {.lex_state = 53, .external_lex_state = 13}, - [2284] = {.lex_state = 53, .external_lex_state = 13}, - [2285] = {.lex_state = 53, .external_lex_state = 15}, - [2286] = {.lex_state = 53, .external_lex_state = 14}, - [2287] = {.lex_state = 53, .external_lex_state = 13}, - [2288] = {.lex_state = 53, .external_lex_state = 14}, - [2289] = {.lex_state = 3, .external_lex_state = 13}, - [2290] = {.lex_state = 3, .external_lex_state = 13}, - [2291] = {.lex_state = 3, .external_lex_state = 13}, - [2292] = {.lex_state = 53, .external_lex_state = 14}, - [2293] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2282] = {.lex_state = 53, .external_lex_state = 9}, + [2283] = {.lex_state = 53, .external_lex_state = 9}, + [2284] = {.lex_state = 53, .external_lex_state = 12}, + [2285] = {.lex_state = 53, .external_lex_state = 12}, + [2286] = {.lex_state = 53, .external_lex_state = 15}, + [2287] = {.lex_state = 53, .external_lex_state = 14}, + [2288] = {.lex_state = 53, .external_lex_state = 13}, + [2289] = {.lex_state = 53, .external_lex_state = 13}, + [2290] = {.lex_state = 53, .external_lex_state = 9}, + [2291] = {.lex_state = 53, .external_lex_state = 14}, + [2292] = {.lex_state = 53, .external_lex_state = 15}, + [2293] = {.lex_state = 53, .external_lex_state = 14}, [2294] = {.lex_state = 53, .external_lex_state = 12}, - [2295] = {.lex_state = 53, .external_lex_state = 15}, - [2296] = {.lex_state = 53, .external_lex_state = 13}, - [2297] = {.lex_state = 53, .external_lex_state = 18}, - [2298] = {.lex_state = 53, .external_lex_state = 14}, - [2299] = {.lex_state = 53, .external_lex_state = 15}, - [2300] = {.lex_state = 53, .external_lex_state = 13}, + [2295] = {.lex_state = 53, .external_lex_state = 13}, + [2296] = {.lex_state = 53, .external_lex_state = 12}, + [2297] = {.lex_state = 53, .external_lex_state = 12}, + [2298] = {.lex_state = 53, .external_lex_state = 15}, + [2299] = {.lex_state = 9, .external_lex_state = 15}, + [2300] = {.lex_state = 53, .external_lex_state = 9}, [2301] = {.lex_state = 53, .external_lex_state = 15}, - [2302] = {.lex_state = 53, .external_lex_state = 13}, + [2302] = {.lex_state = 53, .external_lex_state = 14}, [2303] = {.lex_state = 53, .external_lex_state = 14}, [2304] = {.lex_state = 53, .external_lex_state = 14}, [2305] = {.lex_state = 53, .external_lex_state = 12}, - [2306] = {.lex_state = 53, .external_lex_state = 14}, + [2306] = {.lex_state = 53, .external_lex_state = 9}, [2307] = {.lex_state = 53, .external_lex_state = 14}, [2308] = {.lex_state = 53, .external_lex_state = 14}, - [2309] = {.lex_state = 53, .external_lex_state = 12}, - [2310] = {.lex_state = 53, .external_lex_state = 14}, - [2311] = {.lex_state = 53, .external_lex_state = 12}, - [2312] = {.lex_state = 53, .external_lex_state = 12}, + [2309] = {.lex_state = 53, .external_lex_state = 15}, + [2310] = {.lex_state = 53, .external_lex_state = 15}, + [2311] = {.lex_state = 53, .external_lex_state = 13}, + [2312] = {.lex_state = 9, .external_lex_state = 15}, [2313] = {.lex_state = 53, .external_lex_state = 13}, - [2314] = {.lex_state = 53, .external_lex_state = 12}, - [2315] = {.lex_state = 53, .external_lex_state = 12}, - [2316] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2317] = {.lex_state = 53, .external_lex_state = 13}, - [2318] = {.lex_state = 9, .external_lex_state = 15}, - [2319] = {.lex_state = 53, .external_lex_state = 14}, - [2320] = {.lex_state = 53, .external_lex_state = 14}, - [2321] = {.lex_state = 53, .external_lex_state = 12}, - [2322] = {.lex_state = 53, .external_lex_state = 13}, - [2323] = {.lex_state = 53, .external_lex_state = 13}, - [2324] = {.lex_state = 53, .external_lex_state = 12}, - [2325] = {.lex_state = 53, .external_lex_state = 14}, - [2326] = {.lex_state = 53, .external_lex_state = 18}, - [2327] = {.lex_state = 53, .external_lex_state = 14}, - [2328] = {.lex_state = 53, .external_lex_state = 12}, + [2314] = {.lex_state = 53, .external_lex_state = 14}, + [2315] = {.lex_state = 53, .external_lex_state = 14}, + [2316] = {.lex_state = 53, .external_lex_state = 14}, + [2317] = {.lex_state = 53, .external_lex_state = 12}, + [2318] = {.lex_state = 53, .external_lex_state = 13}, + [2319] = {.lex_state = 53, .external_lex_state = 13}, + [2320] = {.lex_state = 53, .external_lex_state = 15}, + [2321] = {.lex_state = 53, .external_lex_state = 13}, + [2322] = {.lex_state = 53, .external_lex_state = 14}, + [2323] = {.lex_state = 53, .external_lex_state = 14}, + [2324] = {.lex_state = 53, .external_lex_state = 9}, + [2325] = {.lex_state = 53, .external_lex_state = 13}, + [2326] = {.lex_state = 53, .external_lex_state = 13}, + [2327] = {.lex_state = 53, .external_lex_state = 15}, + [2328] = {.lex_state = 53, .external_lex_state = 15}, [2329] = {.lex_state = 53, .external_lex_state = 12}, [2330] = {.lex_state = 53, .external_lex_state = 14}, - [2331] = {.lex_state = 53, .external_lex_state = 12}, - [2332] = {.lex_state = 53, .external_lex_state = 9}, - [2333] = {.lex_state = 53, .external_lex_state = 13}, - [2334] = {.lex_state = 9, .external_lex_state = 15}, - [2335] = {.lex_state = 53, .external_lex_state = 14}, - [2336] = {.lex_state = 53, .external_lex_state = 9}, - [2337] = {.lex_state = 53, .external_lex_state = 13}, - [2338] = {.lex_state = 53, .external_lex_state = 15}, - [2339] = {.lex_state = 53, .external_lex_state = 14}, - [2340] = {.lex_state = 53, .external_lex_state = 13}, - [2341] = {.lex_state = 53, .external_lex_state = 13}, + [2331] = {.lex_state = 53, .external_lex_state = 13}, + [2332] = {.lex_state = 53, .external_lex_state = 14}, + [2333] = {.lex_state = 53, .external_lex_state = 15}, + [2334] = {.lex_state = 53, .external_lex_state = 13}, + [2335] = {.lex_state = 53, .external_lex_state = 12}, + [2336] = {.lex_state = 53, .external_lex_state = 12}, + [2337] = {.lex_state = 53, .external_lex_state = 12}, + [2338] = {.lex_state = 53, .external_lex_state = 12}, + [2339] = {.lex_state = 53, .external_lex_state = 15}, + [2340] = {.lex_state = 53, .external_lex_state = 14}, + [2341] = {.lex_state = 53, .external_lex_state = 12}, [2342] = {.lex_state = 53, .external_lex_state = 14}, [2343] = {.lex_state = 53, .external_lex_state = 15}, - [2344] = {.lex_state = 53, .external_lex_state = 13}, - [2345] = {.lex_state = 53, .external_lex_state = 14}, + [2344] = {.lex_state = 53, .external_lex_state = 9}, + [2345] = {.lex_state = 53, .external_lex_state = 12}, [2346] = {.lex_state = 53, .external_lex_state = 14}, - [2347] = {.lex_state = 53, .external_lex_state = 15}, - [2348] = {.lex_state = 53, .external_lex_state = 12}, + [2347] = {.lex_state = 53, .external_lex_state = 9}, + [2348] = {.lex_state = 53, .external_lex_state = 14}, [2349] = {.lex_state = 53, .external_lex_state = 14}, - [2350] = {.lex_state = 53, .external_lex_state = 15}, - [2351] = {.lex_state = 53, .external_lex_state = 14}, - [2352] = {.lex_state = 53, .external_lex_state = 12}, - [2353] = {.lex_state = 53, .external_lex_state = 12}, - [2354] = {.lex_state = 53, .external_lex_state = 15}, + [2350] = {.lex_state = 53, .external_lex_state = 12}, + [2351] = {.lex_state = 53, .external_lex_state = 12}, + [2352] = {.lex_state = 53, .external_lex_state = 14}, + [2353] = {.lex_state = 53, .external_lex_state = 14}, + [2354] = {.lex_state = 53, .external_lex_state = 13}, [2355] = {.lex_state = 53, .external_lex_state = 13}, - [2356] = {.lex_state = 9, .external_lex_state = 15}, - [2357] = {.lex_state = 53, .external_lex_state = 15}, - [2358] = {.lex_state = 53, .external_lex_state = 13}, - [2359] = {.lex_state = 53, .external_lex_state = 9}, - [2360] = {.lex_state = 53, .external_lex_state = 14}, - [2361] = {.lex_state = 53, .external_lex_state = 9}, - [2362] = {.lex_state = 53, .external_lex_state = 15}, - [2363] = {.lex_state = 53, .external_lex_state = 15}, - [2364] = {.lex_state = 53, .external_lex_state = 14}, - [2365] = {.lex_state = 53, .external_lex_state = 14}, - [2366] = {.lex_state = 53, .external_lex_state = 9}, - [2367] = {.lex_state = 53, .external_lex_state = 13}, - [2368] = {.lex_state = 53, .external_lex_state = 14}, + [2356] = {.lex_state = 53, .external_lex_state = 14}, + [2357] = {.lex_state = 3, .external_lex_state = 12}, + [2358] = {.lex_state = 53, .external_lex_state = 14}, + [2359] = {.lex_state = 53, .external_lex_state = 14}, + [2360] = {.lex_state = 53, .external_lex_state = 13}, + [2361] = {.lex_state = 53, .external_lex_state = 13}, + [2362] = {.lex_state = 53, .external_lex_state = 13}, + [2363] = {.lex_state = 53, .external_lex_state = 14}, + [2364] = {.lex_state = 53, .external_lex_state = 12}, + [2365] = {.lex_state = 53, .external_lex_state = 13}, + [2366] = {.lex_state = 53, .external_lex_state = 13}, + [2367] = {.lex_state = 53, .external_lex_state = 12}, + [2368] = {.lex_state = 53, .external_lex_state = 13}, [2369] = {.lex_state = 53, .external_lex_state = 14}, [2370] = {.lex_state = 53, .external_lex_state = 13}, - [2371] = {.lex_state = 53, .external_lex_state = 14}, - [2372] = {.lex_state = 53, .external_lex_state = 14}, - [2373] = {.lex_state = 53, .external_lex_state = 14}, + [2371] = {.lex_state = 53, .external_lex_state = 12}, + [2372] = {.lex_state = 53, .external_lex_state = 12}, + [2373] = {.lex_state = 53, .external_lex_state = 15}, [2374] = {.lex_state = 53, .external_lex_state = 18}, - [2375] = {.lex_state = 53, .external_lex_state = 12}, - [2376] = {.lex_state = 53, .external_lex_state = 15}, + [2375] = {.lex_state = 53, .external_lex_state = 9}, + [2376] = {.lex_state = 53, .external_lex_state = 13}, [2377] = {.lex_state = 53, .external_lex_state = 14}, [2378] = {.lex_state = 53, .external_lex_state = 12}, - [2379] = {.lex_state = 53, .external_lex_state = 14}, + [2379] = {.lex_state = 3, .external_lex_state = 12}, [2380] = {.lex_state = 53, .external_lex_state = 12}, - [2381] = {.lex_state = 53, .external_lex_state = 12}, - [2382] = {.lex_state = 53, .external_lex_state = 13}, - [2383] = {.lex_state = 53, .external_lex_state = 9}, - [2384] = {.lex_state = 53, .external_lex_state = 13}, - [2385] = {.lex_state = 53, .external_lex_state = 14}, - [2386] = {.lex_state = 53, .external_lex_state = 14}, - [2387] = {.lex_state = 53, .external_lex_state = 13}, + [2381] = {.lex_state = 53, .external_lex_state = 14}, + [2382] = {.lex_state = 53, .external_lex_state = 14}, + [2383] = {.lex_state = 53, .external_lex_state = 14}, + [2384] = {.lex_state = 53, .external_lex_state = 14}, + [2385] = {.lex_state = 53, .external_lex_state = 12}, + [2386] = {.lex_state = 53, .external_lex_state = 12}, + [2387] = {.lex_state = 53, .external_lex_state = 14}, [2388] = {.lex_state = 53, .external_lex_state = 14}, - [2389] = {.lex_state = 53, .external_lex_state = 15}, - [2390] = {.lex_state = 53, .external_lex_state = 15}, + [2389] = {.lex_state = 53, .external_lex_state = 13}, + [2390] = {.lex_state = 53, .external_lex_state = 12}, [2391] = {.lex_state = 53, .external_lex_state = 13}, - [2392] = {.lex_state = 3, .external_lex_state = 13}, + [2392] = {.lex_state = 53, .external_lex_state = 14}, [2393] = {.lex_state = 53, .external_lex_state = 14}, [2394] = {.lex_state = 53, .external_lex_state = 14}, - [2395] = {.lex_state = 53, .external_lex_state = 14}, - [2396] = {.lex_state = 53, .external_lex_state = 12}, - [2397] = {.lex_state = 53, .external_lex_state = 14}, - [2398] = {.lex_state = 53, .external_lex_state = 14}, + [2395] = {.lex_state = 53, .external_lex_state = 13}, + [2396] = {.lex_state = 53, .external_lex_state = 13}, + [2397] = {.lex_state = 53, .external_lex_state = 12}, + [2398] = {.lex_state = 53, .external_lex_state = 9}, [2399] = {.lex_state = 53, .external_lex_state = 14}, - [2400] = {.lex_state = 53, .external_lex_state = 9}, - [2401] = {.lex_state = 53, .external_lex_state = 12}, - [2402] = {.lex_state = 53, .external_lex_state = 12}, - [2403] = {.lex_state = 53, .external_lex_state = 14}, - [2404] = {.lex_state = 53, .external_lex_state = 14}, + [2400] = {.lex_state = 53, .external_lex_state = 13}, + [2401] = {.lex_state = 53, .external_lex_state = 14}, + [2402] = {.lex_state = 53, .external_lex_state = 18}, + [2403] = {.lex_state = 53, .external_lex_state = 9}, + [2404] = {.lex_state = 53, .external_lex_state = 15}, [2405] = {.lex_state = 53, .external_lex_state = 14}, - [2406] = {.lex_state = 53, .external_lex_state = 12}, - [2407] = {.lex_state = 53, .external_lex_state = 15}, - [2408] = {.lex_state = 53, .external_lex_state = 13}, - [2409] = {.lex_state = 53, .external_lex_state = 18}, + [2406] = {.lex_state = 53, .external_lex_state = 14}, + [2407] = {.lex_state = 53, .external_lex_state = 14}, + [2408] = {.lex_state = 53, .external_lex_state = 14}, + [2409] = {.lex_state = 53, .external_lex_state = 12}, [2410] = {.lex_state = 53, .external_lex_state = 14}, - [2411] = {.lex_state = 53, .external_lex_state = 13}, - [2412] = {.lex_state = 53, .external_lex_state = 15}, - [2413] = {.lex_state = 53, .external_lex_state = 13}, + [2411] = {.lex_state = 53, .external_lex_state = 12}, + [2412] = {.lex_state = 53, .external_lex_state = 14}, + [2413] = {.lex_state = 53, .external_lex_state = 14}, [2414] = {.lex_state = 53, .external_lex_state = 14}, - [2415] = {.lex_state = 53, .external_lex_state = 14}, - [2416] = {.lex_state = 53, .external_lex_state = 13}, - [2417] = {.lex_state = 53, .external_lex_state = 14}, - [2418] = {.lex_state = 53, .external_lex_state = 12}, + [2415] = {.lex_state = 53, .external_lex_state = 13}, + [2416] = {.lex_state = 53, .external_lex_state = 14}, + [2417] = {.lex_state = 53, .external_lex_state = 18}, + [2418] = {.lex_state = 53, .external_lex_state = 14}, [2419] = {.lex_state = 53, .external_lex_state = 14}, [2420] = {.lex_state = 53, .external_lex_state = 14}, - [2421] = {.lex_state = 53, .external_lex_state = 14}, - [2422] = {.lex_state = 53, .external_lex_state = 12}, - [2423] = {.lex_state = 53, .external_lex_state = 12}, - [2424] = {.lex_state = 53, .external_lex_state = 14}, - [2425] = {.lex_state = 53, .external_lex_state = 9}, - [2426] = {.lex_state = 53, .external_lex_state = 9}, - [2427] = {.lex_state = 53, .external_lex_state = 14}, + [2421] = {.lex_state = 53, .external_lex_state = 15}, + [2422] = {.lex_state = 53, .external_lex_state = 13}, + [2423] = {.lex_state = 53, .external_lex_state = 13}, + [2424] = {.lex_state = 9, .external_lex_state = 15}, + [2425] = {.lex_state = 53, .external_lex_state = 13}, + [2426] = {.lex_state = 53, .external_lex_state = 13}, + [2427] = {.lex_state = 53, .external_lex_state = 12}, [2428] = {.lex_state = 53, .external_lex_state = 12}, - [2429] = {.lex_state = 53, .external_lex_state = 12}, - [2430] = {.lex_state = 53, .external_lex_state = 12}, - [2431] = {.lex_state = 53, .external_lex_state = 14}, - [2432] = {.lex_state = 53, .external_lex_state = 12}, + [2429] = {.lex_state = 53, .external_lex_state = 14}, + [2430] = {.lex_state = 53, .external_lex_state = 9}, + [2431] = {.lex_state = 53, .external_lex_state = 15}, + [2432] = {.lex_state = 53, .external_lex_state = 14}, [2433] = {.lex_state = 53, .external_lex_state = 12}, - [2434] = {.lex_state = 53, .external_lex_state = 13}, + [2434] = {.lex_state = 53, .external_lex_state = 15}, [2435] = {.lex_state = 53, .external_lex_state = 12}, - [2436] = {.lex_state = 53, .external_lex_state = 12}, - [2437] = {.lex_state = 53, .external_lex_state = 12}, - [2438] = {.lex_state = 53, .external_lex_state = 12}, + [2436] = {.lex_state = 53, .external_lex_state = 14}, + [2437] = {.lex_state = 53, .external_lex_state = 14}, + [2438] = {.lex_state = 53, .external_lex_state = 9}, [2439] = {.lex_state = 53, .external_lex_state = 14}, - [2440] = {.lex_state = 53, .external_lex_state = 14}, - [2441] = {.lex_state = 53, .external_lex_state = 14}, - [2442] = {.lex_state = 53, .external_lex_state = 15}, - [2443] = {.lex_state = 53, .external_lex_state = 12}, - [2444] = {.lex_state = 53, .external_lex_state = 15}, - [2445] = {.lex_state = 53, .external_lex_state = 15}, - [2446] = {.lex_state = 53, .external_lex_state = 9}, - [2447] = {.lex_state = 53, .external_lex_state = 12}, - [2448] = {.lex_state = 53, .external_lex_state = 15}, - [2449] = {.lex_state = 53, .external_lex_state = 14}, - [2450] = {.lex_state = 9, .external_lex_state = 15}, - [2451] = {.lex_state = 53, .external_lex_state = 12}, - [2452] = {.lex_state = 9, .external_lex_state = 15}, - [2453] = {.lex_state = 53, .external_lex_state = 15}, - [2454] = {.lex_state = 9, .external_lex_state = 15}, + [2440] = {.lex_state = 53, .external_lex_state = 13}, + [2441] = {.lex_state = 53, .external_lex_state = 13}, + [2442] = {.lex_state = 53, .external_lex_state = 13}, + [2443] = {.lex_state = 53, .external_lex_state = 14}, + [2444] = {.lex_state = 3, .external_lex_state = 12}, + [2445] = {.lex_state = 53, .external_lex_state = 14}, + [2446] = {.lex_state = 53, .external_lex_state = 14}, + [2447] = {.lex_state = 53, .external_lex_state = 14}, + [2448] = {.lex_state = 53, .external_lex_state = 13}, + [2449] = {.lex_state = 53, .external_lex_state = 13}, + [2450] = {.lex_state = 53, .external_lex_state = 15}, + [2451] = {.lex_state = 53, .external_lex_state = 14}, + [2452] = {.lex_state = 53, .external_lex_state = 13}, + [2453] = {.lex_state = 3, .external_lex_state = 12}, + [2454] = {.lex_state = 3, .external_lex_state = 12}, [2455] = {.lex_state = 9, .external_lex_state = 15}, - [2456] = {.lex_state = 53, .external_lex_state = 15}, - [2457] = {.lex_state = 53, .external_lex_state = 13}, - [2458] = {.lex_state = 53, .external_lex_state = 13}, - [2459] = {.lex_state = 53, .external_lex_state = 14}, - [2460] = {.lex_state = 53, .external_lex_state = 9}, - [2461] = {.lex_state = 53, .external_lex_state = 15}, - [2462] = {.lex_state = 53, .external_lex_state = 15}, - [2463] = {.lex_state = 53, .external_lex_state = 13}, + [2456] = {.lex_state = 3, .external_lex_state = 12}, + [2457] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2458] = {.lex_state = 53, .external_lex_state = 12}, + [2459] = {.lex_state = 53, .external_lex_state = 18}, + [2460] = {.lex_state = 53, .external_lex_state = 15}, + [2461] = {.lex_state = 53, .external_lex_state = 14}, + [2462] = {.lex_state = 53, .external_lex_state = 12}, + [2463] = {.lex_state = 53, .external_lex_state = 12}, [2464] = {.lex_state = 53, .external_lex_state = 14}, - [2465] = {.lex_state = 53, .external_lex_state = 14}, - [2466] = {.lex_state = 53, .external_lex_state = 12}, - [2467] = {.lex_state = 53, .external_lex_state = 12}, - [2468] = {.lex_state = 53, .external_lex_state = 13}, - [2469] = {.lex_state = 53, .external_lex_state = 14}, - [2470] = {.lex_state = 3, .external_lex_state = 13}, - [2471] = {.lex_state = 53, .external_lex_state = 15}, - [2472] = {.lex_state = 3, .external_lex_state = 13}, + [2465] = {.lex_state = 53, .external_lex_state = 12}, + [2466] = {.lex_state = 53, .external_lex_state = 14}, + [2467] = {.lex_state = 53, .external_lex_state = 14}, + [2468] = {.lex_state = 53, .external_lex_state = 15}, + [2469] = {.lex_state = 53, .external_lex_state = 13}, + [2470] = {.lex_state = 53, .external_lex_state = 18}, + [2471] = {.lex_state = 53, .external_lex_state = 14}, + [2472] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2473] = {.lex_state = 53, .external_lex_state = 14}, - [2474] = {.lex_state = 9, .external_lex_state = 15}, - [2475] = {.lex_state = 53, .external_lex_state = 12}, - [2476] = {.lex_state = 3, .external_lex_state = 13}, - [2477] = {.lex_state = 53, .external_lex_state = 13}, - [2478] = {.lex_state = 53, .external_lex_state = 13}, - [2479] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2474] = {.lex_state = 53, .external_lex_state = 14}, + [2475] = {.lex_state = 53, .external_lex_state = 13}, + [2476] = {.lex_state = 53, .external_lex_state = 13}, + [2477] = {.lex_state = 53, .external_lex_state = 14}, + [2478] = {.lex_state = 53, .external_lex_state = 15}, + [2479] = {.lex_state = 53, .external_lex_state = 14}, [2480] = {.lex_state = 53, .external_lex_state = 15}, - [2481] = {.lex_state = 53, .external_lex_state = 13}, - [2482] = {.lex_state = 53, .external_lex_state = 14}, - [2483] = {.lex_state = 53, .external_lex_state = 12}, - [2484] = {.lex_state = 53, .external_lex_state = 14}, - [2485] = {.lex_state = 53, .external_lex_state = 12}, - [2486] = {.lex_state = 53, .external_lex_state = 12}, - [2487] = {.lex_state = 53, .external_lex_state = 14}, - [2488] = {.lex_state = 53, .external_lex_state = 15}, - [2489] = {.lex_state = 53, .external_lex_state = 15}, - [2490] = {.lex_state = 53, .external_lex_state = 18}, - [2491] = {.lex_state = 53, .external_lex_state = 14}, - [2492] = {.lex_state = 53, .external_lex_state = 9}, - [2493] = {.lex_state = 53, .external_lex_state = 15}, - [2494] = {.lex_state = 53, .external_lex_state = 14}, - [2495] = {.lex_state = 53, .external_lex_state = 17}, - [2496] = {.lex_state = 53, .external_lex_state = 15}, - [2497] = {.lex_state = 53, .external_lex_state = 17}, - [2498] = {.lex_state = 53, .external_lex_state = 12}, - [2499] = {.lex_state = 53, .external_lex_state = 17}, - [2500] = {.lex_state = 53, .external_lex_state = 17}, - [2501] = {.lex_state = 53, .external_lex_state = 14}, - [2502] = {.lex_state = 53, .external_lex_state = 9}, - [2503] = {.lex_state = 53, .external_lex_state = 17}, - [2504] = {.lex_state = 53, .external_lex_state = 12}, - [2505] = {.lex_state = 53, .external_lex_state = 12}, - [2506] = {.lex_state = 53, .external_lex_state = 9}, - [2507] = {.lex_state = 53, .external_lex_state = 15}, - [2508] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2509] = {.lex_state = 53, .external_lex_state = 9}, - [2510] = {.lex_state = 53, .external_lex_state = 15}, - [2511] = {.lex_state = 53, .external_lex_state = 17}, + [2481] = {.lex_state = 53, .external_lex_state = 14}, + [2482] = {.lex_state = 53, .external_lex_state = 13}, + [2483] = {.lex_state = 53, .external_lex_state = 13}, + [2484] = {.lex_state = 53, .external_lex_state = 13}, + [2485] = {.lex_state = 53, .external_lex_state = 14}, + [2486] = {.lex_state = 53, .external_lex_state = 14}, + [2487] = {.lex_state = 53, .external_lex_state = 13}, + [2488] = {.lex_state = 53, .external_lex_state = 13}, + [2489] = {.lex_state = 53, .external_lex_state = 9}, + [2490] = {.lex_state = 53, .external_lex_state = 13}, + [2491] = {.lex_state = 53, .external_lex_state = 13}, + [2492] = {.lex_state = 53, .external_lex_state = 14}, + [2493] = {.lex_state = 53, .external_lex_state = 13}, + [2494] = {.lex_state = 53, .external_lex_state = 12}, + [2495] = {.lex_state = 53, .external_lex_state = 14}, + [2496] = {.lex_state = 53, .external_lex_state = 14}, + [2497] = {.lex_state = 53, .external_lex_state = 14}, + [2498] = {.lex_state = 53, .external_lex_state = 14}, + [2499] = {.lex_state = 53, .external_lex_state = 15}, + [2500] = {.lex_state = 53, .external_lex_state = 18}, + [2501] = {.lex_state = 53, .external_lex_state = 15}, + [2502] = {.lex_state = 53, .external_lex_state = 15}, + [2503] = {.lex_state = 53, .external_lex_state = 13}, + [2504] = {.lex_state = 53, .external_lex_state = 15}, + [2505] = {.lex_state = 53, .external_lex_state = 15}, + [2506] = {.lex_state = 9, .external_lex_state = 15}, + [2507] = {.lex_state = 53, .external_lex_state = 13}, + [2508] = {.lex_state = 9, .external_lex_state = 15}, + [2509] = {.lex_state = 53, .external_lex_state = 15}, + [2510] = {.lex_state = 9, .external_lex_state = 15}, + [2511] = {.lex_state = 9, .external_lex_state = 15}, [2512] = {.lex_state = 53, .external_lex_state = 15}, - [2513] = {.lex_state = 53, .external_lex_state = 15}, - [2514] = {.lex_state = 53, .external_lex_state = 15}, - [2515] = {.lex_state = 53, .external_lex_state = 9}, - [2516] = {.lex_state = 10, .external_lex_state = 15}, + [2513] = {.lex_state = 53, .external_lex_state = 9}, + [2514] = {.lex_state = 53, .external_lex_state = 12}, + [2515] = {.lex_state = 53, .external_lex_state = 15}, + [2516] = {.lex_state = 53, .external_lex_state = 15}, [2517] = {.lex_state = 53, .external_lex_state = 14}, - [2518] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2519] = {.lex_state = 10, .external_lex_state = 15}, - [2520] = {.lex_state = 53, .external_lex_state = 13}, - [2521] = {.lex_state = 53, .external_lex_state = 15}, - [2522] = {.lex_state = 10, .external_lex_state = 15}, + [2518] = {.lex_state = 53, .external_lex_state = 18}, + [2519] = {.lex_state = 53, .external_lex_state = 14}, + [2520] = {.lex_state = 3, .external_lex_state = 12}, + [2521] = {.lex_state = 3, .external_lex_state = 12}, + [2522] = {.lex_state = 3, .external_lex_state = 12}, [2523] = {.lex_state = 53, .external_lex_state = 12}, - [2524] = {.lex_state = 53, .external_lex_state = 15}, - [2525] = {.lex_state = 53, .external_lex_state = 12}, - [2526] = {.lex_state = 53, .external_lex_state = 13}, - [2527] = {.lex_state = 53, .external_lex_state = 9}, - [2528] = {.lex_state = 53, .external_lex_state = 17}, - [2529] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2530] = {.lex_state = 53, .external_lex_state = 9}, - [2531] = {.lex_state = 53, .external_lex_state = 15}, + [2524] = {.lex_state = 53, .external_lex_state = 18}, + [2525] = {.lex_state = 53, .external_lex_state = 14}, + [2526] = {.lex_state = 53, .external_lex_state = 14}, + [2527] = {.lex_state = 53, .external_lex_state = 14}, + [2528] = {.lex_state = 53, .external_lex_state = 13}, + [2529] = {.lex_state = 53, .external_lex_state = 12}, + [2530] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2531] = {.lex_state = 53, .external_lex_state = 12}, [2532] = {.lex_state = 53, .external_lex_state = 15}, - [2533] = {.lex_state = 53, .external_lex_state = 9}, - [2534] = {.lex_state = 53, .external_lex_state = 9}, - [2535] = {.lex_state = 53, .external_lex_state = 15}, - [2536] = {.lex_state = 53, .external_lex_state = 17}, - [2537] = {.lex_state = 53, .external_lex_state = 9}, - [2538] = {.lex_state = 53, .external_lex_state = 17}, - [2539] = {.lex_state = 53, .external_lex_state = 15}, + [2533] = {.lex_state = 53, .external_lex_state = 14}, + [2534] = {.lex_state = 53, .external_lex_state = 15}, + [2535] = {.lex_state = 53, .external_lex_state = 14}, + [2536] = {.lex_state = 53, .external_lex_state = 15}, + [2537] = {.lex_state = 53, .external_lex_state = 14}, + [2538] = {.lex_state = 53, .external_lex_state = 14}, + [2539] = {.lex_state = 53, .external_lex_state = 9}, [2540] = {.lex_state = 53, .external_lex_state = 14}, - [2541] = {.lex_state = 53, .external_lex_state = 17}, - [2542] = {.lex_state = 53, .external_lex_state = 17}, - [2543] = {.lex_state = 10, .external_lex_state = 15}, - [2544] = {.lex_state = 53, .external_lex_state = 9}, - [2545] = {.lex_state = 53, .external_lex_state = 9}, - [2546] = {.lex_state = 53, .external_lex_state = 17}, - [2547] = {.lex_state = 53, .external_lex_state = 15}, - [2548] = {.lex_state = 53, .external_lex_state = 14}, - [2549] = {.lex_state = 53, .external_lex_state = 14}, - [2550] = {.lex_state = 53, .external_lex_state = 14}, + [2541] = {.lex_state = 53, .external_lex_state = 14}, + [2542] = {.lex_state = 53, .external_lex_state = 12}, + [2543] = {.lex_state = 53, .external_lex_state = 15}, + [2544] = {.lex_state = 53, .external_lex_state = 15}, + [2545] = {.lex_state = 53, .external_lex_state = 14}, + [2546] = {.lex_state = 53, .external_lex_state = 13}, + [2547] = {.lex_state = 53, .external_lex_state = 13}, + [2548] = {.lex_state = 53, .external_lex_state = 17}, + [2549] = {.lex_state = 53, .external_lex_state = 15}, + [2550] = {.lex_state = 53, .external_lex_state = 13}, [2551] = {.lex_state = 53, .external_lex_state = 17}, - [2552] = {.lex_state = 53, .external_lex_state = 17}, - [2553] = {.lex_state = 53, .external_lex_state = 14}, + [2552] = {.lex_state = 53, .external_lex_state = 14}, + [2553] = {.lex_state = 53, .external_lex_state = 17}, [2554] = {.lex_state = 53, .external_lex_state = 9}, [2555] = {.lex_state = 53, .external_lex_state = 14}, - [2556] = {.lex_state = 53, .external_lex_state = 14}, + [2556] = {.lex_state = 53, .external_lex_state = 9}, [2557] = {.lex_state = 53, .external_lex_state = 17}, - [2558] = {.lex_state = 10, .external_lex_state = 15}, - [2559] = {.lex_state = 10, .external_lex_state = 15}, - [2560] = {.lex_state = 10, .external_lex_state = 15}, - [2561] = {.lex_state = 53, .external_lex_state = 15}, - [2562] = {.lex_state = 10, .external_lex_state = 15}, - [2563] = {.lex_state = 53, .external_lex_state = 14}, - [2564] = {.lex_state = 53, .external_lex_state = 17}, - [2565] = {.lex_state = 53, .external_lex_state = 12}, - [2566] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2558] = {.lex_state = 53, .external_lex_state = 17}, + [2559] = {.lex_state = 53, .external_lex_state = 13}, + [2560] = {.lex_state = 53, .external_lex_state = 17}, + [2561] = {.lex_state = 53, .external_lex_state = 17}, + [2562] = {.lex_state = 53, .external_lex_state = 17}, + [2563] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2564] = {.lex_state = 53, .external_lex_state = 15}, + [2565] = {.lex_state = 53, .external_lex_state = 9}, + [2566] = {.lex_state = 53, .external_lex_state = 15}, [2567] = {.lex_state = 53, .external_lex_state = 15}, - [2568] = {.lex_state = 53, .external_lex_state = 15}, - [2569] = {.lex_state = 53, .external_lex_state = 9}, - [2570] = {.lex_state = 53, .external_lex_state = 9}, - [2571] = {.lex_state = 53, .external_lex_state = 15}, - [2572] = {.lex_state = 53, .external_lex_state = 9}, - [2573] = {.lex_state = 53, .external_lex_state = 14}, + [2568] = {.lex_state = 53, .external_lex_state = 9}, + [2569] = {.lex_state = 53, .external_lex_state = 14}, + [2570] = {.lex_state = 53, .external_lex_state = 15}, + [2571] = {.lex_state = 53, .external_lex_state = 12}, + [2572] = {.lex_state = 53, .external_lex_state = 12}, + [2573] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2574] = {.lex_state = 53, .external_lex_state = 12}, - [2575] = {.lex_state = 53, .external_lex_state = 13}, - [2576] = {.lex_state = 53, .external_lex_state = 15}, - [2577] = {.lex_state = 53, .external_lex_state = 9}, - [2578] = {.lex_state = 53, .external_lex_state = 14}, - [2579] = {.lex_state = 53, .external_lex_state = 17}, - [2580] = {.lex_state = 53, .external_lex_state = 13}, - [2581] = {.lex_state = 53, .external_lex_state = 12}, - [2582] = {.lex_state = 53, .external_lex_state = 13}, + [2575] = {.lex_state = 53, .external_lex_state = 15}, + [2576] = {.lex_state = 53, .external_lex_state = 9}, + [2577] = {.lex_state = 53, .external_lex_state = 17}, + [2578] = {.lex_state = 53, .external_lex_state = 15}, + [2579] = {.lex_state = 53, .external_lex_state = 15}, + [2580] = {.lex_state = 53, .external_lex_state = 15}, + [2581] = {.lex_state = 53, .external_lex_state = 9}, + [2582] = {.lex_state = 53, .external_lex_state = 14}, [2583] = {.lex_state = 53, .external_lex_state = 17}, - [2584] = {.lex_state = 53, .external_lex_state = 12}, - [2585] = {.lex_state = 53, .external_lex_state = 15}, + [2584] = {.lex_state = 53, .external_lex_state = 9}, + [2585] = {.lex_state = 53, .external_lex_state = 9}, [2586] = {.lex_state = 53, .external_lex_state = 15}, - [2587] = {.lex_state = 53, .external_lex_state = 14}, - [2588] = {.lex_state = 53, .external_lex_state = 15}, - [2589] = {.lex_state = 10, .external_lex_state = 15}, - [2590] = {.lex_state = 53, .external_lex_state = 14}, + [2587] = {.lex_state = 53, .external_lex_state = 13}, + [2588] = {.lex_state = 53, .external_lex_state = 13}, + [2589] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2590] = {.lex_state = 53, .external_lex_state = 15}, [2591] = {.lex_state = 53, .external_lex_state = 9}, - [2592] = {.lex_state = 10, .external_lex_state = 15}, - [2593] = {.lex_state = 53, .external_lex_state = 12}, - [2594] = {.lex_state = 53, .external_lex_state = 13}, - [2595] = {.lex_state = 53, .external_lex_state = 15}, - [2596] = {.lex_state = 4, .external_lex_state = 15}, - [2597] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2598] = {.lex_state = 53, .external_lex_state = 14}, - [2599] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2600] = {.lex_state = 53, .external_lex_state = 14}, - [2601] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2602] = {.lex_state = 53, .external_lex_state = 15}, - [2603] = {.lex_state = 53, .external_lex_state = 12}, - [2604] = {.lex_state = 53, .external_lex_state = 13}, - [2605] = {.lex_state = 53, .external_lex_state = 15}, - [2606] = {.lex_state = 53, .external_lex_state = 12}, - [2607] = {.lex_state = 53, .external_lex_state = 13}, - [2608] = {.lex_state = 53, .external_lex_state = 15}, - [2609] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2610] = {.lex_state = 53, .external_lex_state = 14}, - [2611] = {.lex_state = 53, .external_lex_state = 14}, - [2612] = {.lex_state = 53, .external_lex_state = 12}, - [2613] = {.lex_state = 53, .external_lex_state = 15}, - [2614] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2592] = {.lex_state = 53, .external_lex_state = 15}, + [2593] = {.lex_state = 53, .external_lex_state = 9}, + [2594] = {.lex_state = 53, .external_lex_state = 9}, + [2595] = {.lex_state = 53, .external_lex_state = 14}, + [2596] = {.lex_state = 53, .external_lex_state = 15}, + [2597] = {.lex_state = 53, .external_lex_state = 12}, + [2598] = {.lex_state = 53, .external_lex_state = 17}, + [2599] = {.lex_state = 53, .external_lex_state = 14}, + [2600] = {.lex_state = 53, .external_lex_state = 9}, + [2601] = {.lex_state = 10, .external_lex_state = 15}, + [2602] = {.lex_state = 53, .external_lex_state = 14}, + [2603] = {.lex_state = 53, .external_lex_state = 14}, + [2604] = {.lex_state = 53, .external_lex_state = 14}, + [2605] = {.lex_state = 53, .external_lex_state = 14}, + [2606] = {.lex_state = 10, .external_lex_state = 15}, + [2607] = {.lex_state = 10, .external_lex_state = 15}, + [2608] = {.lex_state = 53, .external_lex_state = 13}, + [2609] = {.lex_state = 10, .external_lex_state = 15}, + [2610] = {.lex_state = 10, .external_lex_state = 15}, + [2611] = {.lex_state = 10, .external_lex_state = 15}, + [2612] = {.lex_state = 53, .external_lex_state = 17}, + [2613] = {.lex_state = 10, .external_lex_state = 15}, + [2614] = {.lex_state = 53, .external_lex_state = 13}, [2615] = {.lex_state = 53, .external_lex_state = 13}, - [2616] = {.lex_state = 53, .external_lex_state = 13}, - [2617] = {.lex_state = 53, .external_lex_state = 15}, - [2618] = {.lex_state = 53, .external_lex_state = 14}, - [2619] = {.lex_state = 53, .external_lex_state = 14}, - [2620] = {.lex_state = 53, .external_lex_state = 13}, - [2621] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2622] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2623] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2624] = {.lex_state = 53, .external_lex_state = 13}, - [2625] = {.lex_state = 4, .external_lex_state = 15}, - [2626] = {.lex_state = 53, .external_lex_state = 12}, - [2627] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2628] = {.lex_state = 53, .external_lex_state = 15}, + [2616] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2617] = {.lex_state = 10, .external_lex_state = 15}, + [2618] = {.lex_state = 53, .external_lex_state = 15}, + [2619] = {.lex_state = 53, .external_lex_state = 9}, + [2620] = {.lex_state = 53, .external_lex_state = 14}, + [2621] = {.lex_state = 53, .external_lex_state = 14}, + [2622] = {.lex_state = 53, .external_lex_state = 17}, + [2623] = {.lex_state = 53, .external_lex_state = 14}, + [2624] = {.lex_state = 53, .external_lex_state = 17}, + [2625] = {.lex_state = 53, .external_lex_state = 15}, + [2626] = {.lex_state = 53, .external_lex_state = 17}, + [2627] = {.lex_state = 53, .external_lex_state = 17}, + [2628] = {.lex_state = 53, .external_lex_state = 17}, [2629] = {.lex_state = 53, .external_lex_state = 12}, - [2630] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2631] = {.lex_state = 53, .external_lex_state = 15}, + [2630] = {.lex_state = 10, .external_lex_state = 15}, + [2631] = {.lex_state = 53, .external_lex_state = 9}, [2632] = {.lex_state = 53, .external_lex_state = 15}, - [2633] = {.lex_state = 53, .external_lex_state = 14}, - [2634] = {.lex_state = 53, .external_lex_state = 15}, - [2635] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2633] = {.lex_state = 53, .external_lex_state = 15}, + [2634] = {.lex_state = 53, .external_lex_state = 14}, + [2635] = {.lex_state = 53, .external_lex_state = 15}, [2636] = {.lex_state = 53, .external_lex_state = 14}, - [2637] = {.lex_state = 53, .external_lex_state = 12}, + [2637] = {.lex_state = 53, .external_lex_state = 15}, [2638] = {.lex_state = 53, .external_lex_state = 15}, [2639] = {.lex_state = 53, .external_lex_state = 15}, [2640] = {.lex_state = 53, .external_lex_state = 15}, - [2641] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2642] = {.lex_state = 53, .external_lex_state = 13}, - [2643] = {.lex_state = 53, .external_lex_state = 13}, - [2644] = {.lex_state = 53, .external_lex_state = 14}, - [2645] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2646] = {.lex_state = 53, .external_lex_state = 12}, - [2647] = {.lex_state = 4, .external_lex_state = 15}, - [2648] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2649] = {.lex_state = 53, .external_lex_state = 13}, - [2650] = {.lex_state = 53, .external_lex_state = 12}, - [2651] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2652] = {.lex_state = 53, .external_lex_state = 14}, - [2653] = {.lex_state = 4, .external_lex_state = 15}, - [2654] = {.lex_state = 53, .external_lex_state = 13}, - [2655] = {.lex_state = 53, .external_lex_state = 13}, - [2656] = {.lex_state = 53, .external_lex_state = 14}, - [2657] = {.lex_state = 53, .external_lex_state = 13}, - [2658] = {.lex_state = 53, .external_lex_state = 12}, - [2659] = {.lex_state = 53, .external_lex_state = 14}, - [2660] = {.lex_state = 53, .external_lex_state = 15}, - [2661] = {.lex_state = 53, .external_lex_state = 13}, - [2662] = {.lex_state = 53, .external_lex_state = 13}, - [2663] = {.lex_state = 53, .external_lex_state = 12}, + [2641] = {.lex_state = 10, .external_lex_state = 15}, + [2642] = {.lex_state = 53, .external_lex_state = 15}, + [2643] = {.lex_state = 53, .external_lex_state = 17}, + [2644] = {.lex_state = 53, .external_lex_state = 9}, + [2645] = {.lex_state = 53, .external_lex_state = 9}, + [2646] = {.lex_state = 53, .external_lex_state = 9}, + [2647] = {.lex_state = 53, .external_lex_state = 9}, + [2648] = {.lex_state = 53, .external_lex_state = 15}, + [2649] = {.lex_state = 53, .external_lex_state = 15}, + [2650] = {.lex_state = 53, .external_lex_state = 15}, + [2651] = {.lex_state = 4, .external_lex_state = 15}, + [2652] = {.lex_state = 53, .external_lex_state = 15}, + [2653] = {.lex_state = 53, .external_lex_state = 15}, + [2654] = {.lex_state = 53, .external_lex_state = 15}, + [2655] = {.lex_state = 53, .external_lex_state = 14}, + [2656] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2657] = {.lex_state = 53, .external_lex_state = 12}, + [2658] = {.lex_state = 53, .external_lex_state = 13}, + [2659] = {.lex_state = 53, .external_lex_state = 12}, + [2660] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2661] = {.lex_state = 53, .external_lex_state = 15}, + [2662] = {.lex_state = 53, .external_lex_state = 12}, + [2663] = {.lex_state = 53, .external_lex_state = 15}, [2664] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2665] = {.lex_state = 53, .external_lex_state = 13}, - [2666] = {.lex_state = 53, .external_lex_state = 15}, - [2667] = {.lex_state = 53, .external_lex_state = 15}, - [2668] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2669] = {.lex_state = 53, .external_lex_state = 13}, - [2670] = {.lex_state = 4, .external_lex_state = 15}, - [2671] = {.lex_state = 53, .external_lex_state = 13}, - [2672] = {.lex_state = 53, .external_lex_state = 14}, - [2673] = {.lex_state = 53, .external_lex_state = 15}, - [2674] = {.lex_state = 53, .external_lex_state = 15}, - [2675] = {.lex_state = 4, .external_lex_state = 15}, - [2676] = {.lex_state = 53, .external_lex_state = 13}, + [2665] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2666] = {.lex_state = 53, .external_lex_state = 14}, + [2667] = {.lex_state = 53, .external_lex_state = 13}, + [2668] = {.lex_state = 53, .external_lex_state = 12}, + [2669] = {.lex_state = 53, .external_lex_state = 15}, + [2670] = {.lex_state = 53, .external_lex_state = 12}, + [2671] = {.lex_state = 53, .external_lex_state = 12}, + [2672] = {.lex_state = 53, .external_lex_state = 12}, + [2673] = {.lex_state = 53, .external_lex_state = 14}, + [2674] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2675] = {.lex_state = 53, .external_lex_state = 14}, + [2676] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2677] = {.lex_state = 53, .external_lex_state = 13}, [2678] = {.lex_state = 53, .external_lex_state = 15}, - [2679] = {.lex_state = 53, .external_lex_state = 13}, - [2680] = {.lex_state = 53, .external_lex_state = 15}, + [2679] = {.lex_state = 53, .external_lex_state = 14}, + [2680] = {.lex_state = 53, .external_lex_state = 12}, [2681] = {.lex_state = 53, .external_lex_state = 15}, - [2682] = {.lex_state = 53, .external_lex_state = 15}, - [2683] = {.lex_state = 53, .external_lex_state = 14}, - [2684] = {.lex_state = 53, .external_lex_state = 15}, - [2685] = {.lex_state = 53, .external_lex_state = 13}, - [2686] = {.lex_state = 53, .external_lex_state = 15}, + [2682] = {.lex_state = 53, .external_lex_state = 14}, + [2683] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2684] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2685] = {.lex_state = 53, .external_lex_state = 14}, + [2686] = {.lex_state = 53, .external_lex_state = 12}, [2687] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2688] = {.lex_state = 53, .external_lex_state = 15}, - [2689] = {.lex_state = 53, .external_lex_state = 14}, - [2690] = {.lex_state = 53, .external_lex_state = 15}, + [2688] = {.lex_state = 53, .external_lex_state = 14}, + [2689] = {.lex_state = 53, .external_lex_state = 12}, + [2690] = {.lex_state = 53, .external_lex_state = 12}, [2691] = {.lex_state = 53, .external_lex_state = 15}, - [2692] = {.lex_state = 53, .external_lex_state = 15}, - [2693] = {.lex_state = 53, .external_lex_state = 14}, - [2694] = {.lex_state = 53, .external_lex_state = 14}, - [2695] = {.lex_state = 53, .external_lex_state = 15}, + [2692] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2693] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2694] = {.lex_state = 4, .external_lex_state = 15}, + [2695] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2696] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2697] = {.lex_state = 53, .external_lex_state = 14}, - [2698] = {.lex_state = 53, .external_lex_state = 12}, - [2699] = {.lex_state = 53, .external_lex_state = 12}, - [2700] = {.lex_state = 53, .external_lex_state = 13}, - [2701] = {.lex_state = 53, .external_lex_state = 15}, - [2702] = {.lex_state = 53, .external_lex_state = 13}, - [2703] = {.lex_state = 53, .external_lex_state = 15}, - [2704] = {.lex_state = 53, .external_lex_state = 13}, - [2705] = {.lex_state = 53, .external_lex_state = 13}, + [2697] = {.lex_state = 53, .external_lex_state = 15}, + [2698] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2699] = {.lex_state = 53, .external_lex_state = 13}, + [2700] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2701] = {.lex_state = 53, .external_lex_state = 13}, + [2702] = {.lex_state = 53, .external_lex_state = 14}, + [2703] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2704] = {.lex_state = 53, .external_lex_state = 12}, + [2705] = {.lex_state = 53, .external_lex_state = 14}, [2706] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2707] = {.lex_state = 53, .external_lex_state = 14}, - [2708] = {.lex_state = 53, .external_lex_state = 13}, - [2709] = {.lex_state = 53, .external_lex_state = 13}, - [2710] = {.lex_state = 53, .external_lex_state = 13}, - [2711] = {.lex_state = 53, .external_lex_state = 13}, - [2712] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2707] = {.lex_state = 53, .external_lex_state = 15}, + [2708] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2709] = {.lex_state = 53, .external_lex_state = 15}, + [2710] = {.lex_state = 53, .external_lex_state = 12}, + [2711] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2712] = {.lex_state = 53, .external_lex_state = 14}, [2713] = {.lex_state = 53, .external_lex_state = 15}, - [2714] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2715] = {.lex_state = 53, .external_lex_state = 14}, - [2716] = {.lex_state = 53, .external_lex_state = 15}, - [2717] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2718] = {.lex_state = 53, .external_lex_state = 15}, - [2719] = {.lex_state = 53, .external_lex_state = 14}, - [2720] = {.lex_state = 53, .external_lex_state = 15}, - [2721] = {.lex_state = 53, .external_lex_state = 14}, - [2722] = {.lex_state = 53, .external_lex_state = 12}, + [2714] = {.lex_state = 4, .external_lex_state = 15}, + [2715] = {.lex_state = 53, .external_lex_state = 15}, + [2716] = {.lex_state = 53, .external_lex_state = 12}, + [2717] = {.lex_state = 53, .external_lex_state = 15}, + [2718] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2719] = {.lex_state = 53, .external_lex_state = 12}, + [2720] = {.lex_state = 53, .external_lex_state = 12}, + [2721] = {.lex_state = 53, .external_lex_state = 12}, + [2722] = {.lex_state = 53, .external_lex_state = 14}, [2723] = {.lex_state = 53, .external_lex_state = 15}, - [2724] = {.lex_state = 53, .external_lex_state = 12}, - [2725] = {.lex_state = 53, .external_lex_state = 15}, - [2726] = {.lex_state = 53, .external_lex_state = 15}, - [2727] = {.lex_state = 53, .external_lex_state = 14}, - [2728] = {.lex_state = 53, .external_lex_state = 13}, - [2729] = {.lex_state = 53, .external_lex_state = 13}, - [2730] = {.lex_state = 53, .external_lex_state = 15}, + [2724] = {.lex_state = 53, .external_lex_state = 15}, + [2725] = {.lex_state = 53, .external_lex_state = 14}, + [2726] = {.lex_state = 4, .external_lex_state = 15}, + [2727] = {.lex_state = 53, .external_lex_state = 13}, + [2728] = {.lex_state = 53, .external_lex_state = 14}, + [2729] = {.lex_state = 53, .external_lex_state = 15}, + [2730] = {.lex_state = 53, .external_lex_state = 13}, [2731] = {.lex_state = 53, .external_lex_state = 15}, - [2732] = {.lex_state = 53, .external_lex_state = 12}, - [2733] = {.lex_state = 53, .external_lex_state = 14}, - [2734] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2732] = {.lex_state = 53, .external_lex_state = 14}, + [2733] = {.lex_state = 53, .external_lex_state = 15}, + [2734] = {.lex_state = 53, .external_lex_state = 13}, [2735] = {.lex_state = 53, .external_lex_state = 15}, - [2736] = {.lex_state = 53, .external_lex_state = 14}, - [2737] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2738] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2739] = {.lex_state = 53, .external_lex_state = 12}, - [2740] = {.lex_state = 53, .external_lex_state = 15}, + [2736] = {.lex_state = 53, .external_lex_state = 13}, + [2737] = {.lex_state = 53, .external_lex_state = 15}, + [2738] = {.lex_state = 53, .external_lex_state = 15}, + [2739] = {.lex_state = 53, .external_lex_state = 15}, + [2740] = {.lex_state = 53, .external_lex_state = 13}, [2741] = {.lex_state = 53, .external_lex_state = 15}, - [2742] = {.lex_state = 53, .external_lex_state = 13}, + [2742] = {.lex_state = 53, .external_lex_state = 12}, [2743] = {.lex_state = 53, .external_lex_state = 15}, - [2744] = {.lex_state = 53, .external_lex_state = 13}, + [2744] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2745] = {.lex_state = 53, .external_lex_state = 15}, - [2746] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2747] = {.lex_state = 53, .external_lex_state = 12}, - [2748] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2749] = {.lex_state = 53, .external_lex_state = 13}, - [2750] = {.lex_state = 53, .external_lex_state = 12}, - [2751] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2752] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2753] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2754] = {.lex_state = 53, .external_lex_state = 13}, - [2755] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2746] = {.lex_state = 53, .external_lex_state = 12}, + [2747] = {.lex_state = 53, .external_lex_state = 15}, + [2748] = {.lex_state = 53, .external_lex_state = 15}, + [2749] = {.lex_state = 53, .external_lex_state = 14}, + [2750] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2751] = {.lex_state = 53, .external_lex_state = 12}, + [2752] = {.lex_state = 4, .external_lex_state = 15}, + [2753] = {.lex_state = 53, .external_lex_state = 15}, + [2754] = {.lex_state = 53, .external_lex_state = 12}, + [2755] = {.lex_state = 53, .external_lex_state = 14}, [2756] = {.lex_state = 53, .external_lex_state = 14}, [2757] = {.lex_state = 53, .external_lex_state = 15}, - [2758] = {.lex_state = 53, .external_lex_state = 13}, - [2759] = {.lex_state = 53, .external_lex_state = 14}, + [2758] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2759] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2760] = {.lex_state = 53, .external_lex_state = 15}, - [2761] = {.lex_state = 53, .external_lex_state = 12}, - [2762] = {.lex_state = 4, .external_lex_state = 15}, - [2763] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2764] = {.lex_state = 4, .external_lex_state = 15}, - [2765] = {.lex_state = 53, .external_lex_state = 15}, - [2766] = {.lex_state = 53, .external_lex_state = 13}, - [2767] = {.lex_state = 53, .external_lex_state = 13}, - [2768] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2769] = {.lex_state = 53, .external_lex_state = 14}, - [2770] = {.lex_state = 53, .external_lex_state = 14}, - [2771] = {.lex_state = 53, .external_lex_state = 14}, - [2772] = {.lex_state = 53, .external_lex_state = 15}, - [2773] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2774] = {.lex_state = 53, .external_lex_state = 14}, + [2761] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2762] = {.lex_state = 53, .external_lex_state = 14}, + [2763] = {.lex_state = 53, .external_lex_state = 13}, + [2764] = {.lex_state = 53, .external_lex_state = 12}, + [2765] = {.lex_state = 53, .external_lex_state = 12}, + [2766] = {.lex_state = 53, .external_lex_state = 12}, + [2767] = {.lex_state = 53, .external_lex_state = 14}, + [2768] = {.lex_state = 53, .external_lex_state = 13}, + [2769] = {.lex_state = 53, .external_lex_state = 13}, + [2770] = {.lex_state = 53, .external_lex_state = 15}, + [2771] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2772] = {.lex_state = 53, .external_lex_state = 13}, + [2773] = {.lex_state = 53, .external_lex_state = 15}, + [2774] = {.lex_state = 53, .external_lex_state = 12}, [2775] = {.lex_state = 53, .external_lex_state = 15}, - [2776] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2777] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2778] = {.lex_state = 53, .external_lex_state = 13}, - [2779] = {.lex_state = 53, .external_lex_state = 15}, + [2776] = {.lex_state = 53, .external_lex_state = 12}, + [2777] = {.lex_state = 53, .external_lex_state = 15}, + [2778] = {.lex_state = 53, .external_lex_state = 15}, + [2779] = {.lex_state = 53, .external_lex_state = 14}, [2780] = {.lex_state = 53, .external_lex_state = 15}, - [2781] = {.lex_state = 53, .external_lex_state = 15}, - [2782] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2783] = {.lex_state = 53, .external_lex_state = 15}, + [2781] = {.lex_state = 53, .external_lex_state = 13}, + [2782] = {.lex_state = 53, .external_lex_state = 12}, + [2783] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, [2784] = {.lex_state = 53, .external_lex_state = 15}, - [2785] = {.lex_state = 53, .external_lex_state = 14}, - [2786] = {.lex_state = 53, .external_lex_state = 15}, - [2787] = {.lex_state = 53, .external_lex_state = 12}, + [2785] = {.lex_state = 53, .external_lex_state = 12}, + [2786] = {.lex_state = 53, .external_lex_state = 14}, + [2787] = {.lex_state = 53, .external_lex_state = 13}, + [2788] = {.lex_state = 53, .external_lex_state = 14}, + [2789] = {.lex_state = 53, .external_lex_state = 13}, + [2790] = {.lex_state = 53, .external_lex_state = 12}, + [2791] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2792] = {.lex_state = 53, .external_lex_state = 15}, + [2793] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2794] = {.lex_state = 53, .external_lex_state = 14}, + [2795] = {.lex_state = 53, .external_lex_state = 15}, + [2796] = {.lex_state = 53, .external_lex_state = 15}, + [2797] = {.lex_state = 4, .external_lex_state = 15}, + [2798] = {.lex_state = 53, .external_lex_state = 14}, + [2799] = {.lex_state = 53, .external_lex_state = 15}, + [2800] = {.lex_state = 53, .external_lex_state = 14}, + [2801] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2802] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2803] = {.lex_state = 53, .external_lex_state = 14}, + [2804] = {.lex_state = 53, .external_lex_state = 13}, + [2805] = {.lex_state = 4, .external_lex_state = 15}, + [2806] = {.lex_state = 53, .external_lex_state = 15}, + [2807] = {.lex_state = 53, .external_lex_state = 12}, + [2808] = {.lex_state = 53, .external_lex_state = 13}, + [2809] = {.lex_state = 53, .external_lex_state = 14}, + [2810] = {.lex_state = 53, .external_lex_state = 12}, + [2811] = {.lex_state = 53, .external_lex_state = 15}, + [2812] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2813] = {.lex_state = 53, .external_lex_state = 15}, + [2814] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2815] = {.lex_state = 53, .external_lex_state = 12}, + [2816] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2817] = {.lex_state = 53, .external_lex_state = 15}, + [2818] = {.lex_state = 53, .external_lex_state = 12}, + [2819] = {.lex_state = 53, .external_lex_state = 12}, + [2820] = {.lex_state = 53, .external_lex_state = 14}, + [2821] = {.lex_state = 53, .external_lex_state = 12}, + [2822] = {.lex_state = 53, .external_lex_state = 14}, + [2823] = {.lex_state = 53, .external_lex_state = 15}, + [2824] = {.lex_state = 53, .external_lex_state = 14}, + [2825] = {.lex_state = 53, .external_lex_state = 12}, + [2826] = {.lex_state = 4, .external_lex_state = 15}, + [2827] = {.lex_state = 53, .external_lex_state = 12}, + [2828] = {.lex_state = 53, .external_lex_state = 15}, + [2829] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2830] = {.lex_state = 53, .external_lex_state = 13}, + [2831] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2832] = {.lex_state = 53, .external_lex_state = 12}, + [2833] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2834] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2835] = {.lex_state = 53, .external_lex_state = 14}, + [2836] = {.lex_state = 53, .external_lex_state = 15}, + [2837] = {.lex_state = 53, .external_lex_state = 15}, + [2838] = {.lex_state = 53, .external_lex_state = 15}, + [2839] = {.lex_state = 53, .external_lex_state = 13}, + [2840] = {.lex_state = 53, .external_lex_state = 15}, + [2841] = {.lex_state = 53, .external_lex_state = 15}, + [2842] = {.lex_state = 53, .external_lex_state = 12}, + [2843] = {.lex_state = 53, .external_lex_state = 12}, + [2844] = {.lex_state = 53, .external_lex_state = 15}, }; static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { @@ -10757,73 +10908,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_module] = STATE(2695), - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [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(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1788), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1788), + [sym_module] = STATE(2778), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1872), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1872), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10872,73 +11023,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(2)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(761), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(673), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10987,73 +11138,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(3)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(490), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(704), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11098,77 +11249,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(4)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(615), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(577), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11217,73 +11368,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(5)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(698), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(620), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11332,73 +11483,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(6)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(751), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(720), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11447,73 +11598,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(7)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(753), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(787), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11562,73 +11713,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(8)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(771), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(805), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11677,73 +11828,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(9)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(786), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(760), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11792,73 +11943,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(10)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(789), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(769), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11907,73 +12058,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(11)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(791), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(771), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12022,73 +12173,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(12)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(797), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(774), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12137,73 +12288,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(13)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(712), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(779), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12252,73 +12403,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(14)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(719), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(697), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12367,73 +12518,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(15)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(680), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(723), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12482,73 +12633,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(16)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(804), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(684), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12597,73 +12748,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(17)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(807), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(783), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12712,73 +12863,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(18)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(809), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(788), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12827,73 +12978,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(19)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(790), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12942,73 +13093,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(20)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(816), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(705), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13057,73 +13208,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(21)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(666), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(794), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13172,73 +13323,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(22)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(668), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(685), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13287,73 +13438,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(23)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(820), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(675), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13402,73 +13553,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(24)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(709), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(803), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13517,73 +13668,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(25)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2499), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(711), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13628,77 +13779,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [STATE(26)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(812), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(2551), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13743,77 +13894,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(27)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(669), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(811), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13862,73 +14013,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(28)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(654), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(665), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13977,73 +14128,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(29)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(833), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(671), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14092,73 +14243,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(30)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2536), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14203,77 +14354,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [STATE(31)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2541), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(2624), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14318,77 +14469,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(32)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(661), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(2627), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14433,77 +14584,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(33)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(653), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(822), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14552,73 +14703,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(34)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2552), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(674), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14663,77 +14814,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [STATE(35)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [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(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(670), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(2612), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14778,77 +14929,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(36)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2564), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(696), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14893,27 +15044,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [STATE(37)] = { [sym__statement] = STATE(73), [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), [sym_if_statement] = STATE(73), [sym_match_statement] = STATE(73), [sym_for_statement] = STATE(73), @@ -14921,49 +15072,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(73), [sym_with_statement] = STATE(73), [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), [sym_class_definition] = STATE(73), [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(834), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(2583), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15012,73 +15163,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(38)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(737), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(762), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15123,77 +15274,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(39)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(725), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(829), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15238,77 +15389,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(40)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(757), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(768), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15353,77 +15504,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(41)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(762), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(735), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15468,77 +15619,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(42)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(767), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(737), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15583,77 +15734,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(43)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(778), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(744), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15698,77 +15849,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(44)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(708), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(752), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15813,77 +15964,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(45)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(721), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(703), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15928,77 +16079,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(46)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(662), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(725), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16043,77 +16194,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(47)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(818), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(670), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16158,77 +16309,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(48)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(825), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(777), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16273,77 +16424,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(49)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(829), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(797), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16388,77 +16539,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(50)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(693), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(852), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16503,77 +16654,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(51)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(730), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(717), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16618,77 +16769,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(52)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(818), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16733,77 +16884,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(53)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(664), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(678), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16848,77 +16999,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(54)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(774), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(681), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16963,77 +17114,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(55)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(696), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(838), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17078,77 +17229,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(56)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(801), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(708), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17193,77 +17344,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(57)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(688), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(732), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17308,77 +17459,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(58)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(658), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(688), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17423,77 +17574,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(59)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(726), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(694), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17538,77 +17689,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(60)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(727), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(741), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17653,77 +17804,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(61)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(681), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(742), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17768,77 +17919,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(62)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(673), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(677), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17883,77 +18034,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(63)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(656), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(662), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17998,77 +18149,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(64)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(480), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(664), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18113,77 +18264,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(65)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(603), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18228,77 +18379,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(66)] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(701), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(615), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18343,77 +18494,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(67)] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1798), - [sym_block] = STATE(2551), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1869), + [sym_block] = STATE(2561), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18458,76 +18609,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(68)] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [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(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1872), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1872), + [ts_builtin_sym_end] = ACTIONS(107), + [sym_identifier] = ACTIONS(109), + [anon_sym_import] = ACTIONS(112), + [anon_sym_from] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_print] = ACTIONS(124), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_return] = ACTIONS(130), + [anon_sym_del] = ACTIONS(133), + [anon_sym_raise] = ACTIONS(136), + [anon_sym_pass] = ACTIONS(139), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_if] = ACTIONS(148), + [anon_sym_match] = ACTIONS(151), + [anon_sym_async] = ACTIONS(154), + [anon_sym_for] = ACTIONS(157), + [anon_sym_while] = ACTIONS(160), + [anon_sym_try] = ACTIONS(163), + [anon_sym_with] = ACTIONS(166), + [anon_sym_def] = ACTIONS(169), + [anon_sym_global] = ACTIONS(172), + [anon_sym_nonlocal] = ACTIONS(175), + [anon_sym_exec] = ACTIONS(178), + [anon_sym_type] = ACTIONS(181), + [anon_sym_class] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(193), + [anon_sym_not] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_lambda] = ACTIONS(202), + [anon_sym_yield] = ACTIONS(205), + [sym_ellipsis] = ACTIONS(208), + [sym_integer] = ACTIONS(211), + [sym_float] = ACTIONS(208), + [anon_sym_await] = ACTIONS(214), + [sym_true] = ACTIONS(211), + [sym_false] = ACTIONS(211), + [sym_none] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(217), + }, + [STATE(69)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [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(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1869), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1869), + [sym_identifier] = ACTIONS(109), + [anon_sym_import] = ACTIONS(112), + [anon_sym_from] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(121), + [anon_sym_print] = ACTIONS(124), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_return] = ACTIONS(130), + [anon_sym_del] = ACTIONS(133), + [anon_sym_raise] = ACTIONS(136), + [anon_sym_pass] = ACTIONS(139), + [anon_sym_break] = ACTIONS(142), + [anon_sym_continue] = ACTIONS(145), + [anon_sym_if] = ACTIONS(220), + [anon_sym_match] = ACTIONS(223), + [anon_sym_async] = ACTIONS(226), + [anon_sym_for] = ACTIONS(229), + [anon_sym_while] = ACTIONS(232), + [anon_sym_try] = ACTIONS(235), + [anon_sym_with] = ACTIONS(238), + [anon_sym_def] = ACTIONS(241), + [anon_sym_global] = ACTIONS(172), + [anon_sym_nonlocal] = ACTIONS(175), + [anon_sym_exec] = ACTIONS(178), + [anon_sym_type] = ACTIONS(181), + [anon_sym_class] = ACTIONS(244), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(193), + [anon_sym_not] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_lambda] = ACTIONS(202), + [anon_sym_yield] = ACTIONS(205), + [sym_ellipsis] = ACTIONS(208), + [sym_integer] = ACTIONS(211), + [sym_float] = ACTIONS(208), + [anon_sym_await] = ACTIONS(214), + [sym_true] = ACTIONS(211), + [sym_false] = ACTIONS(211), + [sym_none] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(217), + }, + [STATE(70)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [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(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1872), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1872), + [ts_builtin_sym_end] = ACTIONS(247), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18541,19 +18921,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [anon_sym_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_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -18572,77 +18952,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [STATE(69)] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1788), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1788), - [ts_builtin_sym_end] = ACTIONS(109), + [STATE(71)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [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(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1869), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18656,19 +19034,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), + [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -18687,75 +19065,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(81), }, - [STATE(70)] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [STATE(72)] = { + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [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(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1869), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18800,304 +19179,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(81), }, - [STATE(71)] = { - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1788), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1788), - [ts_builtin_sym_end] = ACTIONS(113), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(154), - [anon_sym_match] = ACTIONS(157), - [anon_sym_async] = ACTIONS(160), - [anon_sym_for] = ACTIONS(163), - [anon_sym_while] = ACTIONS(166), - [anon_sym_try] = ACTIONS(169), - [anon_sym_with] = ACTIONS(172), - [anon_sym_def] = ACTIONS(175), - [anon_sym_global] = ACTIONS(178), - [anon_sym_nonlocal] = ACTIONS(181), - [anon_sym_exec] = ACTIONS(184), - [anon_sym_type] = ACTIONS(187), - [anon_sym_class] = ACTIONS(190), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_AT] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_not] = ACTIONS(205), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_lambda] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(211), - [sym_ellipsis] = ACTIONS(214), - [sym_integer] = ACTIONS(217), - [sym_float] = ACTIONS(214), - [anon_sym_await] = ACTIONS(220), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_none] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(223), - }, - [STATE(72)] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), - [sym_identifier] = ACTIONS(115), - [anon_sym_import] = ACTIONS(118), - [anon_sym_from] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_print] = ACTIONS(130), - [anon_sym_assert] = ACTIONS(133), - [anon_sym_return] = ACTIONS(136), - [anon_sym_del] = ACTIONS(139), - [anon_sym_raise] = ACTIONS(142), - [anon_sym_pass] = ACTIONS(145), - [anon_sym_break] = ACTIONS(148), - [anon_sym_continue] = ACTIONS(151), - [anon_sym_if] = ACTIONS(226), - [anon_sym_match] = ACTIONS(229), - [anon_sym_async] = ACTIONS(232), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(238), - [anon_sym_try] = ACTIONS(241), - [anon_sym_with] = ACTIONS(244), - [anon_sym_def] = ACTIONS(247), - [anon_sym_global] = ACTIONS(178), - [anon_sym_nonlocal] = ACTIONS(181), - [anon_sym_exec] = ACTIONS(184), - [anon_sym_type] = ACTIONS(187), - [anon_sym_class] = ACTIONS(250), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_AT] = ACTIONS(196), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(202), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_not] = ACTIONS(205), - [anon_sym_TILDE] = ACTIONS(199), - [anon_sym_lambda] = ACTIONS(208), - [anon_sym_yield] = ACTIONS(211), - [sym_ellipsis] = ACTIONS(214), - [sym_integer] = ACTIONS(217), - [sym_float] = ACTIONS(214), - [anon_sym_await] = ACTIONS(220), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_none] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), - [sym_string_start] = ACTIONS(223), - }, [STATE(73)] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1798), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1798), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [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(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1869), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1869), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19146,280 +19297,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(74)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), - [sym_type_parameter] = STATE(2095), - [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_type] = STATE(2236), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(267), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(274), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(282), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(286), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), - }, - [STATE(75)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), - [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_type] = STATE(2236), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), + [sym__simple_statements] = STATE(785), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(267), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(282), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), - }, - [STATE(76)] = { - [sym__simple_statements] = STATE(806), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19427,14 +19369,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19445,82 +19387,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(335), - [sym__indent] = ACTIONS(337), + [sym__newline] = ACTIONS(277), + [sym__indent] = ACTIONS(279), [sym_string_start] = ACTIONS(81), }, - [STATE(77)] = { - [sym__simple_statements] = STATE(821), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [STATE(75)] = { + [sym__simple_statements] = STATE(793), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19528,14 +19470,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19546,82 +19488,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(339), - [sym__indent] = ACTIONS(341), + [sym__newline] = ACTIONS(281), + [sym__indent] = ACTIONS(283), [sym_string_start] = ACTIONS(81), }, - [STATE(78)] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [STATE(76)] = { + [sym__simple_statements] = STATE(812), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19629,14 +19571,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19647,82 +19589,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), + [sym__newline] = ACTIONS(285), + [sym__indent] = ACTIONS(287), [sym_string_start] = ACTIONS(81), }, - [STATE(79)] = { - [sym__simple_statements] = STATE(735), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [STATE(77)] = { + [sym__simple_statements] = STATE(804), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19730,14 +19672,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19748,82 +19690,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), + [sym__newline] = ACTIONS(289), + [sym__indent] = ACTIONS(291), [sym_string_start] = ACTIONS(81), }, - [STATE(80)] = { - [sym__simple_statements] = STATE(823), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [STATE(78)] = { + [sym__simple_statements] = STATE(840), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19831,14 +19773,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19849,82 +19791,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), + [sym__newline] = ACTIONS(293), + [sym__indent] = ACTIONS(295), [sym_string_start] = ACTIONS(81), }, - [STATE(81)] = { - [sym__simple_statements] = STATE(738), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [STATE(79)] = { + [sym__simple_statements] = STATE(815), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19932,14 +19874,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19950,82 +19892,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__newline] = ACTIONS(297), + [sym__indent] = ACTIONS(299), [sym_string_start] = ACTIONS(81), }, - [STATE(82)] = { - [sym__simple_statements] = STATE(783), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [STATE(80)] = { + [sym__simple_statements] = STATE(786), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -20033,14 +19975,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -20051,82 +19993,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(301), + [sym__indent] = ACTIONS(303), [sym_string_start] = ACTIONS(81), }, - [STATE(83)] = { - [sym__simple_statements] = STATE(802), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(641), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1740), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1085), - [sym_type] = STATE(2074), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(313), + [STATE(81)] = { + [sym__simple_statements] = STATE(733), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(628), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(649), + [sym_subscript] = STATE(649), + [sym_call] = STATE(1076), + [sym_type] = STATE(2131), + [sym_splat_type] = STATE(2045), + [sym_generic_type] = STATE(2045), + [sym_union_type] = STATE(2045), + [sym_constrained_type] = STATE(2045), + [sym_member_type] = STATE(2045), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(255), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_STAR] = ACTIONS(317), - [anon_sym_print] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_print] = ACTIONS(261), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -20134,14 +20076,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(321), - [anon_sym_async] = ACTIONS(323), - [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_match] = ACTIONS(263), + [anon_sym_async] = ACTIONS(265), + [anon_sym_STAR_STAR] = ACTIONS(267), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(327), - [anon_sym_type] = ACTIONS(329), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_exec] = ACTIONS(269), + [anon_sym_type] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(273), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -20152,464 +20094,652 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), + [anon_sym_await] = ACTIONS(275), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), + [sym__newline] = ACTIONS(305), + [sym__indent] = ACTIONS(307), [sym_string_start] = ACTIONS(81), }, - [STATE(84)] = { - [sym_chevron] = STATE(2114), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_list_splat_pattern] = STATE(1077), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(859), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_print] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(379), - [anon_sym_async] = ACTIONS(375), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(375), - [anon_sym_type] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(259), + [STATE(82)] = { + [sym_chevron] = STATE(2218), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_list_splat_pattern] = STATE(1137), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(865), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_attribute] = STATE(1076), + [sym_subscript] = STATE(1076), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_print] = ACTIONS(324), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(330), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(324), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(324), + [anon_sym_type] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(340), + [anon_sym_PIPE] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_not] = ACTIONS(387), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_not] = ACTIONS(343), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), + [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(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(390), + [anon_sym_await] = ACTIONS(348), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), + [sym__newline] = ACTIONS(311), [sym_string_start] = ACTIONS(81), }, - [STATE(85)] = { - [sym_chevron] = STATE(2114), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_list_splat_pattern] = STATE(1077), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(859), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(372), - [anon_sym_print] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(274), - [anon_sym_match] = ACTIONS(379), - [anon_sym_async] = ACTIONS(375), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(375), - [anon_sym_type] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(259), + [STATE(83)] = { + [sym_chevron] = STATE(2218), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_list_splat_pattern] = STATE(1137), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(865), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_attribute] = STATE(1076), + [sym_subscript] = STATE(1076), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_print] = ACTIONS(324), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(335), + [anon_sym_match] = ACTIONS(333), + [anon_sym_async] = ACTIONS(324), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(324), + [anon_sym_type] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(340), + [anon_sym_PIPE] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_not] = ACTIONS(387), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_not] = ACTIONS(343), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), + [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(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(390), + [anon_sym_await] = ACTIONS(348), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), + [sym__newline] = ACTIONS(311), [sym_string_start] = ACTIONS(81), }, - [STATE(86)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), + [STATE(84)] = { + [sym_named_expression] = STATE(1781), + [sym__named_expression_lhs] = STATE(2797), [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_as_pattern] = STATE(1781), + [sym_expression] = STATE(1925), + [sym_primary_expression] = STATE(971), + [sym_not_operator] = STATE(1781), + [sym_boolean_operator] = STATE(1781), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_comparison_operator] = STATE(1781), + [sym_lambda] = STATE(1781), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_conditional_expression] = STATE(1781), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(350), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(352), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_print] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(335), + [anon_sym_match] = ACTIONS(360), + [anon_sym_async] = ACTIONS(358), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(358), + [anon_sym_type] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_not] = ACTIONS(370), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [anon_sym_lambda] = ACTIONS(375), + [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(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(381), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(311), + [sym_string_start] = ACTIONS(383), }, - [STATE(87)] = { - [sym_named_expression] = STATE(1750), - [sym__named_expression_lhs] = STATE(2653), + [STATE(85)] = { + [sym_named_expression] = STATE(1781), + [sym__named_expression_lhs] = STATE(2797), [sym_list_splat_pattern] = STATE(1416), - [sym_as_pattern] = STATE(1750), - [sym_expression] = STATE(1864), - [sym_primary_expression] = STATE(962), - [sym_not_operator] = STATE(1750), - [sym_boolean_operator] = STATE(1750), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_comparison_operator] = STATE(1750), - [sym_lambda] = STATE(1750), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_conditional_expression] = STATE(1750), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(392), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(261), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_print] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(277), - [anon_sym_async] = ACTIONS(270), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(270), - [anon_sym_type] = ACTIONS(277), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_not] = ACTIONS(293), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_lambda] = ACTIONS(298), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(306), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_as_pattern] = STATE(1781), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(971), + [sym_not_operator] = STATE(1781), + [sym_boolean_operator] = STATE(1781), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_comparison_operator] = STATE(1781), + [sym_lambda] = STATE(1781), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_conditional_expression] = STATE(1781), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(350), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(352), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(355), + [anon_sym_print] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(335), + [anon_sym_match] = ACTIONS(360), + [anon_sym_async] = ACTIONS(358), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(358), + [anon_sym_type] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(362), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_not] = ACTIONS(370), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [anon_sym_lambda] = ACTIONS(375), + [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(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(381), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(308), + [sym__newline] = ACTIONS(311), + [sym_string_start] = ACTIONS(383), + }, + [STATE(86)] = { + [sym__simple_statements] = STATE(676), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [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(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(389), + [sym__indent] = ACTIONS(391), + [sym_string_start] = ACTIONS(81), + }, + [STATE(87)] = { + [sym__simple_statements] = STATE(691), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [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(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(393), + [sym__indent] = ACTIONS(395), + [sym_string_start] = ACTIONS(81), }, [STATE(88)] = { - [sym__simple_statements] = STATE(844), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(836), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20623,8 +20753,102 @@ 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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(397), + [sym__indent] = ACTIONS(399), + [sym_string_start] = ACTIONS(81), + }, + [STATE(89)] = { + [sym__simple_statements] = STATE(700), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [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(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20650,60 +20874,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(403), [sym_string_start] = ACTIONS(81), }, - [STATE(89)] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(90)] = { + [sym__simple_statements] = STATE(2560), + [sym_import_statement] = STATE(2290), + [sym_future_import_statement] = STATE(2290), + [sym_import_from_statement] = STATE(2290), + [sym_print_statement] = STATE(2290), + [sym_assert_statement] = STATE(2290), + [sym_expression_statement] = STATE(2290), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2290), + [sym_delete_statement] = STATE(2290), + [sym_raise_statement] = STATE(2290), + [sym_pass_statement] = STATE(2290), + [sym_break_statement] = STATE(2290), + [sym_continue_statement] = STATE(2290), + [sym_global_statement] = STATE(2290), + [sym_nonlocal_statement] = STATE(2290), + [sym_exec_statement] = STATE(2290), + [sym_type_alias_statement] = STATE(2290), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20717,8 +20941,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20744,60 +20968,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(407), [sym_string_start] = ACTIONS(81), }, - [STATE(90)] = { - [sym__simple_statements] = STATE(686), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(91)] = { + [sym__simple_statements] = STATE(800), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20811,8 +21035,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20838,60 +21062,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(411), [sym_string_start] = ACTIONS(81), }, - [STATE(91)] = { - [sym__simple_statements] = STATE(2579), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(92)] = { + [sym__simple_statements] = STATE(807), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20905,8 +21129,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20932,60 +21156,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(415), [sym_string_start] = ACTIONS(81), }, - [STATE(92)] = { - [sym__simple_statements] = STATE(752), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(93)] = { + [sym__simple_statements] = STATE(687), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20999,8 +21223,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21026,60 +21250,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(419), [sym_string_start] = ACTIONS(81), }, - [STATE(93)] = { - [sym__simple_statements] = STATE(754), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(94)] = { + [sym__simple_statements] = STATE(816), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21093,8 +21317,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21120,60 +21344,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(81), }, - [STATE(94)] = { - [sym__simple_statements] = STATE(667), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(95)] = { + [sym__simple_statements] = STATE(661), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21187,8 +21411,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21214,60 +21438,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(81), }, - [STATE(95)] = { - [sym__simple_statements] = STATE(755), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(96)] = { + [sym__simple_statements] = STATE(761), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21281,8 +21505,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21308,60 +21532,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(81), }, - [STATE(96)] = { - [sym__simple_statements] = STATE(671), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(97)] = { + [sym__simple_statements] = STATE(2643), + [sym_import_statement] = STATE(2290), + [sym_future_import_statement] = STATE(2290), + [sym_import_from_statement] = STATE(2290), + [sym_print_statement] = STATE(2290), + [sym_assert_statement] = STATE(2290), + [sym_expression_statement] = STATE(2290), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2290), + [sym_delete_statement] = STATE(2290), + [sym_raise_statement] = STATE(2290), + [sym_pass_statement] = STATE(2290), + [sym_break_statement] = STATE(2290), + [sym_continue_statement] = STATE(2290), + [sym_global_statement] = STATE(2290), + [sym_nonlocal_statement] = STATE(2290), + [sym_exec_statement] = STATE(2290), + [sym_type_alias_statement] = STATE(2290), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21375,8 +21599,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21402,60 +21626,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(435), [sym_string_start] = ACTIONS(81), }, - [STATE(97)] = { - [sym__simple_statements] = STATE(613), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(98)] = { + [sym__simple_statements] = STATE(709), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21469,8 +21693,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21496,60 +21720,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(439), [sym_string_start] = ACTIONS(81), }, - [STATE(98)] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(99)] = { + [sym__simple_statements] = STATE(2553), + [sym_import_statement] = STATE(2290), + [sym_future_import_statement] = STATE(2290), + [sym_import_from_statement] = STATE(2290), + [sym_print_statement] = STATE(2290), + [sym_assert_statement] = STATE(2290), + [sym_expression_statement] = STATE(2290), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2290), + [sym_delete_statement] = STATE(2290), + [sym_raise_statement] = STATE(2290), + [sym_pass_statement] = STATE(2290), + [sym_break_statement] = STATE(2290), + [sym_continue_statement] = STATE(2290), + [sym_global_statement] = STATE(2290), + [sym_nonlocal_statement] = STATE(2290), + [sym_exec_statement] = STATE(2290), + [sym_type_alias_statement] = STATE(2290), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21563,8 +21787,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21590,60 +21814,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(443), [sym_string_start] = ACTIONS(81), }, - [STATE(99)] = { - [sym__simple_statements] = STATE(704), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(100)] = { + [sym__simple_statements] = STATE(727), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21657,8 +21881,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21684,60 +21908,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(81), }, - [STATE(100)] = { - [sym__simple_statements] = STATE(2497), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(101)] = { + [sym__simple_statements] = STATE(686), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21751,8 +21975,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21778,60 +22002,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(451), [sym_string_start] = ACTIONS(81), }, - [STATE(101)] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(102)] = { + [sym__simple_statements] = STATE(729), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21845,8 +22069,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21872,60 +22096,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(81), }, - [STATE(102)] = { - [sym__simple_statements] = STATE(2500), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(103)] = { + [sym__simple_statements] = STATE(667), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21939,8 +22163,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21966,60 +22190,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(81), }, - [STATE(103)] = { - [sym__simple_statements] = STATE(674), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(104)] = { + [sym__simple_statements] = STATE(624), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22033,8 +22257,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22060,60 +22284,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(81), }, - [STATE(104)] = { - [sym__simple_statements] = STATE(779), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(105)] = { + [sym__simple_statements] = STATE(770), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22127,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22154,60 +22378,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(81), }, - [STATE(105)] = { - [sym__simple_statements] = STATE(714), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(106)] = { + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22221,8 +22445,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22248,60 +22472,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(81), }, - [STATE(106)] = { - [sym__simple_statements] = STATE(672), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(107)] = { + [sym__simple_statements] = STATE(2626), + [sym_import_statement] = STATE(2290), + [sym_future_import_statement] = STATE(2290), + [sym_import_from_statement] = STATE(2290), + [sym_print_statement] = STATE(2290), + [sym_assert_statement] = STATE(2290), + [sym_expression_statement] = STATE(2290), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2290), + [sym_delete_statement] = STATE(2290), + [sym_raise_statement] = STATE(2290), + [sym_pass_statement] = STATE(2290), + [sym_break_statement] = STATE(2290), + [sym_continue_statement] = STATE(2290), + [sym_global_statement] = STATE(2290), + [sym_nonlocal_statement] = STATE(2290), + [sym_exec_statement] = STATE(2290), + [sym_type_alias_statement] = STATE(2290), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22315,8 +22539,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22342,60 +22566,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(81), }, - [STATE(107)] = { - [sym__simple_statements] = STATE(787), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(108)] = { + [sym__simple_statements] = STATE(597), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22409,8 +22633,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22436,60 +22660,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(81), }, - [STATE(108)] = { - [sym__simple_statements] = STATE(689), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(109)] = { + [sym__simple_statements] = STATE(614), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22503,8 +22727,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22530,60 +22754,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(81), }, - [STATE(109)] = { - [sym__simple_statements] = STATE(846), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(110)] = { + [sym__simple_statements] = STATE(706), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22597,8 +22821,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22624,60 +22848,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(81), }, - [STATE(110)] = { - [sym__simple_statements] = STATE(588), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(111)] = { + [sym__simple_statements] = STATE(772), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22691,8 +22915,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22718,60 +22942,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(81), }, - [STATE(111)] = { - [sym__simple_statements] = STATE(621), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(112)] = { + [sym__simple_statements] = STATE(837), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22785,8 +23009,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22812,60 +23036,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(81), }, - [STATE(112)] = { - [sym__simple_statements] = STATE(715), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(113)] = { + [sym__simple_statements] = STATE(839), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22879,8 +23103,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22906,60 +23130,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [STATE(113)] = { - [sym__simple_statements] = STATE(2538), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(114)] = { + [sym__simple_statements] = STATE(2628), + [sym_import_statement] = STATE(2290), + [sym_future_import_statement] = STATE(2290), + [sym_import_from_statement] = STATE(2290), + [sym_print_statement] = STATE(2290), + [sym_assert_statement] = STATE(2290), + [sym_expression_statement] = STATE(2290), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2290), + [sym_delete_statement] = STATE(2290), + [sym_raise_statement] = STATE(2290), + [sym_pass_statement] = STATE(2290), + [sym_break_statement] = STATE(2290), + [sym_continue_statement] = STATE(2290), + [sym_global_statement] = STATE(2290), + [sym_nonlocal_statement] = STATE(2290), + [sym_exec_statement] = STATE(2290), + [sym_type_alias_statement] = STATE(2290), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22973,8 +23197,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23000,60 +23224,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [STATE(114)] = { - [sym__simple_statements] = STATE(792), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(115)] = { + [sym__simple_statements] = STATE(851), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23067,8 +23291,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23094,60 +23318,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [STATE(115)] = { - [sym__simple_statements] = STATE(724), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(116)] = { + [sym__simple_statements] = STATE(515), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23161,8 +23385,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23188,60 +23412,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [STATE(116)] = { - [sym__simple_statements] = STATE(744), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(117)] = { + [sym__simple_statements] = STATE(722), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23255,8 +23479,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23282,60 +23506,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [STATE(117)] = { - [sym__simple_statements] = STATE(2542), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(118)] = { + [sym__simple_statements] = STATE(801), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23349,8 +23573,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23376,60 +23600,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [STATE(118)] = { - [sym__simple_statements] = STATE(711), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(119)] = { + [sym__simple_statements] = STATE(734), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23443,8 +23667,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23470,60 +23694,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [STATE(119)] = { - [sym__simple_statements] = STATE(840), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(120)] = { + [sym__simple_statements] = STATE(740), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23537,8 +23761,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23564,60 +23788,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [STATE(120)] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(121)] = { + [sym__simple_statements] = STATE(773), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23631,8 +23855,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23658,60 +23882,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [STATE(121)] = { - [sym__simple_statements] = STATE(759), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(122)] = { + [sym__simple_statements] = STATE(698), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23725,8 +23949,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23752,60 +23976,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [STATE(122)] = { - [sym__simple_statements] = STATE(728), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(123)] = { + [sym__simple_statements] = STATE(724), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23819,8 +24043,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23846,60 +24070,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [STATE(123)] = { - [sym__simple_statements] = STATE(697), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(124)] = { + [sym__simple_statements] = STATE(690), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23913,8 +24137,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23940,60 +24164,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [STATE(124)] = { - [sym__simple_statements] = STATE(718), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(125)] = { + [sym__simple_statements] = STATE(834), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24007,8 +24231,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24034,60 +24258,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [STATE(125)] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(126)] = { + [sym__simple_statements] = STATE(736), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24101,8 +24325,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24128,60 +24352,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [STATE(126)] = { - [sym__simple_statements] = STATE(745), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [STATE(127)] = { + [sym__simple_statements] = STATE(738), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24195,8 +24419,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24222,154 +24446,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [STATE(127)] = { - [sym__simple_statements] = STATE(758), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(397), - [anon_sym_async] = ACTIONS(399), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(557), - [sym__indent] = ACTIONS(559), - [sym_string_start] = ACTIONS(81), - }, [STATE(128)] = { - [sym__simple_statements] = STATE(763), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(719), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24383,8 +24513,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24406,64 +24536,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(561), - [sym__indent] = ACTIONS(563), + [sym__newline] = ACTIONS(557), + [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, [STATE(129)] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(753), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24477,8 +24607,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24500,64 +24630,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(565), - [sym__indent] = ACTIONS(567), + [sym__newline] = ACTIONS(561), + [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, [STATE(130)] = { - [sym__simple_statements] = STATE(723), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(659), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24571,8 +24701,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24594,64 +24724,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(569), - [sym__indent] = ACTIONS(571), + [sym__newline] = ACTIONS(565), + [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, [STATE(131)] = { - [sym__simple_statements] = STATE(665), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(821), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24665,8 +24795,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24688,64 +24818,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(573), - [sym__indent] = ACTIONS(575), + [sym__newline] = ACTIONS(569), + [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, [STATE(132)] = { - [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(780), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24759,8 +24889,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24782,64 +24912,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(577), - [sym__indent] = ACTIONS(579), + [sym__newline] = ACTIONS(573), + [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, [STATE(133)] = { - [sym__simple_statements] = STATE(739), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(716), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24853,8 +24983,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24876,64 +25006,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(581), - [sym__indent] = ACTIONS(583), + [sym__newline] = ACTIONS(577), + [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, [STATE(134)] = { - [sym__simple_statements] = STATE(692), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(823), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24947,8 +25077,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24970,64 +25100,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(585), - [sym__indent] = ACTIONS(587), + [sym__newline] = ACTIONS(581), + [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, [STATE(135)] = { - [sym__simple_statements] = STATE(799), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(679), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25041,8 +25171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25064,64 +25194,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(589), - [sym__indent] = ACTIONS(591), + [sym__newline] = ACTIONS(585), + [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, [STATE(136)] = { - [sym__simple_statements] = STATE(663), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(683), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25135,8 +25265,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25158,64 +25288,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(593), - [sym__indent] = ACTIONS(595), + [sym__newline] = ACTIONS(589), + [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, [STATE(137)] = { - [sym__simple_statements] = STATE(679), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(2562), + [sym_import_statement] = STATE(2290), + [sym_future_import_statement] = STATE(2290), + [sym_import_from_statement] = STATE(2290), + [sym_print_statement] = STATE(2290), + [sym_assert_statement] = STATE(2290), + [sym_expression_statement] = STATE(2290), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2290), + [sym_delete_statement] = STATE(2290), + [sym_raise_statement] = STATE(2290), + [sym_pass_statement] = STATE(2290), + [sym_break_statement] = STATE(2290), + [sym_continue_statement] = STATE(2290), + [sym_global_statement] = STATE(2290), + [sym_nonlocal_statement] = STATE(2290), + [sym_exec_statement] = STATE(2290), + [sym_type_alias_statement] = STATE(2290), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25229,8 +25359,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25252,64 +25382,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(597), - [sym__indent] = ACTIONS(599), + [sym__newline] = ACTIONS(593), + [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, [STATE(138)] = { - [sym__simple_statements] = STATE(678), - [sym_import_statement] = STATE(2336), - [sym_future_import_statement] = STATE(2336), - [sym_import_from_statement] = STATE(2336), - [sym_print_statement] = STATE(2336), - [sym_assert_statement] = STATE(2336), - [sym_expression_statement] = STATE(2336), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2336), - [sym_delete_statement] = STATE(2336), - [sym_raise_statement] = STATE(2336), - [sym_pass_statement] = STATE(2336), - [sym_break_statement] = STATE(2336), - [sym_continue_statement] = STATE(2336), - [sym_global_statement] = STATE(2336), - [sym_nonlocal_statement] = STATE(2336), - [sym_exec_statement] = STATE(2336), - [sym_type_alias_statement] = STATE(2336), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(692), + [sym_import_statement] = STATE(2375), + [sym_future_import_statement] = STATE(2375), + [sym_import_from_statement] = STATE(2375), + [sym_print_statement] = STATE(2375), + [sym_assert_statement] = STATE(2375), + [sym_expression_statement] = STATE(2375), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2375), + [sym_delete_statement] = STATE(2375), + [sym_raise_statement] = STATE(2375), + [sym_pass_statement] = STATE(2375), + [sym_break_statement] = STATE(2375), + [sym_continue_statement] = STATE(2375), + [sym_global_statement] = STATE(2375), + [sym_nonlocal_statement] = STATE(2375), + [sym_exec_statement] = STATE(2375), + [sym_type_alias_statement] = STATE(2375), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25323,8 +25453,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25346,64 +25476,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(601), - [sym__indent] = ACTIONS(603), + [sym__newline] = ACTIONS(597), + [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, [STATE(139)] = { - [sym__simple_statements] = STATE(2557), - [sym_import_statement] = STATE(2246), - [sym_future_import_statement] = STATE(2246), - [sym_import_from_statement] = STATE(2246), - [sym_print_statement] = STATE(2246), - [sym_assert_statement] = STATE(2246), - [sym_expression_statement] = STATE(2246), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2246), - [sym_delete_statement] = STATE(2246), - [sym_raise_statement] = STATE(2246), - [sym_pass_statement] = STATE(2246), - [sym_break_statement] = STATE(2246), - [sym_continue_statement] = STATE(2246), - [sym_global_statement] = STATE(2246), - [sym_nonlocal_statement] = STATE(2246), - [sym_exec_statement] = STATE(2246), - [sym_type_alias_statement] = STATE(2246), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym__simple_statements] = STATE(663), + [sym_import_statement] = STATE(2430), + [sym_future_import_statement] = STATE(2430), + [sym_import_from_statement] = STATE(2430), + [sym_print_statement] = STATE(2430), + [sym_assert_statement] = STATE(2430), + [sym_expression_statement] = STATE(2430), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2430), + [sym_delete_statement] = STATE(2430), + [sym_raise_statement] = STATE(2430), + [sym_pass_statement] = STATE(2430), + [sym_break_statement] = STATE(2430), + [sym_continue_statement] = STATE(2430), + [sym_global_statement] = STATE(2430), + [sym_nonlocal_statement] = STATE(2430), + [sym_exec_statement] = STATE(2430), + [sym_type_alias_statement] = STATE(2430), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25417,8 +25547,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25440,64 +25570,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(605), - [sym__indent] = ACTIONS(607), + [sym__newline] = ACTIONS(601), + [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, [STATE(140)] = { - [sym__simple_statements] = STATE(733), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2644), + [sym_future_import_statement] = STATE(2644), + [sym_import_from_statement] = STATE(2644), + [sym_print_statement] = STATE(2644), + [sym_assert_statement] = STATE(2644), + [sym_expression_statement] = STATE(2644), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2644), + [sym_delete_statement] = STATE(2644), + [sym_raise_statement] = STATE(2644), + [sym_pass_statement] = STATE(2644), + [sym_break_statement] = STATE(2644), + [sym_continue_statement] = STATE(2644), + [sym_global_statement] = STATE(2644), + [sym_nonlocal_statement] = STATE(2644), + [sym_exec_statement] = STATE(2644), + [sym_type_alias_statement] = STATE(2644), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25511,8 +25640,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25534,64 +25663,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(609), - [sym__indent] = ACTIONS(611), + [sym__newline] = ACTIONS(605), [sym_string_start] = ACTIONS(81), }, [STATE(141)] = { - [sym__simple_statements] = STATE(691), - [sym_import_statement] = STATE(2460), - [sym_future_import_statement] = STATE(2460), - [sym_import_from_statement] = STATE(2460), - [sym_print_statement] = STATE(2460), - [sym_assert_statement] = STATE(2460), - [sym_expression_statement] = STATE(2460), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2460), - [sym_delete_statement] = STATE(2460), - [sym_raise_statement] = STATE(2460), - [sym_pass_statement] = STATE(2460), - [sym_break_statement] = STATE(2460), - [sym_continue_statement] = STATE(2460), - [sym_global_statement] = STATE(2460), - [sym_nonlocal_statement] = STATE(2460), - [sym_exec_statement] = STATE(2460), - [sym_type_alias_statement] = STATE(2460), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2644), + [sym_future_import_statement] = STATE(2644), + [sym_import_from_statement] = STATE(2644), + [sym_print_statement] = STATE(2644), + [sym_assert_statement] = STATE(2644), + [sym_expression_statement] = STATE(2644), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2644), + [sym_delete_statement] = STATE(2644), + [sym_raise_statement] = STATE(2644), + [sym_pass_statement] = STATE(2644), + [sym_break_statement] = STATE(2644), + [sym_continue_statement] = STATE(2644), + [sym_global_statement] = STATE(2644), + [sym_nonlocal_statement] = STATE(2644), + [sym_exec_statement] = STATE(2644), + [sym_type_alias_statement] = STATE(2644), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25605,8 +25732,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25628,63 +25755,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(613), - [sym__indent] = ACTIONS(615), + [sym__newline] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, [STATE(142)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2644), + [sym_future_import_statement] = STATE(2644), + [sym_import_from_statement] = STATE(2644), + [sym_print_statement] = STATE(2644), + [sym_assert_statement] = STATE(2644), + [sym_expression_statement] = STATE(2644), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2644), + [sym_delete_statement] = STATE(2644), + [sym_raise_statement] = STATE(2644), + [sym_pass_statement] = STATE(2644), + [sym_break_statement] = STATE(2644), + [sym_continue_statement] = STATE(2644), + [sym_global_statement] = STATE(2644), + [sym_nonlocal_statement] = STATE(2644), + [sym_exec_statement] = STATE(2644), + [sym_type_alias_statement] = STATE(2644), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25698,8 +25824,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25721,62 +25847,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(617), + [sym__newline] = ACTIONS(609), [sym_string_start] = ACTIONS(81), }, [STATE(143)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2644), + [sym_future_import_statement] = STATE(2644), + [sym_import_from_statement] = STATE(2644), + [sym_print_statement] = STATE(2644), + [sym_assert_statement] = STATE(2644), + [sym_expression_statement] = STATE(2644), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2644), + [sym_delete_statement] = STATE(2644), + [sym_raise_statement] = STATE(2644), + [sym_pass_statement] = STATE(2644), + [sym_break_statement] = STATE(2644), + [sym_continue_statement] = STATE(2644), + [sym_global_statement] = STATE(2644), + [sym_nonlocal_statement] = STATE(2644), + [sym_exec_statement] = STATE(2644), + [sym_type_alias_statement] = STATE(2644), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25790,8 +25916,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25813,62 +25939,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(619), + [sym__newline] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, [STATE(144)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2644), + [sym_future_import_statement] = STATE(2644), + [sym_import_from_statement] = STATE(2644), + [sym_print_statement] = STATE(2644), + [sym_assert_statement] = STATE(2644), + [sym_expression_statement] = STATE(2644), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2644), + [sym_delete_statement] = STATE(2644), + [sym_raise_statement] = STATE(2644), + [sym_pass_statement] = STATE(2644), + [sym_break_statement] = STATE(2644), + [sym_continue_statement] = STATE(2644), + [sym_global_statement] = STATE(2644), + [sym_nonlocal_statement] = STATE(2644), + [sym_exec_statement] = STATE(2644), + [sym_type_alias_statement] = STATE(2644), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25882,8 +26008,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25905,62 +26031,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(621), + [sym__newline] = ACTIONS(613), [sym_string_start] = ACTIONS(81), }, [STATE(145)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2644), + [sym_future_import_statement] = STATE(2644), + [sym_import_from_statement] = STATE(2644), + [sym_print_statement] = STATE(2644), + [sym_assert_statement] = STATE(2644), + [sym_expression_statement] = STATE(2644), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2644), + [sym_delete_statement] = STATE(2644), + [sym_raise_statement] = STATE(2644), + [sym_pass_statement] = STATE(2644), + [sym_break_statement] = STATE(2644), + [sym_continue_statement] = STATE(2644), + [sym_global_statement] = STATE(2644), + [sym_nonlocal_statement] = STATE(2644), + [sym_exec_statement] = STATE(2644), + [sym_type_alias_statement] = STATE(2644), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25974,8 +26100,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25997,62 +26123,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(623), + [sym__newline] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, [STATE(146)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_import_statement] = STATE(2644), + [sym_future_import_statement] = STATE(2644), + [sym_import_from_statement] = STATE(2644), + [sym_print_statement] = STATE(2644), + [sym_assert_statement] = STATE(2644), + [sym_expression_statement] = STATE(2644), + [sym_tuple_expression] = STATE(2576), + [sym_named_expression] = STATE(1716), + [sym__named_expression_lhs] = STATE(2752), + [sym_return_statement] = STATE(2644), + [sym_delete_statement] = STATE(2644), + [sym_raise_statement] = STATE(2644), + [sym_pass_statement] = STATE(2644), + [sym_break_statement] = STATE(2644), + [sym_continue_statement] = STATE(2644), + [sym_global_statement] = STATE(2644), + [sym_nonlocal_statement] = STATE(2644), + [sym_exec_statement] = STATE(2644), + [sym_type_alias_statement] = STATE(2644), + [sym_pattern] = STATE(1674), + [sym_tuple_pattern] = STATE(1681), + [sym_list_pattern] = STATE(1681), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1716), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(965), + [sym_not_operator] = STATE(1716), + [sym_boolean_operator] = STATE(1716), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_comparison_operator] = STATE(1716), + [sym_lambda] = STATE(1716), + [sym_assignment] = STATE(2576), + [sym_augmented_assignment] = STATE(2576), + [sym_pattern_list] = STATE(1696), + [sym_yield] = STATE(2576), + [sym_attribute] = STATE(629), + [sym_subscript] = STATE(629), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_conditional_expression] = STATE(1716), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26066,8 +26192,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(397), - [anon_sym_async] = ACTIONS(399), + [anon_sym_match] = ACTIONS(385), + [anon_sym_async] = ACTIONS(387), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -26089,2948 +26215,2696 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(625), [sym_string_start] = ACTIONS(81), }, [STATE(147)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(397), - [anon_sym_async] = ACTIONS(399), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), + [sym_list_splat_pattern] = STATE(1137), + [sym_primary_expression] = STATE(988), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_attribute] = STATE(1076), + [sym_subscript] = STATE(1076), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_print] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(335), + [anon_sym_match] = ACTIONS(623), + [anon_sym_async] = ACTIONS(621), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [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(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(629), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(627), + [sym__newline] = ACTIONS(311), [sym_string_start] = ACTIONS(81), }, [STATE(148)] = { - [sym_import_statement] = STATE(2554), - [sym_future_import_statement] = STATE(2554), - [sym_import_from_statement] = STATE(2554), - [sym_print_statement] = STATE(2554), - [sym_assert_statement] = STATE(2554), - [sym_expression_statement] = STATE(2554), - [sym_tuple_expression] = STATE(2591), - [sym_named_expression] = STATE(1665), - [sym__named_expression_lhs] = STATE(2625), - [sym_return_statement] = STATE(2554), - [sym_delete_statement] = STATE(2554), - [sym_raise_statement] = STATE(2554), - [sym_pass_statement] = STATE(2554), - [sym_break_statement] = STATE(2554), - [sym_continue_statement] = STATE(2554), - [sym_global_statement] = STATE(2554), - [sym_nonlocal_statement] = STATE(2554), - [sym_exec_statement] = STATE(2554), - [sym_type_alias_statement] = STATE(2554), - [sym_pattern] = STATE(1633), - [sym_tuple_pattern] = STATE(1634), - [sym_list_pattern] = STATE(1634), - [sym_list_splat_pattern] = STATE(629), - [sym_as_pattern] = STATE(1665), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(963), - [sym_not_operator] = STATE(1665), - [sym_boolean_operator] = STATE(1665), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_comparison_operator] = STATE(1665), - [sym_lambda] = STATE(1665), - [sym_assignment] = STATE(2591), - [sym_augmented_assignment] = STATE(2591), - [sym_pattern_list] = STATE(1650), - [sym_yield] = STATE(2591), - [sym_attribute] = STATE(650), - [sym_subscript] = STATE(650), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_conditional_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(397), - [anon_sym_async] = ACTIONS(399), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), + [sym_list_splat_pattern] = STATE(1137), + [sym_primary_expression] = STATE(988), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_attribute] = STATE(1076), + [sym_subscript] = STATE(1076), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), + [sym_identifier] = ACTIONS(77), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_print] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(330), + [anon_sym_match] = ACTIONS(623), + [anon_sym_async] = ACTIONS(621), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [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(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(629), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(311), [sym_string_start] = ACTIONS(81), }, [STATE(149)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(284), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_as] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(633), + [anon_sym_if] = ACTIONS(638), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(638), + [anon_sym_STAR_STAR] = ACTIONS(633), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_not] = ACTIONS(638), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(633), + [anon_sym_SLASH_SLASH] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_LT_GT] = ACTIONS(631), + [anon_sym_PLUS_EQ] = ACTIONS(631), + [anon_sym_DASH_EQ] = ACTIONS(631), + [anon_sym_STAR_EQ] = ACTIONS(631), + [anon_sym_SLASH_EQ] = ACTIONS(631), + [anon_sym_AT_EQ] = ACTIONS(631), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(631), + [anon_sym_PERCENT_EQ] = ACTIONS(631), + [anon_sym_STAR_STAR_EQ] = ACTIONS(631), + [anon_sym_GT_GT_EQ] = ACTIONS(631), + [anon_sym_LT_LT_EQ] = ACTIONS(631), + [anon_sym_AMP_EQ] = ACTIONS(631), + [anon_sym_CARET_EQ] = ACTIONS(631), + [anon_sym_PIPE_EQ] = ACTIONS(631), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym__newline] = ACTIONS(631), + [sym_string_start] = ACTIONS(383), }, [STATE(150)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_list_splat_pattern] = STATE(1137), + [sym_primary_expression] = STATE(988), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_attribute] = STATE(1076), + [sym_subscript] = STATE(1076), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(274), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_from] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_print] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_match] = ACTIONS(623), + [anon_sym_async] = ACTIONS(621), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), + [anon_sym_await] = ACTIONS(629), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), + [sym__newline] = ACTIONS(311), [sym_string_start] = ACTIONS(81), }, [STATE(151)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(645), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(645), - [anon_sym_SLASH_SLASH] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AT_EQ] = ACTIONS(643), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_STAR_STAR_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(643), - [sym_string_start] = ACTIONS(308), - }, - [STATE(152)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), + [sym_list_splat_pattern] = STATE(1137), + [sym_primary_expression] = STATE(988), + [sym_binary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_attribute] = STATE(1076), + [sym_subscript] = STATE(1076), + [sym_call] = STATE(1076), + [sym_list] = STATE(1076), + [sym_set] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_dictionary] = STATE(1076), + [sym_list_comprehension] = STATE(1076), + [sym_dictionary_comprehension] = STATE(1076), + [sym_set_comprehension] = STATE(1076), + [sym_generator_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [sym_string] = STATE(966), + [sym_await] = STATE(1076), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_from] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(257), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_from] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_print] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_match] = ACTIONS(623), + [anon_sym_async] = ACTIONS(621), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(621), + [anon_sym_type] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_AT] = ACTIONS(311), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_PIPE] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), + [anon_sym_await] = ACTIONS(629), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), + [sym__newline] = ACTIONS(311), [sym_string_start] = ACTIONS(81), }, + [STATE(152)] = { + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_from] = ACTIONS(638), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_as] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(638), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(638), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_not] = ACTIONS(638), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_LT_GT] = ACTIONS(631), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(631), + [sym_string_start] = ACTIONS(383), + }, [STATE(153)] = { - [sym_list_splat_pattern] = STATE(1077), - [sym_primary_expression] = STATE(977), - [sym_binary_operator] = STATE(1085), - [sym_unary_operator] = STATE(1085), - [sym_attribute] = STATE(1085), - [sym_subscript] = STATE(1085), - [sym_call] = STATE(1085), - [sym_list] = STATE(1085), - [sym_set] = STATE(1085), - [sym_tuple] = STATE(1085), - [sym_dictionary] = STATE(1085), - [sym_list_comprehension] = STATE(1085), - [sym_dictionary_comprehension] = STATE(1085), - [sym_set_comprehension] = STATE(1085), - [sym_generator_expression] = STATE(1085), - [sym_parenthesized_expression] = STATE(1085), - [sym_concatenated_string] = STATE(1085), - [sym_string] = STATE(961), - [sym_await] = STATE(1085), - [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_from] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(635), - [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(633), - [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(641), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_as] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(638), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_for] = ACTIONS(638), + [anon_sym_in] = ACTIONS(638), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_not] = ACTIONS(638), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_LT_GT] = ACTIONS(631), + [sym_ellipsis] = ACTIONS(377), + [sym_type_conversion] = ACTIONS(631), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(257), - [sym_string_start] = ACTIONS(81), + [sym_string_start] = ACTIONS(383), }, [STATE(154)] = { - [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(257), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_list_splat_pattern] = STATE(1239), + [sym_primary_expression] = STATE(1033), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [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_concatenated_string] = STATE(1196), + [sym_string] = STATE(977), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(655), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_match] = ACTIONS(663), + [anon_sym_async] = ACTIONS(661), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(661), + [anon_sym_type] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(671), + [sym_type_conversion] = ACTIONS(311), + [sym_integer] = ACTIONS(655), + [sym_float] = ACTIONS(671), + [anon_sym_await] = ACTIONS(673), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_none] = ACTIONS(655), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(675), }, [STATE(155)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(643), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_from] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1239), + [sym_primary_expression] = STATE(1033), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [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_concatenated_string] = STATE(1196), + [sym_string] = STATE(977), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(655), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_match] = ACTIONS(663), + [anon_sym_async] = ACTIONS(661), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(661), + [anon_sym_type] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(671), + [sym_type_conversion] = ACTIONS(311), + [sym_integer] = ACTIONS(655), + [sym_float] = ACTIONS(671), + [anon_sym_await] = ACTIONS(673), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_none] = ACTIONS(655), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(643), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(675), }, [STATE(156)] = { - [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(257), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_else] = ACTIONS(313), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(383), }, [STATE(157)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_type_conversion] = ACTIONS(643), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1399), + [sym_unary_operator] = STATE(1399), + [sym_attribute] = STATE(1399), + [sym_subscript] = STATE(1399), + [sym_call] = STATE(1399), + [sym_list] = STATE(1399), + [sym_set] = STATE(1399), + [sym_tuple] = STATE(1399), + [sym_dictionary] = STATE(1399), + [sym_list_comprehension] = STATE(1399), + [sym_dictionary_comprehension] = STATE(1399), + [sym_set_comprehension] = STATE(1399), + [sym_generator_expression] = STATE(1399), + [sym_parenthesized_expression] = STATE(1399), + [sym_concatenated_string] = STATE(1399), + [sym_string] = STATE(998), + [sym_await] = STATE(1399), + [sym_identifier] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_print] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(685), + [anon_sym_async] = ACTIONS(683), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(683), + [anon_sym_type] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(695), + [sym_integer] = ACTIONS(677), + [sym_float] = ACTIONS(695), + [anon_sym_await] = ACTIONS(697), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_none] = ACTIONS(677), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(699), }, [STATE(158)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1239), + [sym_primary_expression] = STATE(1033), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [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_concatenated_string] = STATE(1196), + [sym_string] = STATE(977), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(655), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_as] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(638), + [anon_sym_match] = ACTIONS(663), + [anon_sym_async] = ACTIONS(661), + [anon_sym_for] = ACTIONS(638), + [anon_sym_in] = ACTIONS(633), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(661), + [anon_sym_type] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_not] = ACTIONS(633), + [anon_sym_and] = ACTIONS(633), + [anon_sym_or] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_is] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT_GT] = ACTIONS(652), + [sym_ellipsis] = ACTIONS(671), + [sym_integer] = ACTIONS(655), + [sym_float] = ACTIONS(671), + [anon_sym_await] = ACTIONS(673), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_none] = ACTIONS(655), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(675), }, [STATE(159)] = { - [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(257), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_list_splat_pattern] = STATE(1421), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1319), + [sym_unary_operator] = STATE(1319), + [sym_attribute] = STATE(1319), + [sym_subscript] = STATE(1319), + [sym_call] = STATE(1319), + [sym_list] = STATE(1319), + [sym_set] = STATE(1319), + [sym_tuple] = STATE(1319), + [sym_dictionary] = STATE(1319), + [sym_list_comprehension] = STATE(1319), + [sym_dictionary_comprehension] = STATE(1319), + [sym_set_comprehension] = STATE(1319), + [sym_generator_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_concatenated_string] = STATE(1319), + [sym_string] = STATE(1004), + [sym_await] = STATE(1319), + [sym_identifier] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_print] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_match] = ACTIONS(709), + [anon_sym_async] = ACTIONS(707), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(707), + [anon_sym_type] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(717), + [sym_integer] = ACTIONS(701), + [sym_float] = ACTIONS(717), + [anon_sym_await] = ACTIONS(719), + [sym_true] = ACTIONS(701), + [sym_false] = ACTIONS(701), + [sym_none] = ACTIONS(701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(721), }, [STATE(160)] = { [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_as] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(638), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_for] = ACTIONS(638), + [anon_sym_in] = ACTIONS(638), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_not] = ACTIONS(638), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_LT_GT] = ACTIONS(631), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(383), }, [STATE(161)] = { - [sym_list_splat_pattern] = STATE(1268), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(719), - [anon_sym_async] = ACTIONS(717), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(717), - [anon_sym_type] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(729), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_list_splat_pattern] = STATE(1239), + [sym_primary_expression] = STATE(1033), + [sym_binary_operator] = STATE(1196), + [sym_unary_operator] = STATE(1196), + [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_concatenated_string] = STATE(1196), + [sym_string] = STATE(977), + [sym_await] = STATE(1196), + [sym_identifier] = ACTIONS(655), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(657), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_print] = ACTIONS(661), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_match] = ACTIONS(663), + [anon_sym_async] = ACTIONS(661), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(661), + [anon_sym_type] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(671), + [sym_type_conversion] = ACTIONS(311), + [sym_integer] = ACTIONS(655), + [sym_float] = ACTIONS(671), + [anon_sym_await] = ACTIONS(673), + [sym_true] = ACTIONS(655), + [sym_false] = ACTIONS(655), + [sym_none] = ACTIONS(655), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(675), }, [STATE(162)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_else] = ACTIONS(259), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1148), + [sym_primary_expression] = STATE(1021), + [sym_binary_operator] = STATE(1157), + [sym_unary_operator] = STATE(1157), + [sym_attribute] = STATE(1157), + [sym_subscript] = STATE(1157), + [sym_call] = STATE(1157), + [sym_list] = STATE(1157), + [sym_set] = STATE(1157), + [sym_tuple] = STATE(1157), + [sym_dictionary] = STATE(1157), + [sym_list_comprehension] = STATE(1157), + [sym_dictionary_comprehension] = STATE(1157), + [sym_set_comprehension] = STATE(1157), + [sym_generator_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(1157), + [sym_concatenated_string] = STATE(1157), + [sym_string] = STATE(985), + [sym_await] = STATE(1157), + [sym_identifier] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_print] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_match] = ACTIONS(731), + [anon_sym_async] = ACTIONS(729), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(729), + [anon_sym_type] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(735), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(739), + [sym_integer] = ACTIONS(723), + [sym_float] = ACTIONS(739), + [anon_sym_await] = ACTIONS(741), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_none] = ACTIONS(723), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(743), }, [STATE(163)] = { - [sym_list_splat_pattern] = STATE(1231), - [sym_primary_expression] = STATE(1021), - [sym_binary_operator] = STATE(1206), - [sym_unary_operator] = STATE(1206), - [sym_attribute] = STATE(1206), - [sym_subscript] = STATE(1206), - [sym_call] = STATE(1206), - [sym_list] = STATE(1206), - [sym_set] = STATE(1206), - [sym_tuple] = STATE(1206), - [sym_dictionary] = STATE(1206), - [sym_list_comprehension] = STATE(1206), - [sym_dictionary_comprehension] = STATE(1206), - [sym_set_comprehension] = STATE(1206), - [sym_generator_expression] = STATE(1206), - [sym_parenthesized_expression] = STATE(1206), - [sym_concatenated_string] = STATE(1206), - [sym_string] = STATE(973), - [sym_await] = STATE(1206), - [sym_identifier] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_print] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(741), - [anon_sym_async] = ACTIONS(739), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(739), - [anon_sym_type] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(749), - [sym_integer] = ACTIONS(733), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_none] = ACTIONS(733), + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_else] = ACTIONS(313), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), + [sym_string_start] = ACTIONS(383), }, [STATE(164)] = { - [sym_list_splat_pattern] = STATE(1147), - [sym_primary_expression] = STATE(1024), - [sym_binary_operator] = STATE(1265), - [sym_unary_operator] = STATE(1265), - [sym_attribute] = STATE(1265), - [sym_subscript] = STATE(1265), - [sym_call] = STATE(1265), - [sym_list] = STATE(1265), - [sym_set] = STATE(1265), - [sym_tuple] = STATE(1265), - [sym_dictionary] = STATE(1265), - [sym_list_comprehension] = STATE(1265), - [sym_dictionary_comprehension] = STATE(1265), - [sym_set_comprehension] = STATE(1265), - [sym_generator_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string] = STATE(981), - [sym_await] = STATE(1265), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_as] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(645), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(645), - [anon_sym_and] = ACTIONS(645), - [anon_sym_or] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_LT_GT] = ACTIONS(686), - [sym_ellipsis] = ACTIONS(680), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1399), + [sym_unary_operator] = STATE(1399), + [sym_attribute] = STATE(1399), + [sym_subscript] = STATE(1399), + [sym_call] = STATE(1399), + [sym_list] = STATE(1399), + [sym_set] = STATE(1399), + [sym_tuple] = STATE(1399), + [sym_dictionary] = STATE(1399), + [sym_list_comprehension] = STATE(1399), + [sym_dictionary_comprehension] = STATE(1399), + [sym_set_comprehension] = STATE(1399), + [sym_generator_expression] = STATE(1399), + [sym_parenthesized_expression] = STATE(1399), + [sym_concatenated_string] = STATE(1399), + [sym_string] = STATE(998), + [sym_await] = STATE(1399), + [sym_identifier] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_print] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(685), + [anon_sym_async] = ACTIONS(683), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(683), + [anon_sym_type] = ACTIONS(685), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(695), + [sym_integer] = ACTIONS(677), + [sym_float] = ACTIONS(695), + [anon_sym_await] = ACTIONS(697), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_none] = ACTIONS(677), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(699), }, [STATE(165)] = { - [sym_list_splat_pattern] = STATE(1337), - [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(346), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_TILDE] = ACTIONS(373), + [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(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), + [sym__newline] = ACTIONS(346), + [sym_string_start] = ACTIONS(383), }, [STATE(166)] = { - [sym_list_splat_pattern] = STATE(1436), - [sym_primary_expression] = STATE(1149), - [sym_binary_operator] = STATE(1439), - [sym_unary_operator] = STATE(1439), - [sym_attribute] = STATE(1439), - [sym_subscript] = STATE(1439), - [sym_call] = STATE(1439), - [sym_list] = STATE(1439), - [sym_set] = STATE(1439), - [sym_tuple] = STATE(1439), - [sym_dictionary] = STATE(1439), - [sym_list_comprehension] = STATE(1439), - [sym_dictionary_comprehension] = STATE(1439), - [sym_set_comprehension] = STATE(1439), - [sym_generator_expression] = STATE(1439), - [sym_parenthesized_expression] = STATE(1439), - [sym_concatenated_string] = STATE(1439), - [sym_string] = STATE(1068), - [sym_await] = STATE(1439), - [sym_identifier] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_as] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_print] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(645), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_match] = ACTIONS(787), - [anon_sym_async] = ACTIONS(785), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(785), - [anon_sym_type] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(686), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(645), - [anon_sym_and] = ACTIONS(645), - [anon_sym_or] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_LT_GT] = ACTIONS(686), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), + [sym_list_splat_pattern] = STATE(1284), + [sym_primary_expression] = STATE(1056), + [sym_binary_operator] = STATE(1410), + [sym_unary_operator] = STATE(1410), + [sym_attribute] = STATE(1410), + [sym_subscript] = STATE(1410), + [sym_call] = STATE(1410), + [sym_list] = STATE(1410), + [sym_set] = STATE(1410), + [sym_tuple] = STATE(1410), + [sym_dictionary] = STATE(1410), + [sym_list_comprehension] = STATE(1410), + [sym_dictionary_comprehension] = STATE(1410), + [sym_set_comprehension] = STATE(1410), + [sym_generator_expression] = STATE(1410), + [sym_parenthesized_expression] = STATE(1410), + [sym_concatenated_string] = STATE(1410), + [sym_string] = STATE(1001), + [sym_await] = STATE(1410), + [sym_identifier] = ACTIONS(745), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(749), + [anon_sym_print] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(753), + [anon_sym_async] = ACTIONS(751), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(751), + [anon_sym_type] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(757), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(761), + [sym_integer] = ACTIONS(745), + [sym_float] = ACTIONS(761), + [anon_sym_await] = ACTIONS(763), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_none] = ACTIONS(745), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), + [sym_string_start] = ACTIONS(765), }, [STATE(167)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_RBRACK] = ACTIONS(643), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1284), + [sym_primary_expression] = STATE(1056), + [sym_binary_operator] = STATE(1410), + [sym_unary_operator] = STATE(1410), + [sym_attribute] = STATE(1410), + [sym_subscript] = STATE(1410), + [sym_call] = STATE(1410), + [sym_list] = STATE(1410), + [sym_set] = STATE(1410), + [sym_tuple] = STATE(1410), + [sym_dictionary] = STATE(1410), + [sym_list_comprehension] = STATE(1410), + [sym_dictionary_comprehension] = STATE(1410), + [sym_set_comprehension] = STATE(1410), + [sym_generator_expression] = STATE(1410), + [sym_parenthesized_expression] = STATE(1410), + [sym_concatenated_string] = STATE(1410), + [sym_string] = STATE(1001), + [sym_await] = STATE(1410), + [sym_identifier] = ACTIONS(745), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(749), + [anon_sym_print] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(753), + [anon_sym_async] = ACTIONS(751), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(751), + [anon_sym_type] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(757), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(761), + [sym_integer] = ACTIONS(745), + [sym_float] = ACTIONS(761), + [anon_sym_await] = ACTIONS(763), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_none] = ACTIONS(745), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(765), }, [STATE(168)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(300), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1148), + [sym_primary_expression] = STATE(1021), + [sym_binary_operator] = STATE(1157), + [sym_unary_operator] = STATE(1157), + [sym_attribute] = STATE(1157), + [sym_subscript] = STATE(1157), + [sym_call] = STATE(1157), + [sym_list] = STATE(1157), + [sym_set] = STATE(1157), + [sym_tuple] = STATE(1157), + [sym_dictionary] = STATE(1157), + [sym_list_comprehension] = STATE(1157), + [sym_dictionary_comprehension] = STATE(1157), + [sym_set_comprehension] = STATE(1157), + [sym_generator_expression] = STATE(1157), + [sym_parenthesized_expression] = STATE(1157), + [sym_concatenated_string] = STATE(1157), + [sym_string] = STATE(985), + [sym_await] = STATE(1157), + [sym_identifier] = ACTIONS(723), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_print] = ACTIONS(729), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_match] = ACTIONS(731), + [anon_sym_async] = ACTIONS(729), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(729), + [anon_sym_type] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(735), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(737), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(735), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(739), + [sym_integer] = ACTIONS(723), + [sym_float] = ACTIONS(739), + [anon_sym_await] = ACTIONS(741), + [sym_true] = ACTIONS(723), + [sym_false] = ACTIONS(723), + [sym_none] = ACTIONS(723), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(300), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(743), }, [STATE(169)] = { - [sym_list_splat_pattern] = STATE(1231), - [sym_primary_expression] = STATE(1021), - [sym_binary_operator] = STATE(1206), - [sym_unary_operator] = STATE(1206), - [sym_attribute] = STATE(1206), - [sym_subscript] = STATE(1206), - [sym_call] = STATE(1206), - [sym_list] = STATE(1206), - [sym_set] = STATE(1206), - [sym_tuple] = STATE(1206), - [sym_dictionary] = STATE(1206), - [sym_list_comprehension] = STATE(1206), - [sym_dictionary_comprehension] = STATE(1206), - [sym_set_comprehension] = STATE(1206), - [sym_generator_expression] = STATE(1206), - [sym_parenthesized_expression] = STATE(1206), - [sym_concatenated_string] = STATE(1206), - [sym_string] = STATE(973), - [sym_await] = STATE(1206), - [sym_identifier] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(737), - [anon_sym_print] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(741), - [anon_sym_async] = ACTIONS(739), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(739), - [anon_sym_type] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(749), - [sym_integer] = ACTIONS(733), - [sym_float] = ACTIONS(749), - [anon_sym_await] = ACTIONS(751), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_none] = ACTIONS(733), + [sym_list_splat_pattern] = STATE(1510), + [sym_primary_expression] = STATE(1241), + [sym_binary_operator] = STATE(1471), + [sym_unary_operator] = STATE(1471), + [sym_attribute] = STATE(1471), + [sym_subscript] = STATE(1471), + [sym_call] = STATE(1471), + [sym_list] = STATE(1471), + [sym_set] = STATE(1471), + [sym_tuple] = STATE(1471), + [sym_dictionary] = STATE(1471), + [sym_list_comprehension] = STATE(1471), + [sym_dictionary_comprehension] = STATE(1471), + [sym_set_comprehension] = STATE(1471), + [sym_generator_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_concatenated_string] = STATE(1471), + [sym_string] = STATE(1059), + [sym_await] = STATE(1471), + [sym_identifier] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_as] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_print] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(633), + [anon_sym_match] = ACTIONS(775), + [anon_sym_async] = ACTIONS(773), + [anon_sym_for] = ACTIONS(638), + [anon_sym_in] = ACTIONS(633), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_not] = ACTIONS(633), + [anon_sym_and] = ACTIONS(633), + [anon_sym_or] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_is] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT_GT] = ACTIONS(652), + [sym_ellipsis] = ACTIONS(783), + [sym_integer] = ACTIONS(767), + [sym_float] = ACTIONS(783), + [anon_sym_await] = ACTIONS(785), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_none] = ACTIONS(767), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(753), + [sym_string_start] = ACTIONS(787), }, [STATE(170)] = { - [sym_list_splat_pattern] = STATE(1268), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(719), - [anon_sym_async] = ACTIONS(717), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(717), - [anon_sym_type] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(264), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(729), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_as] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(638), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_for] = ACTIONS(638), + [anon_sym_in] = ACTIONS(638), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_not] = ACTIONS(638), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_LT_GT] = ACTIONS(631), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(383), }, [STATE(171)] = { - [sym_list_splat_pattern] = STATE(1436), - [sym_primary_expression] = STATE(1149), - [sym_binary_operator] = STATE(1439), - [sym_unary_operator] = STATE(1439), - [sym_attribute] = STATE(1439), - [sym_subscript] = STATE(1439), - [sym_call] = STATE(1439), - [sym_list] = STATE(1439), - [sym_set] = STATE(1439), - [sym_tuple] = STATE(1439), - [sym_dictionary] = STATE(1439), - [sym_list_comprehension] = STATE(1439), - [sym_dictionary_comprehension] = STATE(1439), - [sym_set_comprehension] = STATE(1439), - [sym_generator_expression] = STATE(1439), - [sym_parenthesized_expression] = STATE(1439), - [sym_concatenated_string] = STATE(1439), - [sym_string] = STATE(1068), - [sym_await] = STATE(1439), - [sym_identifier] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_print] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(259), - [anon_sym_match] = ACTIONS(787), - [anon_sym_async] = ACTIONS(785), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(785), - [anon_sym_type] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), + [sym_list_splat_pattern] = STATE(1510), + [sym_primary_expression] = STATE(1241), + [sym_binary_operator] = STATE(1471), + [sym_unary_operator] = STATE(1471), + [sym_attribute] = STATE(1471), + [sym_subscript] = STATE(1471), + [sym_call] = STATE(1471), + [sym_list] = STATE(1471), + [sym_set] = STATE(1471), + [sym_tuple] = STATE(1471), + [sym_dictionary] = STATE(1471), + [sym_list_comprehension] = STATE(1471), + [sym_dictionary_comprehension] = STATE(1471), + [sym_set_comprehension] = STATE(1471), + [sym_generator_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_concatenated_string] = STATE(1471), + [sym_string] = STATE(1059), + [sym_await] = STATE(1471), + [sym_identifier] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_print] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_match] = ACTIONS(775), + [anon_sym_async] = ACTIONS(773), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(783), + [sym_integer] = ACTIONS(767), + [sym_float] = ACTIONS(783), + [anon_sym_await] = ACTIONS(785), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_none] = ACTIONS(767), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), + [sym_string_start] = ACTIONS(787), }, [STATE(172)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1416), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_as] = ACTIONS(638), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_if] = ACTIONS(638), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_else] = ACTIONS(638), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_in] = ACTIONS(638), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_not] = ACTIONS(638), + [anon_sym_and] = ACTIONS(638), + [anon_sym_or] = ACTIONS(638), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_is] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(638), + [anon_sym_LT_GT] = ACTIONS(631), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(383), }, [STATE(173)] = { - [sym_list_splat_pattern] = STATE(1268), - [sym_primary_expression] = STATE(1030), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(719), - [anon_sym_async] = ACTIONS(717), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(717), - [anon_sym_type] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(729), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_list_splat_pattern] = STATE(1421), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1319), + [sym_unary_operator] = STATE(1319), + [sym_attribute] = STATE(1319), + [sym_subscript] = STATE(1319), + [sym_call] = STATE(1319), + [sym_list] = STATE(1319), + [sym_set] = STATE(1319), + [sym_tuple] = STATE(1319), + [sym_dictionary] = STATE(1319), + [sym_list_comprehension] = STATE(1319), + [sym_dictionary_comprehension] = STATE(1319), + [sym_set_comprehension] = STATE(1319), + [sym_generator_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_concatenated_string] = STATE(1319), + [sym_string] = STATE(1004), + [sym_await] = STATE(1319), + [sym_identifier] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_print] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_match] = ACTIONS(709), + [anon_sym_async] = ACTIONS(707), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(707), + [anon_sym_type] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(717), + [sym_integer] = ACTIONS(701), + [sym_float] = ACTIONS(717), + [anon_sym_await] = ACTIONS(719), + [sym_true] = ACTIONS(701), + [sym_false] = ACTIONS(701), + [sym_none] = ACTIONS(701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(721), }, [STATE(174)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_else] = ACTIONS(259), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(259), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1421), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1319), + [sym_unary_operator] = STATE(1319), + [sym_attribute] = STATE(1319), + [sym_subscript] = STATE(1319), + [sym_call] = STATE(1319), + [sym_list] = STATE(1319), + [sym_set] = STATE(1319), + [sym_tuple] = STATE(1319), + [sym_dictionary] = STATE(1319), + [sym_list_comprehension] = STATE(1319), + [sym_dictionary_comprehension] = STATE(1319), + [sym_set_comprehension] = STATE(1319), + [sym_generator_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_concatenated_string] = STATE(1319), + [sym_string] = STATE(1004), + [sym_await] = STATE(1319), + [sym_identifier] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_print] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(709), + [anon_sym_async] = ACTIONS(707), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(707), + [anon_sym_type] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(717), + [sym_integer] = ACTIONS(701), + [sym_float] = ACTIONS(717), + [anon_sym_await] = ACTIONS(719), + [sym_true] = ACTIONS(701), + [sym_false] = ACTIONS(701), + [sym_none] = ACTIONS(701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(721), }, [STATE(175)] = { - [sym_list_splat_pattern] = STATE(1337), - [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_list_splat_pattern] = STATE(1421), + [sym_primary_expression] = STATE(1071), + [sym_binary_operator] = STATE(1319), + [sym_unary_operator] = STATE(1319), + [sym_attribute] = STATE(1319), + [sym_subscript] = STATE(1319), + [sym_call] = STATE(1319), + [sym_list] = STATE(1319), + [sym_set] = STATE(1319), + [sym_tuple] = STATE(1319), + [sym_dictionary] = STATE(1319), + [sym_list_comprehension] = STATE(1319), + [sym_dictionary_comprehension] = STATE(1319), + [sym_set_comprehension] = STATE(1319), + [sym_generator_expression] = STATE(1319), + [sym_parenthesized_expression] = STATE(1319), + [sym_concatenated_string] = STATE(1319), + [sym_string] = STATE(1004), + [sym_await] = STATE(1319), + [sym_identifier] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_as] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_print] = ACTIONS(707), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(633), + [anon_sym_match] = ACTIONS(709), + [anon_sym_async] = ACTIONS(707), + [anon_sym_for] = ACTIONS(638), + [anon_sym_in] = ACTIONS(633), + [anon_sym_STAR_STAR] = ACTIONS(652), + [anon_sym_exec] = ACTIONS(707), + [anon_sym_type] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_not] = ACTIONS(633), + [anon_sym_and] = ACTIONS(633), + [anon_sym_or] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(652), + [anon_sym_SLASH_SLASH] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_is] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT_GT] = ACTIONS(652), + [sym_ellipsis] = ACTIONS(717), + [sym_integer] = ACTIONS(701), + [sym_float] = ACTIONS(717), + [anon_sym_await] = ACTIONS(719), + [sym_true] = ACTIONS(701), + [sym_false] = ACTIONS(701), + [sym_none] = ACTIONS(701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), + [sym_string_start] = ACTIONS(721), }, [STATE(176)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1399), + [sym_unary_operator] = STATE(1399), + [sym_attribute] = STATE(1399), + [sym_subscript] = STATE(1399), + [sym_call] = STATE(1399), + [sym_list] = STATE(1399), + [sym_set] = STATE(1399), + [sym_tuple] = STATE(1399), + [sym_dictionary] = STATE(1399), + [sym_list_comprehension] = STATE(1399), + [sym_dictionary_comprehension] = STATE(1399), + [sym_set_comprehension] = STATE(1399), + [sym_generator_expression] = STATE(1399), + [sym_parenthesized_expression] = STATE(1399), + [sym_concatenated_string] = STATE(1399), + [sym_string] = STATE(998), + [sym_await] = STATE(1399), + [sym_identifier] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_print] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_COLON_EQ] = ACTIONS(328), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(685), + [anon_sym_async] = ACTIONS(683), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(683), + [anon_sym_type] = ACTIONS(685), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(695), + [sym_integer] = ACTIONS(677), + [sym_float] = ACTIONS(695), + [anon_sym_await] = ACTIONS(697), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_none] = ACTIONS(677), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(699), }, [STATE(177)] = { - [sym_list_splat_pattern] = STATE(1337), - [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), + [sym_list_splat_pattern] = STATE(1510), + [sym_primary_expression] = STATE(1241), + [sym_binary_operator] = STATE(1471), + [sym_unary_operator] = STATE(1471), + [sym_attribute] = STATE(1471), + [sym_subscript] = STATE(1471), + [sym_call] = STATE(1471), + [sym_list] = STATE(1471), + [sym_set] = STATE(1471), + [sym_tuple] = STATE(1471), + [sym_dictionary] = STATE(1471), + [sym_list_comprehension] = STATE(1471), + [sym_dictionary_comprehension] = STATE(1471), + [sym_set_comprehension] = STATE(1471), + [sym_generator_expression] = STATE(1471), + [sym_parenthesized_expression] = STATE(1471), + [sym_concatenated_string] = STATE(1471), + [sym_string] = STATE(1059), + [sym_await] = STATE(1471), + [sym_identifier] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_print] = ACTIONS(773), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_match] = ACTIONS(775), + [anon_sym_async] = ACTIONS(773), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(773), + [anon_sym_type] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(783), + [sym_integer] = ACTIONS(767), + [sym_float] = ACTIONS(783), + [anon_sym_await] = ACTIONS(785), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_none] = ACTIONS(767), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), + [sym_string_start] = ACTIONS(787), }, [STATE(178)] = { - [sym_list_splat_pattern] = STATE(1384), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1367), - [sym_unary_operator] = STATE(1367), - [sym_attribute] = STATE(1367), - [sym_subscript] = STATE(1367), - [sym_call] = STATE(1367), - [sym_list] = STATE(1367), - [sym_set] = STATE(1367), - [sym_tuple] = STATE(1367), - [sym_dictionary] = STATE(1367), - [sym_list_comprehension] = STATE(1367), - [sym_dictionary_comprehension] = STATE(1367), - [sym_set_comprehension] = STATE(1367), - [sym_generator_expression] = STATE(1367), - [sym_parenthesized_expression] = STATE(1367), - [sym_concatenated_string] = STATE(1367), - [sym_string] = STATE(993), - [sym_await] = STATE(1367), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_as] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(272), - [anon_sym_if] = ACTIONS(645), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(645), - [anon_sym_and] = ACTIONS(645), - [anon_sym_or] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_LT_GT] = ACTIONS(686), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), + [sym_list_splat_pattern] = STATE(1361), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1399), + [sym_unary_operator] = STATE(1399), + [sym_attribute] = STATE(1399), + [sym_subscript] = STATE(1399), + [sym_call] = STATE(1399), + [sym_list] = STATE(1399), + [sym_set] = STATE(1399), + [sym_tuple] = STATE(1399), + [sym_dictionary] = STATE(1399), + [sym_list_comprehension] = STATE(1399), + [sym_dictionary_comprehension] = STATE(1399), + [sym_set_comprehension] = STATE(1399), + [sym_generator_expression] = STATE(1399), + [sym_parenthesized_expression] = STATE(1399), + [sym_concatenated_string] = STATE(1399), + [sym_string] = STATE(998), + [sym_await] = STATE(1399), + [sym_identifier] = ACTIONS(677), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_print] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(685), + [anon_sym_async] = ACTIONS(683), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(683), + [anon_sym_type] = ACTIONS(685), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(695), + [sym_integer] = ACTIONS(677), + [sym_float] = ACTIONS(695), + [anon_sym_await] = ACTIONS(697), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_none] = ACTIONS(677), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), + [sym_string_start] = ACTIONS(699), }, [STATE(179)] = { - [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_else] = ACTIONS(650), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_list_splat_pattern] = STATE(1284), + [sym_primary_expression] = STATE(1056), + [sym_binary_operator] = STATE(1410), + [sym_unary_operator] = STATE(1410), + [sym_attribute] = STATE(1410), + [sym_subscript] = STATE(1410), + [sym_call] = STATE(1410), + [sym_list] = STATE(1410), + [sym_set] = STATE(1410), + [sym_tuple] = STATE(1410), + [sym_dictionary] = STATE(1410), + [sym_list_comprehension] = STATE(1410), + [sym_dictionary_comprehension] = STATE(1410), + [sym_set_comprehension] = STATE(1410), + [sym_generator_expression] = STATE(1410), + [sym_parenthesized_expression] = STATE(1410), + [sym_concatenated_string] = STATE(1410), + [sym_string] = STATE(1001), + [sym_await] = STATE(1410), + [sym_identifier] = ACTIONS(745), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_as] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(749), + [anon_sym_print] = ACTIONS(751), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_match] = ACTIONS(753), + [anon_sym_async] = ACTIONS(751), + [anon_sym_for] = ACTIONS(313), + [anon_sym_in] = ACTIONS(313), + [anon_sym_STAR_STAR] = ACTIONS(311), + [anon_sym_exec] = ACTIONS(751), + [anon_sym_type] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_not] = ACTIONS(313), + [anon_sym_and] = ACTIONS(313), + [anon_sym_or] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(311), + [anon_sym_SLASH_SLASH] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(311), + [anon_sym_CARET] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(757), + [anon_sym_is] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT_GT] = ACTIONS(311), + [sym_ellipsis] = ACTIONS(761), + [sym_integer] = ACTIONS(745), + [sym_float] = ACTIONS(761), + [anon_sym_await] = ACTIONS(763), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_none] = ACTIONS(745), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(765), }, [STATE(180)] = { - [sym_list_splat_pattern] = STATE(1337), - [sym_primary_expression] = STATE(1127), - [sym_binary_operator] = STATE(1334), - [sym_unary_operator] = STATE(1334), - [sym_attribute] = STATE(1334), - [sym_subscript] = STATE(1334), - [sym_call] = STATE(1334), - [sym_list] = STATE(1334), - [sym_set] = STATE(1334), - [sym_tuple] = STATE(1334), - [sym_dictionary] = STATE(1334), - [sym_list_comprehension] = STATE(1334), - [sym_dictionary_comprehension] = STATE(1334), - [sym_set_comprehension] = STATE(1334), - [sym_generator_expression] = STATE(1334), - [sym_parenthesized_expression] = STATE(1334), - [sym_concatenated_string] = STATE(1334), - [sym_string] = STATE(1012), - [sym_await] = STATE(1334), - [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(257), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_match] = ACTIONS(763), - [anon_sym_async] = ACTIONS(761), - [anon_sym_for] = ACTIONS(259), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(761), - [anon_sym_type] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(773), - [sym_integer] = ACTIONS(755), - [sym_float] = ACTIONS(773), - [anon_sym_await] = ACTIONS(775), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_none] = ACTIONS(755), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(777), - }, - [STATE(181)] = { - [sym_list_splat_pattern] = STATE(1436), - [sym_primary_expression] = STATE(1149), - [sym_binary_operator] = STATE(1439), - [sym_unary_operator] = STATE(1439), - [sym_attribute] = STATE(1439), - [sym_subscript] = STATE(1439), - [sym_call] = STATE(1439), - [sym_list] = STATE(1439), - [sym_set] = STATE(1439), - [sym_tuple] = STATE(1439), - [sym_dictionary] = STATE(1439), - [sym_list_comprehension] = STATE(1439), - [sym_dictionary_comprehension] = STATE(1439), - [sym_set_comprehension] = STATE(1439), - [sym_generator_expression] = STATE(1439), - [sym_parenthesized_expression] = STATE(1439), - [sym_concatenated_string] = STATE(1439), - [sym_string] = STATE(1068), - [sym_await] = STATE(1439), - [sym_identifier] = ACTIONS(779), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(257), - [anon_sym_as] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(783), - [anon_sym_print] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(257), - [anon_sym_match] = ACTIONS(787), - [anon_sym_async] = ACTIONS(785), - [anon_sym_in] = ACTIONS(259), - [anon_sym_STAR_STAR] = ACTIONS(257), - [anon_sym_exec] = ACTIONS(785), - [anon_sym_type] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_AT] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(259), - [anon_sym_and] = ACTIONS(259), - [anon_sym_or] = ACTIONS(259), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(257), - [anon_sym_SLASH_SLASH] = ACTIONS(257), - [anon_sym_AMP] = ACTIONS(257), - [anon_sym_CARET] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(257), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(259), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_LT_EQ] = ACTIONS(257), - [anon_sym_EQ_EQ] = ACTIONS(257), - [anon_sym_BANG_EQ] = ACTIONS(257), - [anon_sym_GT_EQ] = ACTIONS(257), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_LT_GT] = ACTIONS(257), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(779), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(779), - [sym_false] = ACTIONS(779), - [sym_none] = ACTIONS(779), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), - }, - [STATE(182)] = { [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(645), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(645), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(645), - [anon_sym_SLASH_SLASH] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(645), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(643), - [anon_sym_DASH_EQ] = ACTIONS(643), - [anon_sym_STAR_EQ] = ACTIONS(643), - [anon_sym_SLASH_EQ] = ACTIONS(643), - [anon_sym_AT_EQ] = ACTIONS(643), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), - [anon_sym_PERCENT_EQ] = ACTIONS(643), - [anon_sym_STAR_STAR_EQ] = ACTIONS(643), - [anon_sym_GT_GT_EQ] = ACTIONS(643), - [anon_sym_LT_LT_EQ] = ACTIONS(643), - [anon_sym_AMP_EQ] = ACTIONS(643), - [anon_sym_CARET_EQ] = ACTIONS(643), - [anon_sym_PIPE_EQ] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(313), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_SLASH_SLASH] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_TILDE] = ACTIONS(373), + [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(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), + [sym_string_start] = ACTIONS(383), }, - [STATE(183)] = { + [STATE(181)] = { [sym_list_splat_pattern] = STATE(1416), - [sym_primary_expression] = STATE(1124), - [sym_binary_operator] = STATE(1348), - [sym_unary_operator] = STATE(1348), - [sym_attribute] = STATE(1348), - [sym_subscript] = STATE(1348), - [sym_call] = STATE(1348), - [sym_list] = STATE(1348), - [sym_set] = STATE(1348), - [sym_tuple] = STATE(1348), - [sym_dictionary] = STATE(1348), - [sym_list_comprehension] = STATE(1348), - [sym_dictionary_comprehension] = STATE(1348), - [sym_set_comprehension] = STATE(1348), - [sym_generator_expression] = STATE(1348), - [sym_parenthesized_expression] = STATE(1348), - [sym_concatenated_string] = STATE(1348), - [sym_string] = STATE(1017), - [sym_await] = STATE(1348), - [sym_identifier] = ACTIONS(304), - [anon_sym_DOT] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(300), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(259), - [anon_sym_COLON] = ACTIONS(300), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(259), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(259), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(259), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(259), - [anon_sym_PERCENT] = ACTIONS(259), - [anon_sym_SLASH_SLASH] = ACTIONS(259), - [anon_sym_AMP] = ACTIONS(259), - [anon_sym_CARET] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_TILDE] = ACTIONS(296), - [anon_sym_PLUS_EQ] = ACTIONS(300), - [anon_sym_DASH_EQ] = ACTIONS(300), - [anon_sym_STAR_EQ] = ACTIONS(300), - [anon_sym_SLASH_EQ] = ACTIONS(300), - [anon_sym_AT_EQ] = ACTIONS(300), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), - [anon_sym_PERCENT_EQ] = ACTIONS(300), - [anon_sym_STAR_STAR_EQ] = ACTIONS(300), - [anon_sym_GT_GT_EQ] = ACTIONS(300), - [anon_sym_LT_LT_EQ] = ACTIONS(300), - [anon_sym_AMP_EQ] = ACTIONS(300), - [anon_sym_CARET_EQ] = ACTIONS(300), - [anon_sym_PIPE_EQ] = ACTIONS(300), - [sym_ellipsis] = ACTIONS(302), - [sym_integer] = ACTIONS(304), - [sym_float] = ACTIONS(302), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(304), - [sym_false] = ACTIONS(304), - [sym_none] = ACTIONS(304), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(308), - }, - [STATE(184)] = { - [sym_named_expression] = STATE(1697), - [sym__named_expression_lhs] = STATE(2762), - [sym_list_splat] = STATE(2242), - [sym_parenthesized_list_splat] = STATE(2242), - [sym_list_splat_pattern] = STATE(1268), - [sym_as_pattern] = STATE(1697), - [sym_expression] = STATE(1656), - [sym_primary_expression] = STATE(869), - [sym_not_operator] = STATE(1697), - [sym_boolean_operator] = STATE(1697), - [sym_binary_operator] = STATE(1151), - [sym_unary_operator] = STATE(1151), - [sym_comparison_operator] = STATE(1697), - [sym_lambda] = STATE(1697), - [sym_yield] = STATE(2242), - [sym_attribute] = STATE(1151), - [sym_subscript] = STATE(1151), - [sym_call] = STATE(1151), - [sym_type] = STATE(1949), - [sym_splat_type] = STATE(2043), - [sym_generic_type] = STATE(2043), - [sym_union_type] = STATE(2043), - [sym_constrained_type] = STATE(2043), - [sym_member_type] = STATE(2043), - [sym_list] = STATE(1151), - [sym_set] = STATE(1151), - [sym_tuple] = STATE(1151), - [sym_dictionary] = STATE(1151), - [sym_list_comprehension] = STATE(1151), - [sym_dictionary_comprehension] = STATE(1151), - [sym_set_comprehension] = STATE(1151), - [sym_generator_expression] = STATE(1151), - [sym_parenthesized_expression] = STATE(1151), - [sym__collection_elements] = STATE(2650), - [sym_conditional_expression] = STATE(1697), - [sym_concatenated_string] = STATE(1151), - [sym_string] = STATE(969), - [sym_await] = STATE(1151), - [sym_identifier] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_print] = ACTIONS(807), - [anon_sym_match] = ACTIONS(809), - [anon_sym_async] = ACTIONS(807), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(807), - [anon_sym_type] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_lambda] = ACTIONS(819), - [anon_sym_yield] = ACTIONS(821), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(823), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), + [sym_primary_expression] = STATE(1141), + [sym_binary_operator] = STATE(1345), + [sym_unary_operator] = STATE(1345), + [sym_attribute] = STATE(1345), + [sym_subscript] = STATE(1345), + [sym_call] = STATE(1345), + [sym_list] = STATE(1345), + [sym_set] = STATE(1345), + [sym_tuple] = STATE(1345), + [sym_dictionary] = STATE(1345), + [sym_list_comprehension] = STATE(1345), + [sym_dictionary_comprehension] = STATE(1345), + [sym_set_comprehension] = STATE(1345), + [sym_generator_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string] = STATE(1013), + [sym_await] = STATE(1345), + [sym_identifier] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(636), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_STAR] = ACTIONS(640), + [anon_sym_print] = ACTIONS(642), + [anon_sym_GT_GT] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(631), + [anon_sym_match] = ACTIONS(644), + [anon_sym_async] = ACTIONS(642), + [anon_sym_STAR_STAR] = ACTIONS(633), + [anon_sym_exec] = ACTIONS(642), + [anon_sym_type] = ACTIONS(644), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_PERCENT] = ACTIONS(633), + [anon_sym_SLASH_SLASH] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_CARET] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_PLUS_EQ] = ACTIONS(631), + [anon_sym_DASH_EQ] = ACTIONS(631), + [anon_sym_STAR_EQ] = ACTIONS(631), + [anon_sym_SLASH_EQ] = ACTIONS(631), + [anon_sym_AT_EQ] = ACTIONS(631), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(631), + [anon_sym_PERCENT_EQ] = ACTIONS(631), + [anon_sym_STAR_STAR_EQ] = ACTIONS(631), + [anon_sym_GT_GT_EQ] = ACTIONS(631), + [anon_sym_LT_LT_EQ] = ACTIONS(631), + [anon_sym_AMP_EQ] = ACTIONS(631), + [anon_sym_CARET_EQ] = ACTIONS(631), + [anon_sym_PIPE_EQ] = ACTIONS(631), + [sym_ellipsis] = ACTIONS(377), + [sym_integer] = ACTIONS(379), + [sym_float] = ACTIONS(377), + [anon_sym_await] = ACTIONS(650), + [sym_true] = ACTIONS(379), + [sym_false] = ACTIONS(379), + [sym_none] = ACTIONS(379), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), + [sym_string_start] = ACTIONS(383), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(9), 1, + [0] = 31, + ACTIONS(693), 1, + anon_sym_LBRACE, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(789), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(793), 1, + anon_sym_RPAREN, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(629), 1, - sym_list_splat_pattern, - STATE(961), 1, - sym_string, - STATE(963), 1, + STATE(968), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern_list, - STATE(1648), 1, - sym_pattern, - STATE(1791), 1, + STATE(998), 1, + sym_string, + STATE(1401), 1, + sym_list_splat_pattern, + STATE(1757), 1, sym_expression, - STATE(2625), 1, + STATE(2363), 1, + sym_yield, + STATE(2525), 1, + sym_pattern, + STATE(2682), 1, + sym__collection_elements, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2794), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(397), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(650), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(399), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2570), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1665), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29038,7 +28912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29053,76 +28927,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [120] = 30, - ACTIONS(743), 1, + [126] = 30, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(815), 1, anon_sym_COMMA, - ACTIONS(831), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(839), 1, + ACTIONS(825), 1, anon_sym_RBRACE, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1704), 1, sym_expression, - STATE(1847), 1, + STATE(1884), 1, sym_pair, - STATE(2382), 1, + STATE(2427), 1, sym_dictionary_splat, - STATE(2669), 1, + STATE(2672), 1, sym__collection_elements, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2296), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29130,7 +29004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29147,79 +29021,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [244] = 31, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(849), 1, + [250] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(853), 1, - anon_sym_RPAREN, - ACTIONS(855), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(79), 1, anon_sym_await, - STATE(959), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(634), 1, + sym_list_splat_pattern, + STATE(965), 1, sym_primary_expression, - STATE(1012), 1, + STATE(966), 1, sym_string, - STATE(1398), 1, - sym_list_splat_pattern, - STATE(1685), 1, - sym_expression, - STATE(2248), 1, - sym_yield, - STATE(2320), 1, + STATE(1677), 1, sym_pattern, - STATE(2670), 1, + STATE(1683), 1, + sym_pattern_list, + STATE(1840), 1, + sym_expression, + STATE(2752), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, - STATE(2756), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(385), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(629), 2, sym_attribute, sym_subscript, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(2554), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29227,7 +29098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1076), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29242,78 +29113,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [370] = 30, - ACTIONS(725), 1, + [370] = 32, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_RBRACK, - ACTIONS(885), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(809), 1, anon_sym_await, - STATE(869), 1, + ACTIONS(835), 1, + anon_sym_RPAREN, + STATE(968), 1, sym_primary_expression, - STATE(969), 1, + STATE(998), 1, sym_string, - STATE(1296), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1748), 1, sym_expression, - STATE(2486), 1, + STATE(2382), 1, + sym_yield, + STATE(2477), 1, + sym_list_splat, + STATE(2479), 1, + sym_parenthesized_list_splat, + STATE(2525), 1, sym_pattern, - STATE(2747), 1, + STATE(2694), 1, + sym__named_expression_lhs, + STATE(2712), 1, sym__patterns, - STATE(2750), 1, + STATE(2725), 1, sym__collection_elements, - STATE(2762), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29321,7 +29194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29336,76 +29209,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [494] = 30, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [498] = 31, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(801), 1, + anon_sym_LBRACK, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(887), 1, - anon_sym_COMMA, - ACTIONS(889), 1, - anon_sym_RBRACE, - STATE(935), 1, + ACTIONS(837), 1, + anon_sym_RPAREN, + STATE(968), 1, sym_primary_expression, - STATE(973), 1, + STATE(998), 1, sym_string, - STATE(1231), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1737), 1, sym_expression, - STATE(1854), 1, - sym_pair, - STATE(2355), 1, - sym_dictionary_splat, - STATE(2675), 1, + STATE(2293), 1, + sym_yield, + STATE(2525), 1, + sym_pattern, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2778), 1, + STATE(2794), 1, + sym__patterns, + STATE(2822), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + STATE(1402), 2, + sym_attribute, + sym_subscript, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2605), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(733), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29413,11 +29289,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29430,80 +29304,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [618] = 32, - ACTIONS(771), 1, + [624] = 30, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(851), 1, + anon_sym_RBRACK, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(857), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(891), 1, - anon_sym_RPAREN, - STATE(959), 1, + STATE(967), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1001), 1, sym_string, - STATE(1398), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(1722), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2320), 1, + STATE(2426), 1, sym_pattern, - STATE(2368), 1, - sym_list_splat, - STATE(2369), 1, - sym_parenthesized_list_splat, - STATE(2644), 1, + STATE(2787), 1, sym__patterns, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2785), 1, + STATE(2789), 1, sym__collection_elements, + STATE(2826), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2425), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29511,7 +29383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29526,79 +29398,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [746] = 31, - ACTIONS(771), 1, + [748] = 30, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(861), 1, - anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(893), 1, - anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(861), 1, + anon_sym_COMMA, + ACTIONS(863), 1, + anon_sym_RBRACE, + STATE(930), 1, sym_primary_expression, - STATE(1012), 1, + STATE(985), 1, sym_string, - STATE(1398), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1713), 1, sym_expression, - STATE(2320), 1, - sym_pattern, - STATE(2327), 1, - sym_yield, - STATE(2670), 1, + STATE(1919), 1, + sym_pair, + STATE(2397), 1, + sym_dictionary_splat, + STATE(2714), 1, sym__named_expression_lhs, - STATE(2672), 1, + STATE(2825), 1, sym__collection_elements, - STATE(2756), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, - sym_attribute, - sym_subscript, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2296), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29606,9 +29475,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29621,76 +29492,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [872] = 28, - ACTIONS(9), 1, + [872] = 32, + ACTIONS(693), 1, + anon_sym_LBRACE, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(789), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(629), 1, - sym_list_splat_pattern, - STATE(961), 1, - sym_string, - STATE(963), 1, + ACTIONS(865), 1, + anon_sym_RPAREN, + STATE(968), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern_list, - STATE(1648), 1, - sym_pattern, - STATE(1791), 1, + STATE(998), 1, + sym_string, + STATE(1401), 1, + sym_list_splat_pattern, + STATE(1746), 1, sym_expression, - STATE(2625), 1, + STATE(2348), 1, + sym_yield, + STATE(2410), 1, + sym_list_splat, + STATE(2412), 1, + sym_parenthesized_list_splat, + STATE(2525), 1, + sym_pattern, + STATE(2679), 1, + sym__patterns, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2755), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(397), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(650), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(399), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2572), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1665), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29698,7 +29573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29713,80 +29588,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [992] = 32, - ACTIONS(771), 1, + [1000] = 30, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(857), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(895), 1, - anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(867), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1001), 1, sym_string, - STATE(1398), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1749), 1, sym_expression, - STATE(2320), 1, + STATE(2426), 1, sym_pattern, - STATE(2342), 1, - sym_yield, - STATE(2424), 1, - sym_list_splat, - STATE(2439), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2697), 1, + STATE(2781), 1, sym__patterns, - STATE(2715), 1, + STATE(2826), 1, + sym__named_expression_lhs, + STATE(2830), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2425), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29794,7 +29667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29809,7 +29682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1120] = 28, + [1124] = 28, ACTIONS(9), 1, sym_identifier, ACTIONS(15), 1, @@ -29830,19 +29703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(629), 1, + STATE(634), 1, sym_list_splat_pattern, - STATE(961), 1, - sym_string, - STATE(963), 1, + STATE(965), 1, sym_primary_expression, - STATE(1639), 1, - sym_pattern_list, - STATE(1648), 1, + STATE(966), 1, + sym_string, + STATE(1677), 1, sym_pattern, - STATE(1791), 1, + STATE(1683), 1, + sym_pattern_list, + STATE(1840), 1, sym_expression, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -29850,20 +29723,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(397), 2, + ACTIONS(385), 2, anon_sym_match, anon_sym_type, - STATE(650), 2, + STATE(629), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(399), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -29872,13 +29745,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2569), 5, + STATE(2593), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29886,7 +29759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 14, + STATE(1076), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29901,79 +29774,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1240] = 31, - ACTIONS(771), 1, + [1244] = 31, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(897), 1, + ACTIONS(869), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1398), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1727), 1, sym_expression, - STATE(2320), 1, - sym_pattern, - STATE(2364), 1, + STATE(2406), 1, sym_yield, - STATE(2633), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2525), 1, + sym_pattern, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2756), 1, + STATE(2702), 1, + sym__collection_elements, + STATE(2794), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29981,7 +29854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29996,78 +29869,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1366] = 30, - ACTIONS(725), 1, + [1370] = 30, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(899), 1, + ACTIONS(871), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1731), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2650), 1, + STATE(2772), 1, sym__collection_elements, - STATE(2722), 1, + STATE(2781), 1, sym__patterns, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30075,7 +29948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30090,76 +29963,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1490] = 30, - ACTIONS(743), 1, + [1494] = 30, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(901), 1, + ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(903), 1, + ACTIONS(875), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1706), 1, sym_expression, - STATE(1884), 1, + STATE(1904), 1, sym_pair, - STATE(2252), 1, + STATE(2297), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, - STATE(2705), 1, + STATE(2810), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2296), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30167,7 +30040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30184,79 +30057,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1614] = 31, - ACTIONS(771), 1, + [1618] = 31, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(905), 1, + ACTIONS(877), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1398), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1737), 1, sym_expression, - STATE(2248), 1, + STATE(2293), 1, sym_yield, - STATE(2320), 1, + STATE(2525), 1, sym_pattern, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, - STATE(2697), 1, + STATE(2712), 1, sym__patterns, + STATE(2822), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30264,7 +30137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30279,78 +30152,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1740] = 30, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + [1744] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, + anon_sym_yield, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(907), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(81), 1, + sym_string_start, + STATE(634), 1, + sym_list_splat_pattern, + STATE(965), 1, sym_primary_expression, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1296), 1, - sym_list_splat_pattern, - STATE(1716), 1, - sym_expression, - STATE(2486), 1, + STATE(1677), 1, sym_pattern, - STATE(2629), 1, - sym__collection_elements, - STATE(2646), 1, - sym__patterns, - STATE(2762), 1, + STATE(1683), 1, + sym_pattern_list, + STATE(1840), 1, + sym_expression, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(385), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(629), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(387), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(2594), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30358,7 +30229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1076), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30374,75 +30245,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [1864] = 30, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(909), 1, + ACTIONS(879), 1, anon_sym_COMMA, - ACTIONS(911), 1, + ACTIONS(881), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(1707), 1, sym_expression, - STATE(1844), 1, + STATE(1930), 1, sym_pair, - STATE(2300), 1, + STATE(2350), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, - STATE(2754), 1, + STATE(2832), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2296), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30450,7 +30321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30468,78 +30339,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [1988] = 31, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(913), 1, + ACTIONS(883), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1398), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1737), 1, sym_expression, - STATE(2248), 1, + STATE(2293), 1, sym_yield, - STATE(2320), 1, + STATE(2525), 1, sym_pattern, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, - STATE(2756), 1, + STATE(2794), 1, sym__patterns, + STATE(2822), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30547,7 +30418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30563,77 +30434,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2114] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(915), 1, + ACTIONS(885), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1745), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2658), 1, + STATE(2727), 1, sym__collection_elements, - STATE(2722), 1, + STATE(2781), 1, sym__patterns, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30641,7 +30512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30657,75 +30528,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2238] = 30, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(917), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(919), 1, + ACTIONS(889), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1709), 1, sym_expression, - STATE(1849), 1, + STATE(1921), 1, sym_pair, - STATE(2341), 1, + STATE(2385), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, - STATE(2710), 1, + STATE(2754), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2296), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30733,7 +30604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30751,78 +30622,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2362] = 31, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(921), 1, + ACTIONS(891), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1398), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1737), 1, sym_expression, - STATE(2248), 1, + STATE(2293), 1, sym_yield, - STATE(2320), 1, + STATE(2525), 1, sym_pattern, - STATE(2644), 1, + STATE(2679), 1, sym__patterns, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2689), 1, + STATE(2822), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30830,7 +30701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30846,77 +30717,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2488] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(923), 1, + ACTIONS(893), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1731), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2650), 1, + STATE(2772), 1, sym__collection_elements, - STATE(2747), 1, + STATE(2787), 1, sym__patterns, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30924,7 +30795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30940,75 +30811,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2612] = 30, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(925), 1, + ACTIONS(895), 1, anon_sym_COMMA, - ACTIONS(927), 1, + ACTIONS(897), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1714), 1, sym_expression, - STATE(1852), 1, + STATE(1878), 1, sym_pair, - STATE(2367), 1, + STATE(2409), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, - STATE(2744), 1, + STATE(2790), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2296), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31016,7 +30887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31034,78 +30905,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2736] = 31, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(929), 1, + ACTIONS(899), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1398), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1737), 1, sym_expression, - STATE(2248), 1, + STATE(2293), 1, sym_yield, - STATE(2320), 1, + STATE(2525), 1, sym_pattern, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2689), 1, + STATE(2822), 1, sym__collection_elements, - STATE(2774), 1, + STATE(2835), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31113,7 +30984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31129,77 +31000,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2862] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(931), 1, + ACTIONS(901), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1731), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2650), 1, + STATE(2772), 1, sym__collection_elements, - STATE(2722), 1, + STATE(2781), 1, sym__patterns, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31207,7 +31078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31223,75 +31094,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2986] = 30, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(903), 1, anon_sym_COMMA, - ACTIONS(935), 1, + ACTIONS(905), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1672), 1, + STATE(1710), 1, sym_expression, - STATE(1859), 1, + STATE(1885), 1, sym_pair, - STATE(2387), 1, + STATE(2433), 1, sym_dictionary_splat, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, - STATE(2676), 1, + STATE(2751), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2296), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31299,7 +31170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31317,78 +31188,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3110] = 31, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(937), 1, + ACTIONS(907), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1398), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(1737), 1, sym_expression, - STATE(2248), 1, + STATE(2293), 1, sym_yield, - STATE(2320), 1, + STATE(2525), 1, sym_pattern, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2683), 1, + STATE(2722), 1, sym__patterns, - STATE(2689), 1, + STATE(2822), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31396,7 +31267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31412,77 +31283,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3236] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(939), 1, + ACTIONS(909), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1731), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2646), 1, + STATE(2699), 1, sym__patterns, - STATE(2650), 1, + STATE(2772), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31490,7 +31361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31506,75 +31377,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3360] = 30, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(813), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(817), 1, anon_sym_STAR, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(911), 1, anon_sym_COMMA, - ACTIONS(943), 1, + ACTIONS(913), 1, anon_sym_RBRACE, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1712), 1, sym_expression, - STATE(1862), 1, + STATE(1893), 1, sym_pair, - STATE(2411), 1, + STATE(2463), 1, sym_dictionary_splat, - STATE(2607), 1, + STATE(2662), 1, sym__collection_elements, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2333), 3, + STATE(2296), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31582,7 +31453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31600,78 +31471,78 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3484] = 31, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(789), 1, sym_identifier, - ACTIONS(851), 1, + ACTIONS(791), 1, anon_sym_LPAREN, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(861), 1, + ACTIONS(801), 1, anon_sym_LBRACK, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(869), 1, + ACTIONS(809), 1, anon_sym_await, - ACTIONS(945), 1, + ACTIONS(915), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1398), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1757), 1, sym_expression, - STATE(2320), 1, - sym_pattern, - STATE(2327), 1, + STATE(2363), 1, sym_yield, - STATE(2670), 1, - sym__named_expression_lhs, - STATE(2672), 1, + STATE(2525), 1, + sym_pattern, + STATE(2682), 1, sym__collection_elements, - STATE(2756), 1, + STATE(2694), 1, + sym__named_expression_lhs, + STATE(2794), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(859), 2, + ACTIONS(799), 2, anon_sym_match, anon_sym_type, - STATE(1401), 2, + STATE(1402), 2, sym_attribute, sym_subscript, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2578), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(857), 3, + ACTIONS(797), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31679,7 +31550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 14, + STATE(1399), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31695,77 +31566,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3610] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(947), 1, + ACTIONS(917), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1731), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2626), 1, + STATE(2730), 1, sym__patterns, - STATE(2650), 1, + STATE(2772), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31773,7 +31644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31789,77 +31660,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3734] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(949), 1, + ACTIONS(919), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1731), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2650), 1, - sym__collection_elements, - STATE(2699), 1, + STATE(2734), 1, sym__patterns, - STATE(2762), 1, + STATE(2772), 1, + sym__collection_elements, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31867,7 +31738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31883,77 +31754,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3858] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(951), 1, + ACTIONS(921), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1749), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2593), 1, - sym__collection_elements, - STATE(2722), 1, + STATE(2781), 1, sym__patterns, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, + STATE(2830), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31961,7 +31832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31977,77 +31848,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3982] = 30, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(871), 1, + ACTIONS(839), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(841), 1, anon_sym_LPAREN, - ACTIONS(875), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(881), 1, + ACTIONS(849), 1, anon_sym_LBRACK, - ACTIONS(885), 1, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(859), 1, anon_sym_await, - ACTIONS(953), 1, + ACTIONS(923), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1296), 1, + STATE(1411), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1738), 1, sym_expression, - STATE(2486), 1, + STATE(2426), 1, sym_pattern, - STATE(2593), 1, - sym__collection_elements, - STATE(2722), 1, + STATE(2699), 1, sym__patterns, - STATE(2762), 1, + STATE(2769), 1, + sym__collection_elements, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(847), 2, anon_sym_match, anon_sym_type, - STATE(1374), 2, + STATE(1412), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(877), 3, + ACTIONS(845), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32055,7 +31926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 14, + STATE(1410), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32071,58 +31942,58 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(291), 1, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(296), 1, + ACTIONS(373), 1, anon_sym_TILDE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(955), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(929), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(931), 1, anon_sym_STAR, - ACTIONS(967), 1, + ACTIONS(937), 1, anon_sym_LBRACK, - ACTIONS(969), 1, + ACTIONS(939), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1359), 1, + STATE(1390), 1, sym_list_splat_pattern, - STATE(1592), 1, + STATE(1646), 1, sym_pattern, - STATE(1615), 1, + STATE(1654), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, + ACTIONS(648), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(965), 2, + ACTIONS(935), 2, anon_sym_match, anon_sym_type, - STATE(1362), 2, + STATE(1391), 2, sym_attribute, sym_subscript, - STATE(1594), 2, + STATE(1647), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(963), 3, + ACTIONS(933), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32137,7 +32008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(957), 17, + ACTIONS(927), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32156,58 +32027,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(291), 1, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(296), 1, + ACTIONS(373), 1, anon_sym_TILDE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(955), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(929), 1, anon_sym_LPAREN, - ACTIONS(961), 1, + ACTIONS(931), 1, anon_sym_STAR, - ACTIONS(967), 1, + ACTIONS(937), 1, anon_sym_LBRACK, - ACTIONS(969), 1, + ACTIONS(939), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1359), 1, + STATE(1390), 1, sym_list_splat_pattern, - STATE(1592), 1, + STATE(1646), 1, sym_pattern, - STATE(1615), 1, + STATE(1654), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, + ACTIONS(648), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(965), 2, + ACTIONS(935), 2, anon_sym_match, anon_sym_type, - STATE(1362), 2, + STATE(1391), 2, sym_attribute, sym_subscript, - STATE(1594), 2, + STATE(1647), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(963), 3, + ACTIONS(933), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32222,7 +32093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(971), 17, + ACTIONS(941), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -32241,70 +32112,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 27, - ACTIONS(781), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(983), 1, + ACTIONS(955), 1, anon_sym_RBRACK, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32312,7 +32183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32330,70 +32201,159 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4436] = 27, - ACTIONS(781), 1, + ACTIONS(669), 1, + anon_sym_LBRACE, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_yield, + ACTIONS(963), 1, + sym_identifier, + ACTIONS(965), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(975), 1, + anon_sym_not, + ACTIONS(977), 1, + anon_sym_lambda, + ACTIONS(979), 1, + anon_sym_await, + STATE(948), 1, + sym_primary_expression, + STATE(977), 1, + sym_string, + STATE(1158), 1, + sym_list_splat_pattern, + STATE(1779), 1, + sym_expression, + STATE(2570), 1, + sym_pattern, + STATE(2805), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(671), 2, + sym_ellipsis, + sym_float, + ACTIONS(971), 2, + anon_sym_match, + anon_sym_type, + STATE(1159), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(667), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(969), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(655), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2085), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1802), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1196), 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, + [4552] = 27, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(991), 1, + ACTIONS(981), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32401,7 +32361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32418,71 +32378,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4552] = 27, - ACTIONS(781), 1, + [4668] = 27, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(993), 1, + ACTIONS(983), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32490,7 +32450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32507,71 +32467,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4668] = 27, - ACTIONS(781), 1, + [4784] = 27, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(995), 1, + ACTIONS(985), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32579,7 +32539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32596,71 +32556,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4784] = 27, - ACTIONS(781), 1, + [4900] = 27, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(997), 1, + ACTIONS(987), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32668,7 +32628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32685,71 +32645,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4900] = 27, - ACTIONS(781), 1, + [5016] = 27, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(989), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32757,7 +32717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32774,71 +32734,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5016] = 27, - ACTIONS(781), 1, + [5132] = 27, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1001), 1, + ACTIONS(991), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32846,7 +32806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32863,73 +32823,73 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5132] = 27, - ACTIONS(678), 1, + [5248] = 27, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(845), 1, + ACTIONS(831), 1, anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(963), 1, sym_identifier, - ACTIONS(1005), 1, + ACTIONS(965), 1, anon_sym_LPAREN, - ACTIONS(1007), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(1013), 1, + ACTIONS(973), 1, anon_sym_LBRACK, - ACTIONS(1015), 1, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(979), 1, anon_sym_await, - STATE(942), 1, + STATE(948), 1, sym_primary_expression, - STATE(981), 1, + STATE(977), 1, sym_string, - STATE(1208), 1, + STATE(1158), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1779), 1, sym_expression, - STATE(2568), 1, + STATE(2570), 1, sym_pattern, - STATE(2764), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, + ACTIONS(971), 2, anon_sym_match, anon_sym_type, - STATE(1210), 2, + STATE(1159), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(676), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(969), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2103), 4, + STATE(2078), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1753), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32937,7 +32897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 14, + STATE(1196), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32952,71 +32912,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5248] = 27, - ACTIONS(781), 1, + [5364] = 27, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1021), 1, + ACTIONS(993), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(2068), 1, + STATE(2058), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33024,7 +32984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33041,73 +33001,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5364] = 27, - ACTIONS(678), 1, + [5480] = 26, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(995), 1, sym_identifier, + ACTIONS(997), 1, + anon_sym_STAR, + ACTIONS(1001), 1, + anon_sym_match, + ACTIONS(1003), 1, + anon_sym_STAR_STAR, ACTIONS(1005), 1, - anon_sym_LPAREN, + anon_sym_type, ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1013), 1, - anon_sym_LBRACK, - ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1019), 1, + ACTIONS(1011), 1, anon_sym_await, - STATE(942), 1, + STATE(970), 1, sym_primary_expression, - STATE(981), 1, + STATE(1004), 1, sym_string, - STATE(1208), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1769), 1, sym_expression, - STATE(2568), 1, - sym_pattern, - STATE(2764), 1, + STATE(1962), 1, + sym_type, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1011), 2, - anon_sym_match, - anon_sym_type, - STATE(1210), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(676), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1009), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2039), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1753), 7, + STATE(1942), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33115,9 +33071,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 14, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33130,69 +33088,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5480] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [5593] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(333), 1, + anon_sym_match, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1015), 1, anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + ACTIONS(1017), 1, + anon_sym_STAR_STAR, + ACTIONS(1019), 1, + anon_sym_type, + STATE(865), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1778), 1, sym_expression, - STATE(2356), 1, + STATE(2026), 1, sym_type, - STATE(2653), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2040), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33200,7 +33158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33217,69 +33175,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5593] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [5706] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(333), 1, + anon_sym_match, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1013), 1, + sym_identifier, + ACTIONS(1015), 1, anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + ACTIONS(1017), 1, + anon_sym_STAR_STAR, + ACTIONS(1019), 1, + anon_sym_type, + STATE(865), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1778), 1, sym_expression, - STATE(2455), 1, + STATE(2007), 1, sym_type, - STATE(2653), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2040), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33287,7 +33245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33304,152 +33262,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5706] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(296), 1, - anon_sym_TILDE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1027), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_LPAREN, - ACTIONS(1031), 1, - anon_sym_STAR, - ACTIONS(1037), 1, - anon_sym_LBRACK, - ACTIONS(1039), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1475), 1, - sym_list_splat_pattern, - STATE(1623), 1, - sym_primary_expression, - STATE(1629), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(660), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1035), 2, + [5819] = 26, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, anon_sym_match, - anon_sym_type, - STATE(1481), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1033), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - ACTIONS(971), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [5811] = 26, - ACTIONS(67), 1, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(379), 1, - anon_sym_match, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(1021), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1023), 1, anon_sym_STAR, - ACTIONS(1045), 1, - anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(1025), 1, anon_sym_type, - STATE(859), 1, + ACTIONS(1027), 1, + anon_sym_not, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1817), 1, sym_expression, - STATE(1937), 1, + STATE(2131), 1, sym_type, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1971), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33457,7 +33332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33474,7 +33349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5924] = 26, + [5932] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -33483,33 +33358,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(379), 1, + ACTIONS(333), 1, anon_sym_match, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1015), 1, anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(1017), 1, anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(1019), 1, anon_sym_type, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1778), 1, sym_expression, - STATE(1940), 1, + STATE(2117), 1, sym_type, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33521,7 +33396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -33530,13 +33405,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1971), 5, + STATE(2040), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33544,7 +33419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33561,69 +33436,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6037] = 26, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + [6045] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1049), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(1029), 1, sym_identifier, - ACTIONS(1051), 1, + ACTIONS(1031), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, + anon_sym_RPAREN, + ACTIONS(1035), 1, + anon_sym_COMMA, + ACTIONS(1037), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1059), 1, - anon_sym_type, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1045), 1, anon_sym_await, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1735), 1, sym_expression, - STATE(1944), 1, - sym_type, - STATE(2647), 1, + STATE(2451), 1, + sym_parenthesized_list_splat, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, + ACTIONS(1041), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1039), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + STATE(2432), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33631,7 +33507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33648,69 +33524,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6150] = 26, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + [6160] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1049), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(1029), 1, sym_identifier, - ACTIONS(1051), 1, + ACTIONS(1031), 1, + anon_sym_LPAREN, + ACTIONS(1037), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1059), 1, - anon_sym_type, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1045), 1, anon_sym_await, - STATE(964), 1, + ACTIONS(1047), 1, + anon_sym_RPAREN, + ACTIONS(1049), 1, + anon_sym_COMMA, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1721), 1, sym_expression, - STATE(2061), 1, - sym_type, - STATE(2647), 1, + STATE(2353), 1, + sym_parenthesized_list_splat, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, + ACTIONS(1041), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1039), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + STATE(2352), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33718,7 +33595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33735,7 +33612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6263] = 26, + [6275] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -33744,33 +33621,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(379), 1, + ACTIONS(333), 1, anon_sym_match, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(1013), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1015), 1, anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(1017), 1, anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(1019), 1, anon_sym_type, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1778), 1, sym_expression, - STATE(1950), 1, + STATE(1970), 1, sym_type, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33782,7 +33659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -33791,13 +33668,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1971), 5, + STATE(2040), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33805,7 +33682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33822,69 +33699,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6376] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [6388] = 26, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, + anon_sym_match, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1021), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(1023), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(1025), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(976), 1, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1817), 1, sym_expression, - STATE(2002), 1, + STATE(2135), 1, sym_type, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33892,7 +33769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33909,69 +33786,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6489] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [6501] = 26, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, + anon_sym_match, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1021), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(1023), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(1025), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(976), 1, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1817), 1, sym_expression, - STATE(2003), 1, + STATE(2424), 1, sym_type, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33979,7 +33856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33996,70 +33873,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6602] = 27, - ACTIONS(767), 1, + [6614] = 26, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1071), 1, - anon_sym_RPAREN, - ACTIONS(1073), 1, - anon_sym_COMMA, - ACTIONS(1075), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(949), 1, + anon_sym_match, + ACTIONS(951), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(953), 1, + anon_sym_type, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - STATE(959), 1, + STATE(987), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1059), 1, sym_string, - STATE(1337), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1803), 1, sym_expression, - STATE(2276), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2128), 1, + sym_type, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2275), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(2061), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34067,7 +33943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34084,69 +33960,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6717] = 26, - ACTIONS(255), 1, + [6727] = 26, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, + anon_sym_LBRACE, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(995), 1, sym_identifier, - ACTIONS(277), 1, + ACTIONS(997), 1, + anon_sym_STAR, + ACTIONS(1001), 1, anon_sym_match, - ACTIONS(282), 1, + ACTIONS(1003), 1, + anon_sym_STAR_STAR, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(1007), 1, + anon_sym_not, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, - anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + STATE(970), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1004), 1, sym_string, - STATE(1416), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1769), 1, sym_expression, - STATE(2334), 1, + STATE(1967), 1, sym_type, - STATE(2653), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(999), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(1942), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34154,7 +34030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34171,69 +34047,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6830] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, + [6840] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(975), 1, - anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, - anon_sym_type, - ACTIONS(985), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1029), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_LPAREN, + ACTIONS(1037), 1, + anon_sym_STAR, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, anon_sym_await, - STATE(976), 1, + ACTIONS(1051), 1, + anon_sym_RPAREN, + ACTIONS(1053), 1, + anon_sym_COMMA, + STATE(968), 1, sym_primary_expression, - STATE(1068), 1, + STATE(998), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1720), 1, sym_expression, - STATE(2068), 1, - sym_type, - STATE(2596), 1, + STATE(2388), 1, + sym_parenthesized_list_splat, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(1041), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1039), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + STATE(2387), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1768), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34241,7 +34118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34258,68 +34135,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6943] = 25, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, + [6955] = 27, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(721), 1, sym_string_start, ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1087), 1, - anon_sym_from, - ACTIONS(1095), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1059), 1, + anon_sym_RPAREN, + ACTIONS(1061), 1, + anon_sym_COMMA, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - STATE(942), 1, + STATE(970), 1, sym_primary_expression, - STATE(981), 1, + STATE(1004), 1, sym_string, - STATE(1147), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1882), 1, sym_expression, - STATE(2059), 1, - sym_expression_list, - STATE(2764), 1, + STATE(2308), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + STATE(2307), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1089), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1753), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34327,7 +34206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34344,81 +34223,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7054] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [7070] = 22, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(373), 1, + anon_sym_TILDE, + ACTIONS(383), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(1071), 1, + sym_identifier, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1075), 1, anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, - sym_primary_expression, - STATE(1017), 1, + ACTIONS(1081), 1, + anon_sym_LBRACK, + ACTIONS(1083), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1416), 1, + STATE(1527), 1, sym_list_splat_pattern, - STATE(1757), 1, - sym_expression, - STATE(2474), 1, - sym_type, - STATE(2653), 1, - sym__named_expression_lhs, + STATE(1663), 1, + sym_primary_expression, + STATE(1680), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(648), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1079), 2, + anon_sym_match, + anon_sym_type, + STATE(1528), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1750), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -34431,70 +34290,85 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7167] = 27, - ACTIONS(699), 1, + ACTIONS(941), 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, + [7175] = 26, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, - anon_sym_RPAREN, - ACTIONS(1103), 1, - anon_sym_COMMA, - ACTIONS(1105), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(949), 1, + anon_sym_match, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, + anon_sym_type, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - STATE(964), 1, + STATE(987), 1, sym_primary_expression, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1803), 1, sym_expression, - STATE(2261), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2127), 1, + sym_type, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2260), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(2061), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34502,7 +34376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34519,82 +34393,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7282] = 27, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [7288] = 22, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(373), 1, + anon_sym_TILDE, + ACTIONS(383), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, ACTIONS(1075), 1, anon_sym_STAR, ACTIONS(1081), 1, - anon_sym_STAR_STAR, + anon_sym_LBRACK, ACTIONS(1083), 1, anon_sym_await, - ACTIONS(1101), 1, - anon_sym_RPAREN, - ACTIONS(1103), 1, - anon_sym_COMMA, - STATE(959), 1, - sym_primary_expression, - STATE(1012), 1, + STATE(1013), 1, sym_string, - STATE(1337), 1, + STATE(1527), 1, sym_list_splat_pattern, - STATE(1686), 1, - sym_expression, - STATE(2261), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, - sym__named_expression_lhs, + STATE(1663), 1, + sym_primary_expression, + STATE(1680), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, + ACTIONS(648), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, + STATE(1528), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2260), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1334), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -34607,69 +34460,85 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7397] = 26, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(927), 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, + [7393] = 26, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, + anon_sym_match, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1021), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(1023), 1, anon_sym_STAR, - ACTIONS(979), 1, - anon_sym_match, - ACTIONS(981), 1, + ACTIONS(1025), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(976), 1, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1817), 1, sym_expression, - STATE(1949), 1, + STATE(2299), 1, sym_type, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34677,7 +34546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34694,69 +34563,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7510] = 26, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [7506] = 26, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, + anon_sym_match, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1049), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1021), 1, sym_identifier, - ACTIONS(1051), 1, + ACTIONS(1023), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, - anon_sym_STAR_STAR, - ACTIONS(1059), 1, + ACTIONS(1025), 1, anon_sym_type, - ACTIONS(1061), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - STATE(964), 1, + STATE(971), 1, sym_primary_expression, - STATE(993), 1, + STATE(1013), 1, sym_string, - STATE(1384), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1817), 1, sym_expression, - STATE(1993), 1, + STATE(2455), 1, sym_type, - STATE(2647), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1743), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34764,7 +34633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34781,69 +34650,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7623] = 26, - ACTIONS(691), 1, + [7619] = 25, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1049), 1, - sym_identifier, - ACTIONS(1051), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(1055), 1, - anon_sym_match, - ACTIONS(1057), 1, - anon_sym_STAR_STAR, - ACTIONS(1059), 1, - anon_sym_type, - ACTIONS(1061), 1, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1085), 1, + sym_identifier, + ACTIONS(1087), 1, + anon_sym_from, + ACTIONS(1095), 1, anon_sym_await, - STATE(964), 1, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1783), 1, sym_expression, - STATE(1994), 1, - sym_type, - STATE(2647), 1, + STATE(2146), 1, + sym_expression_list, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(701), 3, + ACTIONS(1093), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1941), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1743), 7, + ACTIONS(1089), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34851,7 +34719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34868,69 +34736,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7736] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [7730] = 27, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(1029), 1, + sym_identifier, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1037), 1, anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_await, + ACTIONS(1097), 1, + anon_sym_RPAREN, + ACTIONS(1099), 1, + anon_sym_COMMA, + STATE(968), 1, sym_primary_expression, - STATE(1017), 1, + STATE(998), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1744), 1, sym_expression, - STATE(2074), 1, - sym_type, - STATE(2653), 1, + STATE(2437), 1, + sym_parenthesized_list_splat, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1041), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1039), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2436), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1750), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34938,7 +34807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34955,70 +34824,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7849] = 27, - ACTIONS(767), 1, + [7845] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1029), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1037), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1113), 1, + ACTIONS(1101), 1, anon_sym_RPAREN, - ACTIONS(1115), 1, + ACTIONS(1103), 1, anon_sym_COMMA, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1690), 1, + STATE(1740), 1, sym_expression, - STATE(2304), 1, + STATE(2447), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1041), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1039), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2303), 3, + STATE(2439), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35026,7 +34895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35043,70 +34912,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7964] = 27, - ACTIONS(767), 1, + [7960] = 26, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(949), 1, + anon_sym_match, + ACTIONS(951), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(953), 1, + anon_sym_type, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1117), 1, - anon_sym_RPAREN, - ACTIONS(1119), 1, - anon_sym_COMMA, - STATE(959), 1, + STATE(987), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1059), 1, sym_string, - STATE(1337), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(1803), 1, sym_expression, - STATE(2346), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2058), 1, + sym_type, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2345), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(2061), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35114,7 +34982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35131,71 +34999,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8079] = 28, - ACTIONS(767), 1, + [8073] = 26, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(995), 1, + sym_identifier, + ACTIONS(997), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1001), 1, + anon_sym_match, + ACTIONS(1003), 1, + anon_sym_STAR_STAR, + ACTIONS(1005), 1, + anon_sym_type, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1123), 1, - anon_sym_RPAREN, - ACTIONS(1129), 1, + ACTIONS(1011), 1, anon_sym_await, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1769), 1, sym_expression, - STATE(2248), 1, - sym_yield, - STATE(2325), 1, - sym_with_item, - STATE(2670), 1, + STATE(1972), 1, + sym_type, + STATE(2726), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, - anon_sym_match, - anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1942), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35203,7 +35069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35220,70 +35086,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8196] = 27, - ACTIONS(767), 1, + [8186] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1029), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1037), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1131), 1, + ACTIONS(1105), 1, anon_sym_RPAREN, - ACTIONS(1133), 1, + ACTIONS(1107), 1, anon_sym_COMMA, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1755), 1, sym_expression, - STATE(2372), 1, + STATE(2467), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1041), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1039), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2371), 3, + STATE(2466), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35291,7 +35157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35308,61 +35174,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8311] = 22, - ACTIONS(291), 1, + [8301] = 26, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, + anon_sym_match, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(296), 1, - anon_sym_TILDE, - ACTIONS(308), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1027), 1, - sym_identifier, - ACTIONS(1029), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(1031), 1, - anon_sym_STAR, - ACTIONS(1037), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1039), 1, - anon_sym_await, - STATE(1017), 1, + ACTIONS(1021), 1, + sym_identifier, + ACTIONS(1023), 1, + anon_sym_STAR, + ACTIONS(1025), 1, + anon_sym_type, + ACTIONS(1027), 1, + anon_sym_not, + STATE(971), 1, + sym_primary_expression, + STATE(1013), 1, sym_string, - STATE(1475), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1623), 1, - sym_primary_expression, - STATE(1629), 1, - sym_pattern, + STATE(1817), 1, + sym_expression, + STATE(2511), 1, + sym_type, + STATE(2797), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1035), 2, - anon_sym_match, - anon_sym_type, - STATE(1481), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1033), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, - sym_integer, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, + sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(2045), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1781), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -35375,85 +35261,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(957), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [8416] = 26, - ACTIONS(255), 1, + [8414] = 26, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, + anon_sym_LBRACE, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(995), 1, sym_identifier, - ACTIONS(277), 1, + ACTIONS(997), 1, + anon_sym_STAR, + ACTIONS(1001), 1, anon_sym_match, - ACTIONS(282), 1, + ACTIONS(1003), 1, + anon_sym_STAR_STAR, + ACTIONS(1005), 1, anon_sym_type, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(1007), 1, + anon_sym_not, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, - anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + STATE(970), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1004), 1, sym_string, - STATE(1416), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1769), 1, sym_expression, - STATE(2318), 1, + STATE(2106), 1, sym_type, - STATE(2653), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(999), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(1942), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35461,7 +35331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35478,70 +35348,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8529] = 27, - ACTIONS(767), 1, + [8527] = 28, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_STAR, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1083), 1, - anon_sym_await, - ACTIONS(1135), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1111), 1, anon_sym_RPAREN, - ACTIONS(1137), 1, - anon_sym_COMMA, - STATE(959), 1, + ACTIONS(1117), 1, + anon_sym_await, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1729), 1, sym_expression, - STATE(2394), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2293), 1, + sym_yield, + STATE(2517), 1, + sym_with_item, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2822), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2393), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35549,7 +35420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35566,70 +35437,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8644] = 27, - ACTIONS(767), 1, + [8644] = 26, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(949), 1, + anon_sym_match, + ACTIONS(951), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(953), 1, + anon_sym_type, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1139), 1, - anon_sym_RPAREN, - ACTIONS(1141), 1, - anon_sym_COMMA, - STATE(959), 1, + STATE(987), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1059), 1, sym_string, - STATE(1337), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1803), 1, sym_expression, - STATE(2415), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(1975), 1, + sym_type, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(769), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2414), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(2061), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35637,7 +35507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35654,69 +35524,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8759] = 26, - ACTIONS(67), 1, + [8757] = 26, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, + anon_sym_match, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(379), 1, - anon_sym_match, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(1021), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1023), 1, anon_sym_STAR, - ACTIONS(1045), 1, - anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(1025), 1, anon_sym_type, - STATE(859), 1, + ACTIONS(1027), 1, + anon_sym_not, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1817), 1, sym_expression, - STATE(2075), 1, + STATE(2312), 1, sym_type, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1971), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35724,7 +35594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35741,69 +35611,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8872] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, - anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + [8870] = 27, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(1029), 1, + sym_identifier, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1023), 1, + ACTIONS(1037), 1, anon_sym_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1045), 1, + anon_sym_await, + ACTIONS(1059), 1, + anon_sym_RPAREN, + ACTIONS(1061), 1, + anon_sym_COMMA, + STATE(968), 1, sym_primary_expression, - STATE(1017), 1, + STATE(998), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1760), 1, sym_expression, - STATE(2085), 1, - sym_type, - STATE(2653), 1, + STATE(2308), 1, + sym_parenthesized_list_splat, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1041), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1039), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2307), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1750), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35811,7 +35682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35829,68 +35700,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [8985] = 26, - ACTIONS(781), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(1952), 1, + STATE(1968), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35898,7 +35769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35916,68 +35787,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9098] = 26, - ACTIONS(781), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(1893), 1, + STATE(2019), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35985,7 +35856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36003,68 +35874,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9211] = 26, - ACTIONS(781), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(973), 1, + ACTIONS(943), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(945), 1, anon_sym_STAR, - ACTIONS(979), 1, + ACTIONS(949), 1, anon_sym_match, - ACTIONS(981), 1, + ACTIONS(951), 1, + anon_sym_STAR_STAR, + ACTIONS(953), 1, anon_sym_type, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1803), 1, sym_expression, - STATE(1916), 1, + STATE(1946), 1, sym_type, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2043), 5, + STATE(2061), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36072,7 +35943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36090,68 +35961,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9324] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, + ACTIONS(1021), 1, + sym_identifier, ACTIONS(1023), 1, anon_sym_STAR, ACTIONS(1025), 1, + anon_sym_type, + ACTIONS(1027), 1, anon_sym_not, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1817), 1, sym_expression, - STATE(2450), 1, + STATE(2506), 1, sym_type, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36159,7 +36030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36177,68 +36048,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9437] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, + ACTIONS(1021), 1, + sym_identifier, ACTIONS(1023), 1, anon_sym_STAR, ACTIONS(1025), 1, + anon_sym_type, + ACTIONS(1027), 1, anon_sym_not, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1817), 1, sym_expression, - STATE(2452), 1, + STATE(2508), 1, sym_type, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36246,7 +36117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36264,68 +36135,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9550] = 26, - ACTIONS(255), 1, - sym_identifier, - ACTIONS(277), 1, + ACTIONS(267), 1, + anon_sym_STAR_STAR, + ACTIONS(360), 1, anon_sym_match, - ACTIONS(282), 1, - anon_sym_type, - ACTIONS(291), 1, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(325), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, + ACTIONS(1021), 1, + sym_identifier, ACTIONS(1023), 1, anon_sym_STAR, ACTIONS(1025), 1, + anon_sym_type, + ACTIONS(1027), 1, anon_sym_not, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1817), 1, sym_expression, - STATE(2454), 1, + STATE(2510), 1, sym_type, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2045), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36333,7 +36204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36351,69 +36222,69 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9663] = 27, - ACTIONS(767), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(1029), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1037), 1, anon_sym_STAR, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1083), 1, + ACTIONS(1045), 1, anon_sym_await, - ACTIONS(1143), 1, + ACTIONS(1119), 1, anon_sym_RPAREN, - ACTIONS(1145), 1, + ACTIONS(1121), 1, anon_sym_COMMA, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1728), 1, sym_expression, - STATE(2404), 1, + STATE(2414), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1041), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1039), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2403), 3, + STATE(2413), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36421,7 +36292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36439,67 +36310,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9778] = 26, - ACTIONS(699), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1147), 1, + ACTIONS(1123), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36507,7 +36378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36525,155 +36396,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9890] = 26, - ACTIONS(721), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1151), 1, - anon_sym_RBRACK, - STATE(869), 1, - sym_primary_expression, - STATE(969), 1, - sym_string, - STATE(1268), 1, - sym_list_splat_pattern, - STATE(1722), 1, - sym_expression, - STATE(2663), 1, - sym__collection_elements, - STATE(2762), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2242), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1697), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1151), 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, - [10002] = 28, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(855), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, anon_sym_await, - ACTIONS(1153), 1, + ACTIONS(1125), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(2004), 1, sym_expression, - STATE(2386), 1, - sym_yield, - STATE(2424), 1, - sym_list_splat, - STATE(2439), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2659), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36681,7 +36464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36698,68 +36481,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10118] = 26, - ACTIONS(699), 1, + [10002] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1127), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36767,7 +36550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36784,68 +36567,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10230] = 26, - ACTIONS(699), 1, + [10114] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1129), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36853,7 +36636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36870,68 +36653,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10342] = 26, - ACTIONS(699), 1, + [10226] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1159), 1, + ACTIONS(1131), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36939,7 +36722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36956,68 +36739,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10454] = 26, - ACTIONS(699), 1, + [10338] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1161), 1, + ACTIONS(1133), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37025,7 +36808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37042,68 +36825,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10566] = 26, - ACTIONS(699), 1, + [10450] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1163), 1, + ACTIONS(1135), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1741), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2545), 1, + sym_yield, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2732), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37111,7 +36895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37128,68 +36912,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10678] = 26, - ACTIONS(699), 1, + [10564] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(843), 1, + anon_sym_STAR, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1145), 1, + anon_sym_RBRACK, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1165), 1, - anon_sym_RPAREN, - STATE(964), 1, + STATE(967), 1, sym_primary_expression, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1742), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2736), 1, + sym__collection_elements, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2425), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37197,7 +36981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37214,68 +36998,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10790] = 26, - ACTIONS(699), 1, + [10676] = 28, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1167), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1746), 1, sym_expression, - STATE(2590), 1, + STATE(2348), 1, + sym_yield, + STATE(2410), 1, + sym_list_splat, + STATE(2412), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2755), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37283,7 +37069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37300,69 +37086,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10902] = 27, - ACTIONS(767), 1, + [10792] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(843), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(857), 1, anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1169), 1, - anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(1151), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1001), 1, sym_string, - STATE(1337), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(1731), 1, sym_expression, - STATE(2410), 1, - sym_yield, - STATE(2600), 1, + STATE(2772), 1, sym__collection_elements, - STATE(2670), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2425), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37370,7 +37155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37387,68 +37172,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11016] = 26, - ACTIONS(721), 1, + [10904] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1171), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1153), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(2004), 1, sym_expression, - STATE(2750), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37456,7 +37241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37473,70 +37258,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11128] = 28, - ACTIONS(767), 1, + [11016] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1155), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1708), 1, + STATE(2004), 1, sym_expression, - STATE(2368), 1, - sym_list_splat, - STATE(2369), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2410), 1, - sym_yield, - STATE(2600), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37544,7 +37327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37561,68 +37344,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11244] = 26, - ACTIONS(699), 1, + [11128] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1173), 1, + ACTIONS(1157), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37630,7 +37413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37647,68 +37430,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11356] = 26, - ACTIONS(699), 1, + [11240] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1159), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37716,7 +37499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37733,68 +37516,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11468] = 26, - ACTIONS(699), 1, + [11352] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1161), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37802,7 +37585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37819,68 +37602,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11580] = 26, - ACTIONS(699), 1, + [11464] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1179), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1748), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2382), 1, + sym_yield, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2725), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37888,7 +37672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37905,68 +37689,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11692] = 26, - ACTIONS(699), 1, + [11578] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(843), 1, + anon_sym_STAR, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1181), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1165), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1717), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2740), 1, + sym__collection_elements, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2425), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37974,7 +37758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37991,68 +37775,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11804] = 26, - ACTIONS(699), 1, + [11690] = 28, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1135), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1741), 1, sym_expression, - STATE(2590), 1, + STATE(2477), 1, + sym_list_splat, + STATE(2479), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2545), 1, + sym_yield, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2732), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38060,7 +37846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38077,69 +37863,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11916] = 27, - ACTIONS(767), 1, + [11806] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1185), 1, + ACTIONS(1167), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(2004), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2670), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, - STATE(2785), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38147,7 +37932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38164,68 +37949,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12030] = 26, - ACTIONS(721), 1, + [11918] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1187), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1169), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(2004), 1, sym_expression, - STATE(2629), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38233,7 +38018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38250,70 +38035,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12142] = 28, - ACTIONS(767), 1, + [12030] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(2004), 1, sym_expression, - STATE(2255), 1, - sym_list_splat, - STATE(2256), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2364), 1, - sym_yield, - STATE(2633), 1, - sym__collection_elements, - STATE(2670), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38321,7 +38104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38338,69 +38121,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12258] = 27, - ACTIONS(767), 1, + [12142] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1191), 1, + ACTIONS(1173), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(2004), 1, sym_expression, - STATE(2327), 1, - sym_yield, - STATE(2670), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, - STATE(2672), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38408,7 +38190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38425,68 +38207,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12372] = 26, - ACTIONS(721), 1, + [12254] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1193), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1175), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(2004), 1, sym_expression, - STATE(2593), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38494,7 +38276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38511,69 +38293,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12484] = 27, - ACTIONS(767), 1, + [12366] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1195), 1, + ACTIONS(1111), 1, anon_sym_RPAREN, - STATE(959), 1, + ACTIONS(1117), 1, + anon_sym_await, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1737), 1, sym_expression, - STATE(2342), 1, + STATE(2293), 1, sym_yield, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2715), 1, + STATE(2822), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38581,7 +38363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38598,68 +38380,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12598] = 26, - ACTIONS(699), 1, + [12480] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1757), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2363), 1, + sym_yield, + STATE(2682), 1, + sym__collection_elements, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38667,7 +38450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38684,68 +38467,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12710] = 26, - ACTIONS(699), 1, + [12594] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(843), 1, + anon_sym_STAR, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1199), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1179), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1749), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2826), 1, sym__named_expression_lhs, + STATE(2830), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2425), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38753,7 +38536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38770,69 +38553,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12822] = 27, - ACTIONS(767), 1, + [12706] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1153), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1754), 1, sym_expression, - STATE(2386), 1, + STATE(2461), 1, sym_yield, - STATE(2659), 1, + STATE(2655), 1, sym__collection_elements, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38840,7 +38623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38857,68 +38640,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12936] = 26, - ACTIONS(721), 1, + [12820] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(843), 1, + anon_sym_STAR, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1201), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1183), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1268), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1722), 1, sym_expression, - STATE(2762), 1, - sym__named_expression_lhs, - STATE(2787), 1, + STATE(2789), 1, sym__collection_elements, + STATE(2826), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38926,7 +38709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38943,69 +38726,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13048] = 27, - ACTIONS(767), 1, + [12932] = 28, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1754), 1, sym_expression, - STATE(2364), 1, + STATE(2410), 1, + sym_list_splat, + STATE(2412), 1, + sym_parenthesized_list_splat, + STATE(2461), 1, sym_yield, - STATE(2633), 1, + STATE(2655), 1, sym__collection_elements, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39013,7 +38797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39030,68 +38814,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13162] = 26, - ACTIONS(721), 1, + [13048] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1203), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(2004), 1, sym_expression, - STATE(2603), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39099,7 +38883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39116,70 +38900,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13274] = 28, - ACTIONS(767), 1, + [13160] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1185), 1, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(2004), 1, sym_expression, - STATE(2298), 1, - sym_yield, - STATE(2368), 1, - sym_list_splat, - STATE(2369), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2726), 1, sym__named_expression_lhs, - STATE(2785), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39187,7 +38969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39204,68 +38986,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13390] = 26, - ACTIONS(699), 1, + [13272] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1205), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39273,7 +39055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39290,68 +39072,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13502] = 26, - ACTIONS(699), 1, + [13384] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1207), 1, + ACTIONS(1191), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39359,7 +39141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39376,68 +39158,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13614] = 26, - ACTIONS(699), 1, + [13496] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1209), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39445,7 +39227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39462,68 +39244,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13726] = 26, - ACTIONS(699), 1, + [13608] = 28, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1211), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1748), 1, sym_expression, - STATE(2590), 1, + STATE(2382), 1, + sym_yield, + STATE(2477), 1, + sym_list_splat, + STATE(2479), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2725), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39531,7 +39315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39548,69 +39332,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13838] = 27, - ACTIONS(767), 1, + [13724] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1746), 1, sym_expression, - STATE(2339), 1, + STATE(2348), 1, sym_yield, - STATE(2670), 1, - sym__named_expression_lhs, STATE(2694), 1, + sym__named_expression_lhs, + STATE(2755), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, + STATE(2495), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39618,7 +39402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39635,68 +39419,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13952] = 26, - ACTIONS(721), 1, + [13838] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(843), 1, + anon_sym_STAR, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1215), 1, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1195), 1, anon_sym_RBRACK, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1268), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1738), 1, sym_expression, - STATE(2658), 1, + STATE(2769), 1, sym__collection_elements, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2425), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39704,7 +39488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39721,70 +39505,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14064] = 28, - ACTIONS(767), 1, + [13950] = 28, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1727), 1, sym_expression, - STATE(2255), 1, + STATE(2302), 1, sym_list_splat, - STATE(2256), 1, + STATE(2303), 1, sym_parenthesized_list_splat, - STATE(2339), 1, + STATE(2406), 1, sym_yield, - STATE(2670), 1, - sym__named_expression_lhs, STATE(2694), 1, + sym__named_expression_lhs, + STATE(2702), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39792,7 +39576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39809,68 +39593,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14180] = 26, - ACTIONS(699), 1, + [14066] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1199), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39878,7 +39662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39895,68 +39679,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14292] = 26, - ACTIONS(699), 1, + [14178] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39964,7 +39748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39981,68 +39765,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14404] = 26, - ACTIONS(699), 1, + [14290] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1221), 1, + ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40050,7 +39834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40067,68 +39851,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14516] = 26, - ACTIONS(699), 1, + [14402] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1223), 1, + ACTIONS(1205), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40136,7 +39920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40153,69 +39937,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14628] = 27, - ACTIONS(767), 1, + [14514] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(855), 1, - anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1069), 1, - anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1123), 1, - anon_sym_RPAREN, - ACTIONS(1129), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - STATE(959), 1, + ACTIONS(1207), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1685), 1, + STATE(2004), 1, sym_expression, - STATE(2248), 1, - sym_yield, - STATE(2670), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, - STATE(2689), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2269), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40223,7 +40006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40240,68 +40023,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14742] = 26, - ACTIONS(699), 1, + [14626] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1099), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1225), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1727), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2406), 1, + sym_yield, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2702), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40309,7 +40093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40326,68 +40110,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14854] = 26, - ACTIONS(699), 1, + [14740] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(843), 1, + anon_sym_STAR, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1227), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1209), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1751), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2658), 1, + sym__collection_elements, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2425), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40395,7 +40179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40412,68 +40196,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14966] = 26, - ACTIONS(699), 1, + [14852] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1211), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40481,7 +40265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40498,68 +40282,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15078] = 26, - ACTIONS(699), 1, + [14964] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1231), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40567,7 +40351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40584,68 +40368,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15190] = 26, - ACTIONS(721), 1, + [15076] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(815), 1, - anon_sym_RBRACK, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(875), 1, - anon_sym_STAR, - ACTIONS(1149), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - STATE(869), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1215), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(2004), 1, sym_expression, - STATE(2650), 1, - sym__collection_elements, - STATE(2762), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2242), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40653,7 +40437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40670,68 +40454,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15302] = 26, - ACTIONS(699), 1, + [15188] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1233), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40739,7 +40523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40756,68 +40540,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15414] = 26, - ACTIONS(699), 1, + [15300] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1235), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40825,7 +40609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40842,68 +40626,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15526] = 26, - ACTIONS(699), 1, + [15412] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40911,7 +40695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40928,70 +40712,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15638] = 28, - ACTIONS(767), 1, + [15524] = 27, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(855), 1, + ACTIONS(795), 1, anon_sym_STAR, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(1069), 1, + ACTIONS(1031), 1, anon_sym_LPAREN, - ACTIONS(1121), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1195), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1679), 1, + STATE(1719), 1, sym_expression, - STATE(2342), 1, + STATE(2384), 1, sym_yield, - STATE(2424), 1, - sym_list_splat, - STATE(2439), 1, - sym_parenthesized_list_splat, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, - STATE(2715), 1, + STATE(2728), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + STATE(2495), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40999,7 +40782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41016,68 +40799,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15754] = 26, - ACTIONS(699), 1, + [15638] = 26, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(843), 1, + anon_sym_STAR, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1081), 1, - anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, - anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1239), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1225), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1745), 1, sym_expression, - STATE(2590), 1, - sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2727), 1, + sym__collection_elements, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2425), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(689), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41085,7 +40868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41102,66 +40885,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15866] = 25, - ACTIONS(789), 1, + [15750] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1243), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1247), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1227), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(2004), 1, sym_expression, - STATE(2596), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2505), 3, + STATE(2569), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(779), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41169,7 +40954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41186,66 +40971,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15975] = 25, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, + [15862] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1249), 1, - anon_sym_STAR, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(1255), 1, + ACTIONS(1009), 1, anon_sym_lambda, - STATE(935), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, + sym_identifier, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1229), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(973), 1, + STATE(1004), 1, sym_string, - STATE(1231), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(2004), 1, sym_expression, - STATE(2675), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(835), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2029), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(1065), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(733), 4, + anon_sym_exec, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41253,7 +41040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41270,68 +41057,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16084] = 19, - ACTIONS(291), 1, + [15974] = 26, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(1007), 1, + anon_sym_not, + ACTIONS(1009), 1, + anon_sym_lambda, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, + sym_identifier, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(1069), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1231), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1004), 1, + sym_string, + STATE(1421), 1, sym_list_splat_pattern, + STATE(2004), 1, + sym_expression, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(300), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(304), 5, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 16, + STATE(1782), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41348,66 +41143,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16181] = 25, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, + [16086] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1009), 1, + anon_sym_lambda, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1261), 1, - anon_sym_RBRACK, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1233), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(2004), 1, sym_expression, - STATE(2762), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1259), 3, - anon_sym_if, + ACTIONS(1065), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(711), 4, + anon_sym_exec, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41415,7 +41212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41432,66 +41229,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16290] = 25, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, + [16198] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1009), 1, + anon_sym_lambda, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1267), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1069), 1, + anon_sym_await, + ACTIONS(1235), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(2004), 1, sym_expression, - STATE(2762), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1265), 3, - anon_sym_if, + ACTIONS(1065), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(711), 4, + anon_sym_exec, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41499,7 +41298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41516,66 +41315,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16399] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, + [16310] = 28, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(795), 1, + anon_sym_STAR, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1031), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1261), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - ACTIONS(1269), 1, - anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1719), 1, sym_expression, - STATE(2670), 1, + STATE(2302), 1, + sym_list_splat, + STATE(2303), 1, + sym_parenthesized_list_splat, + STATE(2384), 1, + sym_yield, + STATE(2694), 1, sym__named_expression_lhs, + STATE(2728), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2069), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1259), 3, - anon_sym_if, + ACTIONS(1113), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(755), 4, + anon_sym_exec, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41583,7 +41386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41600,66 +41403,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16508] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, + [16426] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(1009), 1, + anon_sym_lambda, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - ACTIONS(1267), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - ACTIONS(1269), 1, - anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(2004), 1, sym_expression, - STATE(2670), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(1127), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2069), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1265), 3, - anon_sym_if, + ACTIONS(1065), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(755), 4, + anon_sym_exec, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41667,7 +41472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41684,64 +41489,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16617] = 23, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, + [16538] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(721), 1, sym_string_start, ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1239), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(981), 1, + STATE(1004), 1, sym_string, - STATE(1147), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(2004), 1, sym_expression, - STATE(2764), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1273), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1753), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41749,7 +41558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41766,66 +41575,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16722] = 25, - ACTIONS(699), 1, + [16650] = 26, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1081), 1, + ACTIONS(1043), 1, anon_sym_STAR_STAR, - ACTIONS(1097), 1, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1105), 1, + ACTIONS(1063), 1, anon_sym_STAR, - ACTIONS(1111), 1, + ACTIONS(1069), 1, anon_sym_await, - STATE(964), 1, + ACTIONS(1241), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(2004), 1, sym_expression, - STATE(2590), 1, + STATE(2582), 1, sym_parenthesized_list_splat, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1109), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1107), 3, + ACTIONS(1065), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2587), 3, + STATE(2569), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41833,7 +41644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41850,66 +41661,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16831] = 25, - ACTIONS(757), 1, + [16762] = 25, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(827), 1, + anon_sym_not, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1247), 1, + anon_sym_RBRACE, + ACTIONS(1249), 1, anon_sym_lambda, - ACTIONS(1275), 1, - anon_sym_RPAREN, - STATE(959), 1, + STATE(930), 1, sym_primary_expression, - STATE(1012), 1, + STATE(985), 1, sym_string, - STATE(1337), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1838), 1, sym_expression, - STATE(2670), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 2, + ACTIONS(819), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1127), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - STATE(2069), 2, + STATE(2076), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, + ACTIONS(1245), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(755), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41917,7 +41728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41934,66 +41745,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16940] = 25, - ACTIONS(789), 1, + [16871] = 25, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(985), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1243), 1, - anon_sym_LPAREN, - ACTIONS(1245), 1, - anon_sym_STAR, - ACTIONS(1279), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1247), 1, anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(967), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1001), 1, sym_string, - STATE(1436), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1871), 1, sym_expression, - STATE(2596), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1141), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + STATE(2060), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, - anon_sym_print, + ACTIONS(1245), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2505), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(779), 4, + anon_sym_for, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42001,7 +41812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42018,45 +41829,45 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17049] = 23, - ACTIONS(666), 1, + [16980] = 23, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(977), 1, anon_sym_lambda, ACTIONS(1085), 1, sym_identifier, ACTIONS(1095), 1, anon_sym_await, - STATE(942), 1, + STATE(948), 1, sym_primary_expression, - STATE(981), 1, + STATE(977), 1, sym_string, - STATE(1147), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1807), 1, sym_expression, - STATE(2764), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -42064,18 +41875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1281), 5, + ACTIONS(1255), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - STATE(1753), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42083,7 +41894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42100,74 +41911,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17154] = 25, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [17085] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1253), 1, - anon_sym_RBRACK, - ACTIONS(1257), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, - sym_primary_expression, - STATE(969), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1268), 1, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1829), 1, - sym_expression, - STATE(2762), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(313), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, - anon_sym_if, + ACTIONS(642), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(711), 4, + anon_sym_exec, + ACTIONS(346), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1697), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1151), 16, + ACTIONS(311), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42184,66 +41989,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17263] = 25, - ACTIONS(674), 1, + [17182] = 25, + ACTIONS(679), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1015), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1279), 1, - anon_sym_RBRACE, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1247), 1, + anon_sym_RPAREN, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(942), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(968), 1, sym_primary_expression, - STATE(981), 1, + STATE(998), 1, sym_string, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1820), 1, sym_expression, - STATE(2764), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(1113), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + STATE(2116), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, - anon_sym_print, + ACTIONS(1245), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2520), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + anon_sym_for, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42251,7 +42056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42268,66 +42073,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17372] = 25, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, + [17291] = 25, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1263), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - ACTIONS(1275), 1, - anon_sym_RBRACE, - STATE(935), 1, + ACTIONS(1267), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(973), 1, + STATE(1059), 1, sym_string, - STATE(1231), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1959), 1, sym_expression, - STATE(2675), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(835), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - STATE(2029), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, - anon_sym_if, + ACTIONS(947), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(733), 4, + anon_sym_exec, + STATE(2615), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42335,7 +42140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42352,66 +42157,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17481] = 25, - ACTIONS(735), 1, + [17400] = 25, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_lambda, - ACTIONS(1261), 1, - anon_sym_RBRACE, - STATE(935), 1, + ACTIONS(1269), 1, + anon_sym_RPAREN, + STATE(968), 1, sym_primary_expression, - STATE(973), 1, + STATE(998), 1, sym_string, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1820), 1, sym_expression, - STATE(2675), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(1113), 2, anon_sym_print, anon_sym_exec, - ACTIONS(835), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2029), 2, + STATE(2116), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1259), 3, + ACTIONS(1271), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(733), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42419,7 +42224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42436,66 +42241,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17590] = 25, - ACTIONS(699), 1, + [17509] = 25, + ACTIONS(679), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(867), 1, - anon_sym_yield, - ACTIONS(1061), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1247), 1, - anon_sym_RPAREN, - ACTIONS(1287), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + ACTIONS(1273), 1, + anon_sym_RPAREN, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(1820), 1, sym_expression, - STATE(2647), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1113), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + STATE(2116), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, - anon_sym_print, + ACTIONS(1275), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2556), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + anon_sym_for, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42503,7 +42308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42520,66 +42325,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17699] = 25, - ACTIONS(674), 1, + [17618] = 25, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1015), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1247), 1, - anon_sym_RBRACE, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(942), 1, + ACTIONS(1253), 1, + anon_sym_lambda, + ACTIONS(1279), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(981), 1, + STATE(1001), 1, sym_string, - STATE(1147), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1871), 1, sym_expression, - STATE(2764), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(1141), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + STATE(2060), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, - anon_sym_print, + ACTIONS(1277), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2520), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + anon_sym_for, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42587,7 +42392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42604,66 +42409,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17808] = 25, - ACTIONS(699), 1, + [17727] = 25, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(867), 1, + ACTIONS(807), 1, anon_sym_yield, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1099), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(1267), 1, anon_sym_RPAREN, - ACTIONS(1287), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1283), 1, anon_sym_STAR, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(2042), 1, sym_expression, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2556), 3, + STATE(2636), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42671,7 +42476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42688,66 +42493,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17917] = 25, - ACTIONS(757), 1, + [17836] = 25, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1253), 1, - anon_sym_RPAREN, - ACTIONS(1269), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1253), 1, anon_sym_lambda, - STATE(959), 1, + ACTIONS(1269), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1001), 1, sym_string, - STATE(1337), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1871), 1, sym_expression, - STATE(2670), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 2, + ACTIONS(1141), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1127), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2069), 2, + STATE(2060), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, + ACTIONS(1271), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(755), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42755,7 +42560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42772,66 +42577,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18026] = 25, - ACTIONS(713), 1, + [17945] = 23, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1257), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(975), 1, + anon_sym_not, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1275), 1, - anon_sym_RBRACK, - STATE(869), 1, + ACTIONS(1085), 1, + sym_identifier, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(969), 1, + STATE(977), 1, sym_string, - STATE(1268), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1807), 1, sym_expression, - STATE(2762), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - STATE(2011), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1277), 3, - anon_sym_if, + ACTIONS(1091), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(711), 4, + anon_sym_exec, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + ACTIONS(1285), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42839,7 +42642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42856,66 +42659,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18135] = 25, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, + [18050] = 25, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1249), 1, - anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1267), 1, - anon_sym_RBRACE, - STATE(935), 1, + ACTIONS(1043), 1, + anon_sym_STAR_STAR, + ACTIONS(1055), 1, + sym_identifier, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_await, + STATE(970), 1, sym_primary_expression, - STATE(973), 1, + STATE(1004), 1, sym_string, - STATE(1231), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(2004), 1, sym_expression, - STATE(2675), 1, + STATE(2582), 1, + sym_parenthesized_list_splat, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(835), 2, + ACTIONS(1067), 2, anon_sym_match, anon_sym_type, - STATE(2029), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1265), 3, - anon_sym_if, + ACTIONS(1065), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(733), 4, + anon_sym_exec, + STATE(2569), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42923,7 +42726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42940,65 +42743,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18244] = 25, - ACTIONS(291), 1, + [18159] = 25, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(831), 1, + anon_sym_yield, + ACTIONS(975), 1, + anon_sym_not, + ACTIONS(977), 1, + anon_sym_lambda, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(1095), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1289), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, ACTIONS(1291), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(948), 1, sym_primary_expression, - STATE(1017), 1, + STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2038), 1, sym_expression, - STATE(2653), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1093), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1091), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2574), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43006,7 +42810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43023,65 +42827,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18352] = 25, - ACTIONS(291), 1, + [18268] = 25, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(831), 1, + anon_sym_yield, + ACTIONS(975), 1, + anon_sym_not, + ACTIONS(977), 1, + anon_sym_lambda, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(1095), 1, + anon_sym_await, + ACTIONS(1267), 1, + anon_sym_RBRACE, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1289), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1293), 1, - anon_sym_RBRACE, - STATE(962), 1, + STATE(948), 1, sym_primary_expression, - STATE(1017), 1, + STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2038), 1, sym_expression, - STATE(2653), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1093), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1091), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2574), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43089,7 +42894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43106,65 +42911,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18460] = 25, - ACTIONS(291), 1, + [18377] = 25, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(857), 1, + anon_sym_yield, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(1263), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1265), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1295), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1291), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1959), 1, sym_expression, - STATE(2653), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2615), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43172,7 +42978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43189,65 +42995,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18568] = 25, - ACTIONS(291), 1, + [18486] = 25, + ACTIONS(679), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1297), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + ACTIONS(1279), 1, + anon_sym_RPAREN, + STATE(968), 1, sym_primary_expression, - STATE(1017), 1, + STATE(998), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1820), 1, sym_expression, - STATE(2653), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, + ACTIONS(1113), 2, anon_sym_print, - anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + STATE(2116), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1277), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43255,7 +43062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43272,65 +43079,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18676] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + [18595] = 25, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(743), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(827), 1, + anon_sym_not, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1301), 1, - anon_sym_from, - ACTIONS(1303), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1249), 1, + anon_sym_lambda, + ACTIONS(1269), 1, + anon_sym_RBRACE, + STATE(930), 1, sym_primary_expression, - STATE(961), 1, + STATE(985), 1, sym_string, - STATE(1077), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1838), 1, sym_expression, - STATE(2400), 1, - sym_expression_list, - STATE(2625), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(819), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(1299), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2076), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, - anon_sym_print, + ACTIONS(1271), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, + anon_sym_for, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43338,7 +43146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43355,65 +43163,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18784] = 25, - ACTIONS(291), 1, + [18704] = 25, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(1305), 1, + ACTIONS(833), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_STAR, + ACTIONS(1249), 1, + anon_sym_lambda, + ACTIONS(1273), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(930), 1, sym_primary_expression, - STATE(1017), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1838), 1, sym_expression, - STATE(2653), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, + ACTIONS(819), 2, anon_sym_print, - anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(821), 2, + anon_sym_match, + anon_sym_type, + STATE(2076), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1275), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43421,7 +43230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43438,64 +43247,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18892] = 24, - ACTIONS(789), 1, + [18813] = 25, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(985), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1243), 1, - anon_sym_LPAREN, - ACTIONS(1245), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1253), 1, + anon_sym_lambda, + ACTIONS(1273), 1, + anon_sym_RBRACK, + STATE(967), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1001), 1, sym_string, - STATE(1436), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1921), 1, + STATE(1871), 1, sym_expression, - STATE(2596), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1141), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + STATE(2060), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, - anon_sym_print, + ACTIONS(1275), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2505), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(779), 4, + anon_sym_for, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43503,7 +43314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43520,64 +43331,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18998] = 24, - ACTIONS(674), 1, + [18922] = 25, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(845), 1, - anon_sym_yield, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, - anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(827), 1, + anon_sym_not, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(942), 1, + ACTIONS(1249), 1, + anon_sym_lambda, + ACTIONS(1279), 1, + anon_sym_RBRACE, + STATE(930), 1, sym_primary_expression, - STATE(981), 1, + STATE(985), 1, sym_string, - STATE(1147), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1838), 1, sym_expression, - STATE(2764), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(819), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + STATE(2076), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, - anon_sym_print, + ACTIONS(1277), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2520), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + anon_sym_for, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43585,7 +43398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43602,65 +43415,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19104] = 25, - ACTIONS(67), 1, + [19031] = 25, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1307), 1, - anon_sym_from, - STATE(859), 1, + ACTIONS(1291), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(961), 1, + STATE(1004), 1, sym_string, - STATE(1077), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(2042), 1, sym_expression, - STATE(2515), 1, - sym_expression_list, - STATE(2625), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(1089), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2636), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43668,7 +43482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43685,65 +43499,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19212] = 25, - ACTIONS(291), 1, + [19140] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(1293), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43751,7 +43565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43768,65 +43582,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19320] = 25, - ACTIONS(291), 1, + [19248] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1311), 1, + ACTIONS(1295), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43834,7 +43648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43851,65 +43665,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19428] = 25, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [19356] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1313), 1, - anon_sym_from, - ACTIONS(1315), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_RBRACE, + STATE(971), 1, sym_primary_expression, - STATE(993), 1, + STATE(1013), 1, sym_string, - STATE(1384), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(2145), 1, sym_expression, - STATE(2517), 1, - sym_expression_list, - STATE(2647), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(1055), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(1089), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43917,7 +43731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43934,65 +43748,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19536] = 25, - ACTIONS(291), 1, + [19464] = 24, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(831), 1, + anon_sym_yield, + ACTIONS(975), 1, + anon_sym_not, + ACTIONS(977), 1, + anon_sym_lambda, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(1095), 1, + anon_sym_await, + ACTIONS(1287), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1289), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1317), 1, - anon_sym_RBRACE, - STATE(962), 1, + STATE(948), 1, sym_primary_expression, - STATE(1017), 1, + STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2038), 1, sym_expression, - STATE(2653), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1093), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1091), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2574), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44000,7 +43813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44017,65 +43830,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19644] = 25, - ACTIONS(291), 1, + [19570] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1319), 1, + ACTIONS(1299), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44083,7 +43896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44100,65 +43913,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19752] = 25, - ACTIONS(291), 1, + [19678] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1301), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44166,7 +43979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44183,65 +43996,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19860] = 25, - ACTIONS(291), 1, + [19786] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1323), 1, + ACTIONS(1303), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44249,7 +44062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44266,65 +44079,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19968] = 25, - ACTIONS(291), 1, + [19894] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1325), 1, + ACTIONS(1305), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44332,7 +44145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44349,64 +44162,147 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20076] = 24, - ACTIONS(699), 1, + [20002] = 25, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, + sym_identifier, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(1307), 1, + anon_sym_from, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(865), 1, + sym_primary_expression, + STATE(966), 1, + sym_string, + STATE(1137), 1, + sym_list_splat_pattern, + STATE(1824), 1, + sym_expression, + STATE(2646), 1, + sym_expression_list, + STATE(2752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1089), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1716), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1076), 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, + [20110] = 24, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(867), 1, + ACTIONS(857), 1, anon_sym_yield, - ACTIONS(1061), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1099), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1289), 1, + ACTIONS(1263), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, anon_sym_STAR, - STATE(964), 1, + STATE(987), 1, sym_primary_expression, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(1959), 1, sym_expression, - STATE(2647), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2556), 3, + STATE(2615), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(689), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44414,7 +44310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44431,65 +44327,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20182] = 25, - ACTIONS(781), 1, + [20216] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1327), 1, + ACTIONS(1311), 1, anon_sym_from, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1856), 1, + STATE(1922), 1, sym_expression, - STATE(2523), 1, + STATE(2550), 1, sym_expression_list, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, ACTIONS(1089), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44497,7 +44393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44514,65 +44410,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20290] = 25, - ACTIONS(291), 1, + [20324] = 25, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_not, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1315), 1, + anon_sym_from, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(970), 1, + sym_primary_expression, + STATE(1004), 1, + sym_string, + STATE(1421), 1, + sym_list_splat_pattern, + STATE(1920), 1, + sym_expression, + STATE(2604), 1, + sym_expression_list, + STATE(2726), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(717), 2, + sym_ellipsis, + sym_float, + ACTIONS(1001), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1089), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(713), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(999), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(701), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1782), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1319), 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, + [20432] = 25, + ACTIONS(350), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1331), 1, + ACTIONS(1319), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44580,7 +44559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44597,65 +44576,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20398] = 25, - ACTIONS(291), 1, + [20540] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1333), 1, + ACTIONS(1321), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44663,7 +44642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44680,65 +44659,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20506] = 25, - ACTIONS(291), 1, + [20648] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1335), 1, - anon_sym_RBRACE, - STATE(962), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + ACTIONS(1325), 1, + anon_sym_from, + STATE(865), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1818), 1, sym_expression, - STATE(2653), 1, + STATE(2489), 1, + sym_expression_list, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1323), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44746,7 +44725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44763,65 +44742,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20614] = 25, - ACTIONS(291), 1, + [20756] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(837), 1, + ACTIONS(823), 1, anon_sym_STAR_STAR, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1337), 1, + ACTIONS(1327), 1, anon_sym_RBRACE, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(2145), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - STATE(2580), 2, + STATE(2629), 2, sym_dictionary_splat, sym_pair, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44829,7 +44808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44846,64 +44825,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20722] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [20864] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1341), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1329), 1, + anon_sym_RBRACE, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2145), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(979), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44911,7 +44891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44928,64 +44908,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20829] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [20972] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1343), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1331), 1, + anon_sym_RBRACE, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2145), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(979), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44993,7 +44974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45010,64 +44991,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20936] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [21080] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1345), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1333), 1, + anon_sym_RBRACE, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2145), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(979), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45075,7 +45057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45092,64 +45074,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21043] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, + [21188] = 24, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(807), 1, + anon_sym_yield, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1057), 1, + anon_sym_LPAREN, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1283), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1347), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2042), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + STATE(2636), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45157,7 +45139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45174,63 +45156,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21150] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [21294] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1351), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1335), 1, + anon_sym_RBRACE, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(2145), 1, sym_expression, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(979), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(1349), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45238,7 +45222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45255,64 +45239,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21255] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [21402] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1353), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1337), 1, + anon_sym_RBRACE, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2145), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(979), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45320,7 +45305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45337,63 +45322,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21362] = 24, - ACTIONS(67), 1, + [21510] = 25, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(640), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1339), 1, + anon_sym_RBRACE, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1819), 1, + STATE(2145), 1, sym_expression, - STATE(2502), 1, - sym_expression_list, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(1355), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45401,7 +45388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45418,64 +45405,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21467] = 25, - ACTIONS(781), 1, + [21618] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1357), 1, + ACTIONS(1343), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45483,7 +45470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45500,64 +45487,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21574] = 25, - ACTIONS(781), 1, + [21725] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1359), 1, + ACTIONS(1345), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45565,7 +45552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45582,64 +45569,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21681] = 25, - ACTIONS(781), 1, + [21832] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1361), 1, + ACTIONS(1347), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45647,7 +45634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45664,64 +45651,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21788] = 25, - ACTIONS(781), 1, + [21939] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1363), 1, + ACTIONS(1349), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45729,7 +45716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45746,64 +45733,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21895] = 25, - ACTIONS(781), 1, + [22046] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1365), 1, + ACTIONS(1351), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45811,7 +45798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45828,71 +45815,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22002] = 24, - ACTIONS(67), 1, + [22153] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1367), 1, - anon_sym_from, - STATE(859), 1, - sym_primary_expression, - STATE(961), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1805), 1, - sym_expression, - STATE(2625), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(313), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - ACTIONS(1273), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(1353), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1665), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1085), 16, + ACTIONS(311), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45909,64 +45891,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22107] = 25, - ACTIONS(781), 1, + [22248] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1369), 1, + ACTIONS(1355), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45974,7 +45956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45991,64 +45973,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22214] = 25, - ACTIONS(781), 1, + [22355] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1371), 1, + ACTIONS(1357), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46056,7 +46038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46073,64 +46055,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22321] = 25, - ACTIONS(781), 1, + [22462] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1373), 1, + ACTIONS(1359), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46138,7 +46120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46155,64 +46137,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22428] = 25, - ACTIONS(781), 1, + [22569] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1361), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46220,7 +46202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46237,64 +46219,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22535] = 25, - ACTIONS(781), 1, + [22676] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1377), 1, + ACTIONS(1363), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46302,7 +46284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46319,7 +46301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22642] = 24, + [22783] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -46328,27 +46310,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1379), 1, - anon_sym_from, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1847), 1, sym_expression, - STATE(2625), 1, + STATE(2556), 1, + sym_expression_list, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46356,17 +46338,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(1281), 2, + ACTIONS(1365), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -46375,7 +46357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46383,7 +46365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46400,140 +46382,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22747] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [22888] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, - sym_primary_expression, - STATE(1416), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(643), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(654), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 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, - [22842] = 25, ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1369), 1, anon_sym_COLON, - ACTIONS(1381), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1881), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1367), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46541,7 +46446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46558,72 +46463,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22949] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [22993] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1383), 1, - anon_sym_RBRACK, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1876), 1, - sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(313), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(631), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, + ACTIONS(311), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46640,64 +46539,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23056] = 25, - ACTIONS(781), 1, + [23088] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1385), 1, + ACTIONS(1371), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46705,7 +46604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46722,64 +46621,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23163] = 25, - ACTIONS(781), 1, + [23195] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1387), 1, + ACTIONS(1373), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46787,7 +46686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46804,64 +46703,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23270] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [23302] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1389), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(823), 1, + anon_sym_STAR_STAR, + ACTIONS(1027), 1, + anon_sym_not, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(2145), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(979), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + STATE(2629), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46869,7 +46767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46886,64 +46784,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23377] = 25, - ACTIONS(781), 1, + [23407] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1391), 1, + ACTIONS(1375), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46951,7 +46849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46968,64 +46866,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23484] = 25, - ACTIONS(781), 1, + [23514] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1393), 1, + ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47033,7 +46931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47050,64 +46948,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23591] = 25, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [23621] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1395), 1, - anon_sym_RBRACK, - STATE(976), 1, + ACTIONS(1379), 1, + anon_sym_from, + STATE(865), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1842), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1255), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47115,7 +47012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47132,64 +47029,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23698] = 25, - ACTIONS(781), 1, + [23726] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1397), 1, + ACTIONS(1381), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47197,7 +47094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47214,63 +47111,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23805] = 24, - ACTIONS(781), 1, + [23833] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1401), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1383), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1898), 1, sym_expression, - STATE(2596), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(1399), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47278,7 +47176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47295,64 +47193,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23910] = 25, - ACTIONS(781), 1, + [23940] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1387), 1, anon_sym_COLON, - ACTIONS(1403), 1, - anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1901), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1385), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47360,7 +47257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47377,64 +47274,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24017] = 25, - ACTIONS(781), 1, + [24045] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1405), 1, + ACTIONS(1389), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47442,7 +47339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47459,63 +47356,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24124] = 24, - ACTIONS(291), 1, + [24152] = 25, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_STAR_STAR, - ACTIONS(1025), 1, - anon_sym_not, - STATE(962), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1391), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(2105), 1, + STATE(1898), 1, sym_expression, - STATE(2653), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - STATE(2580), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47523,7 +47421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47540,66 +47438,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24229] = 19, - ACTIONS(291), 1, + [24259] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(309), 1, + sym_identifier, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + ACTIONS(1393), 1, + anon_sym_from, + STATE(865), 1, sym_primary_expression, - STATE(1416), 1, + STATE(966), 1, + sym_string, + STATE(1137), 1, sym_list_splat_pattern, + STATE(1842), 1, + sym_expression, + STATE(2752), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(1285), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1407), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(304), 5, + ACTIONS(77), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 16, + STATE(1716), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47616,64 +47519,135 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24324] = 25, - ACTIONS(781), 1, + [24364] = 14, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(335), 1, + anon_sym_EQ, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1397), 1, + anon_sym_type, + ACTIONS(1399), 1, + anon_sym_LBRACK, + STATE(2138), 1, + sym_type_parameters, + STATE(2650), 1, + sym__type_alias_left_hand_side, + STATE(2753), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(311), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(789), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(346), 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(313), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [24449] = 25, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1409), 1, + ACTIONS(1401), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47681,7 +47655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47698,64 +47672,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24431] = 25, - ACTIONS(781), 1, + [24556] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1411), 1, + ACTIONS(1403), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47763,7 +47737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47780,64 +47754,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24538] = 25, - ACTIONS(781), 1, + [24663] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1413), 1, + ACTIONS(1405), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47845,7 +47819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47862,64 +47836,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24645] = 25, - ACTIONS(781), 1, + [24770] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1415), 1, + ACTIONS(1407), 1, anon_sym_RBRACK, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1898), 1, sym_expression, - STATE(2581), 1, + STATE(2588), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47927,7 +47901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47944,62 +47918,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24752] = 24, - ACTIONS(291), 1, + [24877] = 25, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1417), 1, + ACTIONS(1341), 1, anon_sym_COLON, - ACTIONS(1419), 1, - anon_sym_STAR2, - STATE(962), 1, + ACTIONS(1409), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1898), 1, sym_expression, - STATE(2653), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48007,7 +47983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48024,65 +48000,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24856] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [24984] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1411), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1059), 1, + sym_string, + STATE(1510), 1, sym_list_splat_pattern, + STATE(1898), 1, + sym_expression, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(1407), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(296), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(767), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 16, + STATE(1785), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48099,65 +48082,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24950] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [25091] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1413), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1059), 1, + sym_string, + STATE(1510), 1, sym_list_splat_pattern, + STATE(1898), 1, + sym_expression, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(300), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(767), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 16, + STATE(1785), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48174,61 +48164,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25044] = 23, - ACTIONS(67), 1, + [25198] = 25, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1415), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(961), 1, + STATE(1059), 1, sym_string, - STATE(1077), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1898), 1, sym_expression, - STATE(2625), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(1421), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48236,7 +48229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48253,61 +48246,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25146] = 23, - ACTIONS(67), 1, + [25305] = 25, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1417), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(961), 1, + STATE(1059), 1, sym_string, - STATE(1077), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1898), 1, sym_expression, - STATE(2625), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(1423), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48315,7 +48311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48332,62 +48328,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25248] = 24, - ACTIONS(291), 1, + [25412] = 25, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1419), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1898), 1, sym_expression, - STATE(2350), 1, - sym_with_item, - STATE(2617), 1, - sym_with_clause, - STATE(2653), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48395,7 +48393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48412,66 +48410,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25352] = 20, - ACTIONS(284), 1, - anon_sym_in, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_COMMA, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [25519] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1421), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1059), 1, + sym_string, + STATE(1510), 1, sym_list_splat_pattern, + STATE(1898), 1, + sym_expression, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(767), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 16, + STATE(1785), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48488,62 +48492,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25448] = 24, - ACTIONS(691), 1, + [25626] = 25, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1429), 1, - anon_sym_RPAREN, - STATE(964), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + ACTIONS(1423), 1, + anon_sym_RBRACK, + STATE(987), 1, sym_primary_expression, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(1898), 1, sym_expression, - STATE(2494), 1, - sym_with_item, - STATE(2647), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48551,7 +48557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48568,62 +48574,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25552] = 24, - ACTIONS(291), 1, + [25733] = 24, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1431), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(962), 1, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1864), 1, sym_expression, - STATE(2514), 1, - sym_with_item, - STATE(2653), 1, + STATE(2488), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48631,7 +48637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48648,61 +48654,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25656] = 23, - ACTIONS(691), 1, + [25837] = 23, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(967), 1, sym_primary_expression, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1863), 1, sym_expression, - STATE(2647), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(1273), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(701), 3, + STATE(2059), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48710,7 +48716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48727,61 +48733,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25758] = 23, - ACTIONS(691), 1, + [25939] = 23, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(964), 1, + STATE(987), 1, sym_primary_expression, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1944), 1, sym_expression, - STATE(2647), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(1281), 2, - anon_sym_RPAREN, + ACTIONS(1385), 2, anon_sym_COMMA, - ACTIONS(701), 3, + anon_sym_RBRACK, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48789,7 +48795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48806,61 +48812,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25860] = 23, - ACTIONS(67), 1, + [26041] = 23, + ACTIONS(679), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(968), 1, sym_primary_expression, - STATE(961), 1, + STATE(998), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1820), 1, sym_expression, - STATE(2625), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(1433), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2116), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48868,7 +48874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48885,65 +48891,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25962] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [26143] = 23, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(765), 1, + sym_string_start, + ACTIONS(853), 1, + anon_sym_not, + ACTIONS(1137), 1, + sym_identifier, + ACTIONS(1147), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(967), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1001), 1, + sym_string, + STATE(1284), 1, sym_list_splat_pattern, + STATE(1871), 1, + sym_expression, + STATE(2826), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(302), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(643), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(656), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + STATE(2060), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(745), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 16, + STATE(1865), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48960,65 +48970,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26056] = 19, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [26245] = 23, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1124), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + STATE(987), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1059), 1, + sym_string, + STATE(1510), 1, sym_list_splat_pattern, + STATE(2001), 1, + sym_expression, + STATE(2651), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(300), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(1425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(767), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(257), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1348), 16, + STATE(1785), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49035,61 +49049,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26150] = 23, - ACTIONS(781), 1, + [26347] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1898), 1, sym_expression, - STATE(2596), 1, + STATE(2588), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(1273), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49097,7 +49112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49114,61 +49129,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26252] = 23, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [26451] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(976), 1, + STATE(865), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(1866), 1, sym_expression, - STATE(2596), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(1281), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(1427), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49176,7 +49191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49193,61 +49208,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26354] = 23, - ACTIONS(781), 1, + [26553] = 23, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(968), 1, sym_primary_expression, - STATE(1068), 1, + STATE(998), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1970), 1, + STATE(1820), 1, sym_expression, - STATE(2596), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(1399), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + STATE(2021), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49255,7 +49270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49272,61 +49287,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26456] = 23, - ACTIONS(757), 1, + [26655] = 23, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1259), 1, anon_sym_lambda, - STATE(959), 1, + STATE(968), 1, sym_primary_expression, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1822), 1, sym_expression, - STATE(2670), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(1889), 2, + STATE(2094), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49334,7 +49349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49351,62 +49366,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26558] = 24, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [26757] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1435), 1, - anon_sym_RPAREN, - STATE(964), 1, + STATE(865), 1, sym_primary_expression, - STATE(993), 1, + STATE(966), 1, sym_string, - STATE(1384), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(1913), 1, sym_expression, - STATE(2494), 1, - sym_with_item, - STATE(2647), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(1429), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49414,7 +49428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49431,61 +49445,137 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26662] = 23, - ACTIONS(713), 1, + [26859] = 19, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(640), 1, + anon_sym_STAR, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(631), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(644), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(311), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1345), 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, + [26953] = 24, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(1009), 1, + anon_sym_lambda, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + ACTIONS(1431), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1965), 1, sym_expression, - STATE(2762), 1, + STATE(2552), 1, + sym_with_item, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - STATE(1984), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49493,7 +49583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49510,7 +49600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26764] = 23, + [27057] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -49519,25 +49609,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1913), 1, sym_expression, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49545,17 +49635,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(1437), 2, + ACTIONS(1433), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49564,7 +49654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49572,7 +49662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49589,7 +49679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26866] = 23, + [27159] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -49598,25 +49688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1842), 1, sym_expression, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49624,17 +49714,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(1439), 2, + ACTIONS(1435), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49643,7 +49733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49651,7 +49741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49668,61 +49758,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26968] = 23, - ACTIONS(713), 1, + [27261] = 23, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(1253), 1, anon_sym_lambda, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1268), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1871), 1, sym_expression, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(1909), 2, + STATE(2032), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49730,7 +49820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49747,61 +49837,129 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27070] = 23, - ACTIONS(781), 1, + [27363] = 11, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(1395), 1, + sym_identifier, + ACTIONS(1397), 1, + anon_sym_type, + STATE(2650), 1, + sym__type_alias_left_hand_side, + STATE(2753), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(335), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(311), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(346), 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(313), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [27441] = 24, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1437), 1, + anon_sym_RPAREN, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1895), 1, + STATE(1965), 1, sym_expression, - STATE(2596), 1, + STATE(2552), 1, + sym_with_item, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(1441), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49809,7 +49967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49826,61 +49984,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27172] = 23, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [27545] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + ACTIONS(1441), 1, + anon_sym_COLON, + STATE(971), 1, sym_primary_expression, - STATE(969), 1, + STATE(1013), 1, sym_string, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(2017), 1, sym_expression, - STATE(2762), 1, + STATE(2592), 1, + sym_with_item, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - STATE(2008), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49888,7 +50047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49905,61 +50064,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27274] = 23, - ACTIONS(757), 1, + [27649] = 23, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1009), 1, + anon_sym_lambda, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1939), 1, sym_expression, - STATE(2670), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - STATE(1901), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(1255), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49967,7 +50126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49984,61 +50143,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27376] = 23, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [27751] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_lambda, - STATE(869), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(971), 1, sym_primary_expression, - STATE(969), 1, + STATE(1013), 1, sym_string, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(2017), 1, sym_expression, - STATE(2762), 1, + STATE(2431), 1, + sym_with_item, + STATE(2709), 1, + sym_with_clause, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - STATE(2086), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50046,7 +50206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50063,61 +50223,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27478] = 23, - ACTIONS(713), 1, + [27855] = 23, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1263), 1, + ACTIONS(1249), 1, anon_sym_lambda, - STATE(869), 1, + STATE(930), 1, sym_primary_expression, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(1268), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1838), 1, sym_expression, - STATE(2762), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - STATE(2011), 2, + STATE(2028), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(723), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50125,7 +50285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50142,70 +50302,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27580] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [27957] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1795), 1, - sym_expression, - STATE(2315), 1, - sym_slice, - STATE(2596), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(313), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(346), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, + ACTIONS(311), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50222,61 +50377,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27684] = 23, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [28051] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(847), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(935), 1, + STATE(865), 1, sym_primary_expression, - STATE(973), 1, + STATE(966), 1, sym_string, - STATE(1231), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1913), 1, sym_expression, - STATE(2675), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - STATE(1906), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(1445), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50284,7 +50439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50301,61 +50456,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27786] = 23, - ACTIONS(735), 1, + [28153] = 23, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(935), 1, + STATE(987), 1, sym_primary_expression, - STATE(973), 1, + STATE(1059), 1, sym_string, - STATE(1231), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(2009), 1, sym_expression, - STATE(2675), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - STATE(2028), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(1255), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50363,7 +50518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50380,61 +50535,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27888] = 23, - ACTIONS(735), 1, + [28255] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(935), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + STATE(987), 1, sym_primary_expression, - STATE(973), 1, + STATE(1059), 1, sym_string, - STATE(1231), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1875), 1, sym_expression, - STATE(2675), 1, + STATE(2365), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - STATE(2035), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50442,7 +50598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50459,69 +50615,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27990] = 23, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [28359] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, - anon_sym_not, - ACTIONS(847), 1, - anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1255), 1, - anon_sym_lambda, - STATE(935), 1, - sym_primary_expression, - STATE(973), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1231), 1, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1809), 1, - sym_expression, - STATE(2675), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(313), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - STATE(2029), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(1353), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1765), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1206), 16, + ACTIONS(311), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50538,69 +50690,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28092] = 23, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [28453] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1954), 1, - sym_expression, - STATE(2596), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(313), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(346), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - ACTIONS(1443), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(791), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1768), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1439), 16, + ACTIONS(311), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50617,62 +50765,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28194] = 24, - ACTIONS(781), 1, + [28547] = 23, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, + ACTIONS(1249), 1, + anon_sym_lambda, + STATE(930), 1, sym_primary_expression, - STATE(1068), 1, + STATE(985), 1, sym_string, - STATE(1436), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1876), 1, + STATE(1838), 1, sym_expression, - STATE(2581), 1, - sym_slice, - STATE(2596), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + STATE(1933), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50680,7 +50827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50697,61 +50844,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28298] = 23, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [28649] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(959), 1, + ACTIONS(1447), 1, + anon_sym_COLON, + STATE(971), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1013), 1, sym_string, - STATE(1337), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(2017), 1, sym_expression, - STATE(2670), 1, + STATE(2592), 1, + sym_with_item, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, - sym_ellipsis, - sym_float, - ACTIONS(1127), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - STATE(2066), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50759,7 +50907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50776,61 +50924,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28400] = 23, - ACTIONS(67), 1, + [28753] = 23, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(859), 1, + STATE(970), 1, sym_primary_expression, - STATE(961), 1, + STATE(1004), 1, sym_string, - STATE(1077), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1939), 1, sym_expression, - STATE(2625), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(1445), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1285), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50838,7 +50986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50855,61 +51003,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28502] = 23, - ACTIONS(67), 1, + [28855] = 23, + ACTIONS(679), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(803), 1, + anon_sym_not, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1259), 1, + anon_sym_lambda, + STATE(968), 1, sym_primary_expression, - STATE(961), 1, + STATE(998), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1868), 1, sym_expression, - STATE(2625), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(1447), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2133), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50917,7 +51065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50934,61 +51082,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28604] = 23, - ACTIONS(757), 1, + [28957] = 23, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(827), 1, + anon_sym_not, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1249), 1, anon_sym_lambda, - STATE(959), 1, + STATE(930), 1, sym_primary_expression, - STATE(1012), 1, + STATE(985), 1, sym_string, - STATE(1337), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1848), 1, sym_expression, - STATE(2670), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - STATE(2010), 2, + STATE(2071), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50996,7 +51144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51013,62 +51161,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28706] = 24, - ACTIONS(291), 1, + [29059] = 23, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(962), 1, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1955), 1, sym_expression, - STATE(2350), 1, - sym_with_item, - STATE(2605), 1, - sym_with_clause, - STATE(2653), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1449), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51076,7 +51223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51093,62 +51240,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28810] = 24, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [29161] = 23, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(765), 1, + sym_string_start, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1137), 1, + sym_identifier, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1449), 1, - anon_sym_COLON, - STATE(962), 1, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(967), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1001), 1, sym_string, - STATE(1416), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1871), 1, sym_expression, - STATE(2514), 1, - sym_with_item, - STATE(2653), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + STATE(2024), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1141), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51156,7 +51302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51173,61 +51319,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28914] = 23, - ACTIONS(757), 1, + [29263] = 23, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(1121), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(827), 1, + anon_sym_not, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1249), 1, anon_sym_lambda, - STATE(959), 1, + STATE(930), 1, sym_primary_expression, - STATE(1012), 1, + STATE(985), 1, sym_string, - STATE(1337), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1856), 1, sym_expression, - STATE(2670), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - STATE(2069), 2, + STATE(2099), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(769), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51235,7 +51381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51252,62 +51398,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29016] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [29365] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(865), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(1842), 1, sym_expression, - STATE(2406), 1, - sym_slice, - STATE(2596), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1451), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51315,7 +51460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51332,62 +51477,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29120] = 24, - ACTIONS(291), 1, + [29467] = 23, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(1451), 1, - anon_sym_COLON, - ACTIONS(1453), 1, - anon_sym_STAR2, - STATE(962), 1, + ACTIONS(833), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_STAR, + ACTIONS(1249), 1, + anon_sym_lambda, + STATE(930), 1, sym_primary_expression, - STATE(1017), 1, + STATE(985), 1, sym_string, - STATE(1416), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1872), 1, + STATE(1838), 1, sym_expression, - STATE(2653), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(821), 2, + anon_sym_match, + anon_sym_type, + STATE(2076), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(819), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51395,7 +51539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51412,62 +51556,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29224] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [29569] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(976), 1, + STATE(865), 1, sym_primary_expression, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1436), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1806), 1, + STATE(1913), 1, sym_expression, - STATE(2263), 1, - sym_slice, - STATE(2596), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(1453), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51475,7 +51618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51492,62 +51635,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29328] = 24, - ACTIONS(781), 1, + [29671] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1823), 1, sym_expression, - STATE(2305), 1, + STATE(2452), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51555,7 +51698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51572,62 +51715,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29432] = 24, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [29775] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1241), 1, - sym_identifier, - ACTIONS(1329), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1455), 1, anon_sym_COLON, - STATE(976), 1, + ACTIONS(1457), 1, + anon_sym_STAR2, + STATE(971), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1908), 1, sym_expression, - STATE(2348), 1, - sym_slice, - STATE(2596), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(979), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51635,7 +51778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51652,62 +51795,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29536] = 24, - ACTIONS(781), 1, + [29879] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1816), 1, + STATE(1835), 1, sym_expression, - STATE(2375), 1, + STATE(2311), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51715,7 +51858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51732,62 +51875,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29640] = 24, - ACTIONS(781), 1, + [29983] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1821), 1, + STATE(1846), 1, sym_expression, - STATE(2396), 1, + STATE(2354), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51795,7 +51938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51812,62 +51955,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29744] = 24, - ACTIONS(781), 1, + [30087] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1853), 1, sym_expression, - STATE(2418), 1, + STATE(2389), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51875,7 +52018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51892,62 +52035,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29848] = 24, - ACTIONS(781), 1, + [30191] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1787), 1, + STATE(1857), 1, sym_expression, - STATE(2428), 1, + STATE(2415), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51955,7 +52098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51972,62 +52115,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29952] = 24, - ACTIONS(781), 1, + [30295] = 24, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1341), 1, anon_sym_COLON, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1859), 1, sym_expression, - STATE(2435), 1, + STATE(2440), 1, sym_slice, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52035,7 +52178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52052,62 +52195,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30056] = 24, - ACTIONS(291), 1, + [30399] = 24, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1860), 1, sym_expression, - STATE(2350), 1, - sym_with_item, - STATE(2653), 1, + STATE(2469), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, - STATE(2667), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52115,7 +52258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52132,62 +52275,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30160] = 24, - ACTIONS(291), 1, + [30503] = 24, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1425), 1, - anon_sym_LPAREN, - ACTIONS(1427), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1861), 1, sym_expression, - STATE(2350), 1, - sym_with_item, - STATE(2653), 1, + STATE(2482), 1, + sym_slice, + STATE(2651), 1, sym__named_expression_lhs, - STATE(2674), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52195,7 +52338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52212,61 +52355,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30264] = 23, - ACTIONS(735), 1, + [30607] = 23, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(847), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1255), 1, + ACTIONS(1259), 1, anon_sym_lambda, - STATE(935), 1, + STATE(968), 1, sym_primary_expression, - STATE(973), 1, + STATE(998), 1, sym_string, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1820), 1, sym_expression, - STATE(2675), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(1912), 2, + STATE(2016), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52274,7 +52417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52291,125 +52434,138 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30366] = 10, - ACTIONS(264), 1, + [30709] = 20, + ACTIONS(335), 1, + anon_sym_in, + ACTIONS(346), 1, anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(1455), 1, - sym_identifier, - ACTIONS(1457), 1, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, sym_string_start, - STATE(2245), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(640), 1, + anon_sym_STAR, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + STATE(1013), 1, sym_string, + STATE(1141), 1, + sym_primary_expression, + STATE(1416), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(257), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(313), 2, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(300), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(259), 22, - anon_sym_as, - anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(644), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(311), 9, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [30441] = 23, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + STATE(1345), 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, + [30805] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(964), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(971), 1, sym_primary_expression, - STATE(993), 1, + STATE(1013), 1, sym_string, - STATE(1384), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1892), 1, + STATE(2017), 1, sym_expression, - STATE(2494), 1, + STATE(2431), 1, sym_with_item, - STATE(2647), 1, + STATE(2724), 1, + sym_with_clause, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(1055), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52417,7 +52573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52434,60 +52590,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30542] = 23, - ACTIONS(291), 1, + [30909] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1281), 1, - anon_sym_COLON, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(2017), 1, sym_expression, - STATE(2653), 1, + STATE(2431), 1, + sym_with_item, + STATE(2731), 1, + sym_with_clause, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52495,7 +52653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52512,60 +52670,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30643] = 23, - ACTIONS(291), 1, + [31013] = 24, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1459), 1, - anon_sym_COLON, - STATE(962), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(2017), 1, sym_expression, - STATE(2653), 1, + STATE(2431), 1, + sym_with_item, + STATE(2707), 1, + sym_with_clause, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52573,7 +52733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52590,126 +52750,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30744] = 11, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(274), 1, - anon_sym_COLON, - ACTIONS(284), 1, - anon_sym_EQ, - ACTIONS(1455), 1, + [31117] = 24, + ACTIONS(350), 1, sym_identifier, - ACTIONS(1457), 1, - sym_string_start, - STATE(2245), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(257), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(300), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(259), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [30821] = 23, - ACTIONS(291), 1, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(640), 1, + anon_sym_STAR, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1461), 1, + ACTIONS(1459), 1, anon_sym_COLON, - STATE(962), 1, + ACTIONS(1461), 1, + anon_sym_STAR2, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1874), 1, + STATE(1929), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52717,7 +52813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52734,60 +52830,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30922] = 23, - ACTIONS(291), 1, + [31221] = 23, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1463), 1, - anon_sym_COLON, - STATE(962), 1, + STATE(987), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1059), 1, sym_string, - STATE(1416), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(2009), 1, sym_expression, - STATE(2653), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1285), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52795,7 +52892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52812,60 +52909,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31023] = 23, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [31323] = 23, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(765), 1, + sym_string_start, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1137), 1, + sym_identifier, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(1465), 1, - anon_sym_COLON, - STATE(962), 1, + ACTIONS(1253), 1, + anon_sym_lambda, + STATE(967), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1001), 1, sym_string, - STATE(1416), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1830), 1, sym_expression, - STATE(2653), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1143), 2, + anon_sym_match, + anon_sym_type, + STATE(2107), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1141), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52873,7 +52971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52890,60 +52988,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31124] = 23, - ACTIONS(291), 1, + [31425] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1467), 1, + ACTIONS(1463), 1, anon_sym_COLON, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(2014), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52951,7 +53049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52968,60 +53066,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31225] = 23, - ACTIONS(291), 1, + [31526] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1255), 1, + anon_sym_COLON, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2008), 1, sym_expression, - STATE(2514), 1, - sym_with_item, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53029,7 +53127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53046,125 +53144,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31326] = 10, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(1469), 1, - anon_sym_for, - ACTIONS(1471), 1, - anon_sym_with, - ACTIONS(1473), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(300), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(259), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [31401] = 23, - ACTIONS(291), 1, + [31627] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1842), 1, + STATE(1924), 1, sym_expression, - STATE(2638), 1, - sym_expression_list, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, + STATE(2811), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53172,7 +53205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53189,60 +53222,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31502] = 23, - ACTIONS(291), 1, + [31728] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_COLON, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(2008), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53250,7 +53283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53267,60 +53300,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31603] = 23, - ACTIONS(291), 1, + [31829] = 23, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_not, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1475), 1, - anon_sym_COLON, - STATE(962), 1, + STATE(970), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1004), 1, sym_string, - STATE(1416), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1965), 1, sym_expression, - STATE(2653), 1, + STATE(2552), 1, + sym_with_item, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1001), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(999), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53328,7 +53361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53345,60 +53378,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31704] = 23, - ACTIONS(291), 1, + [31930] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1465), 1, + anon_sym_COLON, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1851), 1, + STATE(2014), 1, sym_expression, - STATE(2595), 1, - sym_expression_list, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53406,7 +53439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53423,24 +53456,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31805] = 10, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(1477), 1, - anon_sym_for, - ACTIONS(1479), 1, - anon_sym_with, - ACTIONS(1481), 1, - anon_sym_def, + [32031] = 23, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, + sym_identifier, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(865), 1, + sym_primary_expression, + STATE(966), 1, + sym_string, + STATE(1137), 1, + sym_list_splat_pattern, + STATE(1862), 1, + sym_expression, + STATE(2631), 1, + sym_expression_list, + STATE(2752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1716), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1076), 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, + [32132] = 10, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(1467), 1, + sym_identifier, + ACTIONS(1469), 1, + sym_string_start, + STATE(2324), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, + ACTIONS(335), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(300), 13, + ACTIONS(311), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(346), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -53454,94 +53576,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(259), 15, + ACTIONS(313), 22, + anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + anon_sym_is, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [31880] = 23, - ACTIONS(291), 1, + [32207] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(1471), 1, + anon_sym_COLON, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1869), 1, + STATE(1916), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, - STATE(2682), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53549,7 +53660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53566,60 +53677,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31981] = 23, - ACTIONS(291), 1, + [32308] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1870), 1, + STATE(2017), 1, sym_expression, - STATE(2653), 1, + STATE(2592), 1, + sym_with_item, + STATE(2797), 1, sym__named_expression_lhs, - STATE(2691), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53627,7 +53738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53644,60 +53755,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32082] = 23, - ACTIONS(67), 1, + [32409] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1473), 1, + anon_sym_COLON, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(2014), 1, sym_expression, - STATE(2506), 1, - sym_expression_list, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53705,7 +53816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53722,58 +53833,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32183] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [32510] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, - anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(381), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1475), 1, + anon_sym_COLON, + STATE(971), 1, sym_primary_expression, - STATE(981), 1, + STATE(1013), 1, sym_string, - STATE(1147), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(2014), 1, sym_expression, - STATE(2764), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - sym_ellipsis, - sym_float, - ACTIONS(1093), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53781,7 +53894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53798,121 +53911,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32281] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(713), 1, - sym_else_clause, - STATE(808), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(482), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1485), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [32611] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(375), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(381), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [32353] = 22, - ACTIONS(757), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(959), 1, + STATE(971), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1013), 1, sym_string, - STATE(1337), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1905), 1, sym_expression, - STATE(2670), 1, + STATE(2739), 1, + sym_expression_list, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, - sym_ellipsis, - sym_float, - ACTIONS(1127), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53920,7 +53972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53937,121 +53989,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32451] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(702), 1, - sym_else_clause, - STATE(750), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1495), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [32712] = 23, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1493), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(375), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(381), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [32523] = 22, - ACTIONS(757), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(865), 1, - anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, - anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(959), 1, + STATE(971), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1013), 1, sym_string, - STATE(1337), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1907), 1, sym_expression, - STATE(2670), 1, + STATE(2748), 1, + sym_expression_list, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, - sym_ellipsis, - sym_float, - ACTIONS(1127), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54059,7 +54050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54076,134 +54067,126 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32621] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + [32813] = 11, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(335), 1, + anon_sym_EQ, + ACTIONS(1467), 1, sym_identifier, - ACTIONS(390), 1, - anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(859), 1, - sym_primary_expression, - STATE(961), 1, + ACTIONS(1469), 1, + sym_string_start, + STATE(2324), 1, sym_string, - STATE(1077), 1, - sym_list_splat_pattern, - STATE(1818), 1, - sym_expression, - STATE(2625), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, + ACTIONS(311), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(346), 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(313), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1665), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1085), 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, - [32719] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [32890] = 23, + ACTIONS(350), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(859), 1, + ACTIONS(1477), 1, + anon_sym_COLON, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(2098), 1, + STATE(1909), 1, sym_expression, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54211,7 +54194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54228,58 +54211,125 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32817] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + [32991] = 10, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(1479), 1, + anon_sym_for, + ACTIONS(1481), 1, + anon_sym_with, + ACTIONS(1483), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(335), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(346), 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(313), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(311), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [33066] = 23, + ACTIONS(350), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(859), 1, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1899), 1, sym_expression, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, + STATE(2806), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54287,7 +54337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54304,58 +54354,123 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32915] = 22, - ACTIONS(735), 1, + [33167] = 10, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(1485), 1, + anon_sym_for, + ACTIONS(1487), 1, + anon_sym_with, + ACTIONS(1489), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(335), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(346), 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(313), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(311), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(743), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(747), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [33242] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, + sym_identifier, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(935), 1, + STATE(865), 1, sym_primary_expression, - STATE(973), 1, + STATE(966), 1, sym_string, - STATE(1231), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1831), 1, + STATE(1702), 1, sym_expression, - STATE(2675), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54363,7 +54478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54380,61 +54495,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33013] = 23, - ACTIONS(781), 1, + [33340] = 22, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1329), 1, - anon_sym_STAR, - ACTIONS(1497), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1503), 1, + ACTIONS(1117), 1, anon_sym_await, - STATE(992), 1, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(968), 1, sym_primary_expression, - STATE(1068), 1, + STATE(998), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1867), 1, sym_expression, - STATE(2596), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1501), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(1214), 2, - sym_attribute, - sym_subscript, - ACTIONS(791), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1499), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54442,9 +54554,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 14, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54457,26 +54571,26 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33113] = 9, - ACTIONS(1509), 1, + [33438] = 9, + ACTIONS(1495), 1, anon_sym_else, - ACTIONS(1511), 1, + ACTIONS(1497), 1, anon_sym_except, - ACTIONS(1513), 1, + ACTIONS(1499), 1, anon_sym_finally, - STATE(699), 1, + STATE(718), 1, sym_else_clause, - STATE(741), 1, + STATE(842), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(607), 2, + STATE(613), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(1505), 12, + ACTIONS(1493), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -54487,7 +54601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1491), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -54520,121 +54634,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [33185] = 9, - ACTIONS(1509), 1, - anon_sym_else, - ACTIONS(1511), 1, - anon_sym_except, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(700), 1, - sym_else_clause, - STATE(747), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(552), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1485), 12, - sym_string_start, - ts_builtin_sym_end, + [33510] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(711), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(715), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1483), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(1007), 1, anon_sym_not, + ACTIONS(1009), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1011), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [33257] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(962), 1, + STATE(970), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1004), 1, sym_string, - STATE(1416), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(2112), 1, + STATE(1990), 1, sym_expression, - STATE(2653), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1001), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(999), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54642,7 +54693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54659,58 +54710,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33355] = 22, - ACTIONS(291), 1, + [33608] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(962), 1, + STATE(865), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1913), 1, sym_expression, - STATE(2653), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54718,7 +54769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54735,58 +54786,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33453] = 22, - ACTIONS(291), 1, + [33706] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(2142), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54794,7 +54845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54811,58 +54862,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33551] = 22, - ACTIONS(291), 1, + [33804] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(2014), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54870,7 +54921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54887,58 +54938,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33649] = 22, - ACTIONS(291), 1, + [33902] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(2149), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54946,7 +54997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54963,58 +55014,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33747] = 22, - ACTIONS(291), 1, + [34000] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(962), 1, + STATE(865), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1715), 1, sym_expression, - STATE(2653), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55022,7 +55073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55039,58 +55090,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33845] = 22, - ACTIONS(291), 1, + [34098] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(1770), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55098,7 +55149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55115,58 +55166,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33943] = 22, - ACTIONS(291), 1, + [34196] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1951), 1, + STATE(1771), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55174,7 +55225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55191,58 +55242,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34041] = 22, - ACTIONS(291), 1, + [34294] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1772), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55250,7 +55301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55267,58 +55318,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34139] = 22, - ACTIONS(291), 1, + [34392] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1773), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55326,7 +55377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55343,58 +55394,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34237] = 22, - ACTIONS(67), 1, + [34490] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(859), 1, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1774), 1, sym_expression, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55402,7 +55453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55419,58 +55470,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34335] = 22, - ACTIONS(67), 1, + [34588] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(859), 1, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1659), 1, + STATE(2008), 1, sym_expression, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55478,7 +55529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55495,58 +55546,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34433] = 22, - ACTIONS(67), 1, + [34686] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(859), 1, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1776), 1, sym_expression, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55554,7 +55605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55571,58 +55622,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34531] = 22, - ACTIONS(713), 1, + [34784] = 9, + ACTIONS(1501), 1, + anon_sym_else, + ACTIONS(1503), 1, + anon_sym_except, + ACTIONS(1505), 1, + anon_sym_finally, + STATE(699), 1, + sym_else_clause, + STATE(767), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(618), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1493), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(721), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(725), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1491), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(823), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1149), 1, + sym_true, + sym_false, + sym_none, + [34856] = 22, + ACTIONS(350), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(869), 1, + STATE(971), 1, sym_primary_expression, - STATE(969), 1, + STATE(1013), 1, sym_string, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1777), 1, sym_expression, - STATE(2762), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55630,7 +55744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55647,58 +55761,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34629] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [34954] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(869), 1, + STATE(865), 1, sym_primary_expression, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1268), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1928), 1, sym_expression, - STATE(2762), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55706,7 +55820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55723,58 +55837,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34727] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [35052] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(964), 1, + STATE(865), 1, sym_primary_expression, - STATE(993), 1, + STATE(966), 1, sym_string, - STATE(1384), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1955), 1, + STATE(1842), 1, sym_expression, - STATE(2647), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55782,7 +55896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55799,58 +55913,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34825] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [35150] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(869), 1, + STATE(865), 1, sym_primary_expression, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1268), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1951), 1, sym_expression, - STATE(2762), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55858,7 +55972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55875,58 +55989,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34923] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [35248] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1257), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(869), 1, + STATE(971), 1, sym_primary_expression, - STATE(969), 1, + STATE(1013), 1, sym_string, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(2154), 1, sym_expression, - STATE(2762), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55934,7 +56048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55951,58 +56065,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35021] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [35346] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(817), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(869), 1, + STATE(865), 1, sym_primary_expression, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1268), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1948), 1, sym_expression, - STATE(2762), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56010,7 +56124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56027,58 +56141,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35119] = 22, - ACTIONS(691), 1, + [35444] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(964), 1, + STATE(967), 1, sym_primary_expression, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1957), 1, + STATE(1829), 1, sym_expression, - STATE(2647), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56086,7 +56200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56103,58 +56217,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35217] = 22, - ACTIONS(713), 1, + [35542] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1268), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1831), 1, sym_expression, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56162,7 +56276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56179,58 +56293,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35315] = 22, - ACTIONS(713), 1, + [35640] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1268), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1695), 1, + STATE(1849), 1, sym_expression, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56238,7 +56352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56255,58 +56369,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35413] = 22, - ACTIONS(666), 1, + [35738] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1147), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(967), 1, sym_primary_expression, - STATE(981), 1, + STATE(1001), 1, sym_string, - STATE(1147), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1850), 1, sym_expression, - STATE(2764), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56314,7 +56428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56331,58 +56445,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35511] = 22, - ACTIONS(735), 1, + [35836] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1137), 1, + sym_identifier, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(935), 1, + STATE(967), 1, sym_primary_expression, - STATE(973), 1, + STATE(1001), 1, sym_string, - STATE(1231), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1852), 1, sym_expression, - STATE(2675), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56390,7 +56504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56407,58 +56521,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35609] = 22, - ACTIONS(735), 1, + [35934] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1137), 1, + sym_identifier, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(935), 1, + STATE(967), 1, sym_primary_expression, - STATE(973), 1, + STATE(1001), 1, sym_string, - STATE(1231), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1821), 1, sym_expression, - STATE(2675), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56466,7 +56580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56483,58 +56597,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35707] = 22, - ACTIONS(735), 1, + [36032] = 9, + ACTIONS(1501), 1, + anon_sym_else, + ACTIONS(1503), 1, + anon_sym_except, + ACTIONS(1505), 1, + anon_sym_finally, + STATE(701), 1, + sym_else_clause, + STATE(808), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(576), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1507), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(743), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(747), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1509), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(847), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1249), 1, + sym_true, + sym_false, + sym_none, + [36104] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(935), 1, + STATE(971), 1, sym_primary_expression, - STATE(973), 1, + STATE(1013), 1, sym_string, - STATE(1231), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(1934), 1, sym_expression, - STATE(2675), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(835), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56542,7 +56719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56559,58 +56736,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35805] = 22, - ACTIONS(735), 1, + [36202] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1137), 1, + sym_identifier, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(935), 1, + STATE(967), 1, sym_primary_expression, - STATE(973), 1, + STATE(1001), 1, sym_string, - STATE(1231), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1832), 1, sym_expression, - STATE(2675), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56618,7 +56795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56635,58 +56812,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35903] = 22, - ACTIONS(735), 1, + [36300] = 22, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1792), 1, sym_expression, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56694,7 +56871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56711,58 +56888,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36001] = 22, - ACTIONS(735), 1, + [36398] = 22, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1793), 1, sym_expression, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56770,7 +56947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56787,58 +56964,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36099] = 22, - ACTIONS(735), 1, + [36496] = 22, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(825), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(841), 1, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1794), 1, sym_expression, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56846,7 +57023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56863,134 +57040,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36197] = 22, - ACTIONS(67), 1, + [36594] = 22, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(811), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(827), 1, + anon_sym_not, + ACTIONS(829), 1, + anon_sym_lambda, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(859), 1, + STATE(930), 1, sym_primary_expression, - STATE(961), 1, + STATE(985), 1, sym_string, - STATE(1077), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1881), 1, + STATE(1795), 1, sym_expression, - STATE(2625), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1665), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1085), 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, - [36295] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(962), 1, - sym_primary_expression, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(2104), 1, - sym_expression, - STATE(2653), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(270), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56998,7 +57099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57015,58 +57116,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36393] = 22, - ACTIONS(666), 1, + [36692] = 22, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(833), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(930), 1, sym_primary_expression, - STATE(981), 1, + STATE(985), 1, sym_string, - STATE(1147), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1797), 1, sym_expression, - STATE(2764), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57074,7 +57175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57091,58 +57192,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36491] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [36790] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(348), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(981), 1, + STATE(966), 1, sym_string, - STATE(1147), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1834), 1, sym_expression, - STATE(2764), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57150,7 +57251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57167,58 +57268,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36589] = 22, - ACTIONS(666), 1, + [36888] = 22, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(833), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(930), 1, sym_primary_expression, - STATE(981), 1, + STATE(985), 1, sym_string, - STATE(1147), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1819), 1, sym_expression, - STATE(2764), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57226,7 +57327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57243,58 +57344,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36687] = 22, - ACTIONS(666), 1, + [36986] = 22, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(833), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(930), 1, sym_primary_expression, - STATE(981), 1, + STATE(985), 1, sym_string, - STATE(1147), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1782), 1, + STATE(1801), 1, sym_expression, - STATE(2764), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57302,7 +57403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57319,58 +57420,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36785] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [37084] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(348), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(981), 1, + STATE(966), 1, sym_string, - STATE(1147), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1827), 1, sym_expression, - STATE(2764), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57378,7 +57479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57395,45 +57496,45 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36883] = 22, - ACTIONS(666), 1, + [37182] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(977), 1, anon_sym_lambda, ACTIONS(1085), 1, sym_identifier, ACTIONS(1095), 1, anon_sym_await, - STATE(942), 1, + STATE(948), 1, sym_primary_expression, - STATE(981), 1, + STATE(977), 1, sym_string, - STATE(1147), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1808), 1, sym_expression, - STATE(2764), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -57441,12 +57542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57454,7 +57555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57471,134 +57572,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36981] = 22, - ACTIONS(691), 1, + [37280] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, - anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(967), 1, anon_sym_STAR, - STATE(964), 1, - sym_primary_expression, - STATE(993), 1, - sym_string, - STATE(1384), 1, - sym_list_splat_pattern, - STATE(1746), 1, - sym_expression, - STATE(2647), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(1055), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(689), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1743), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1367), 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, - [37079] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1809), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57606,7 +57631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57623,58 +57648,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37177] = 22, - ACTIONS(691), 1, + [37378] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1784), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57682,7 +57707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57699,58 +57724,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37275] = 22, - ACTIONS(691), 1, + [37476] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1811), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57758,7 +57783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57775,58 +57800,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37373] = 22, - ACTIONS(691), 1, + [37574] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1812), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57834,7 +57859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57851,58 +57876,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37471] = 22, - ACTIONS(691), 1, + [37672] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1813), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57910,7 +57935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57927,58 +57952,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37569] = 22, - ACTIONS(691), 1, + [37770] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1814), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57986,7 +58011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58003,58 +58028,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37667] = 22, - ACTIONS(781), 1, + [37868] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1761), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58062,7 +58087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58079,58 +58104,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37765] = 22, - ACTIONS(781), 1, + [37966] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1762), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58138,7 +58163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58155,58 +58180,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37863] = 22, - ACTIONS(781), 1, + [38064] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1763), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58214,7 +58239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58231,58 +58256,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37961] = 22, - ACTIONS(781), 1, + [38162] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1764), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58290,7 +58315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58307,58 +58332,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38059] = 22, - ACTIONS(781), 1, + [38260] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1765), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58366,7 +58391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58383,58 +58408,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38157] = 22, - ACTIONS(781), 1, + [38358] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1766), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58442,7 +58467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58459,58 +58484,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38255] = 22, - ACTIONS(781), 1, + [38456] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1768), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58518,7 +58543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58535,58 +58560,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38353] = 22, - ACTIONS(757), 1, + [38554] = 22, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(959), 1, + STATE(987), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1059), 1, sym_string, - STATE(1337), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1833), 1, + STATE(1787), 1, sym_expression, - STATE(2670), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58594,7 +58619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58611,58 +58636,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38451] = 22, - ACTIONS(67), 1, + [38652] = 22, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(859), 1, + STATE(987), 1, sym_primary_expression, - STATE(961), 1, + STATE(1059), 1, sym_string, - STATE(1077), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1666), 1, + STATE(1790), 1, sym_expression, - STATE(2625), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58670,7 +58695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58687,61 +58712,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38549] = 23, - ACTIONS(781), 1, + [38750] = 22, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1329), 1, - anon_sym_STAR, - ACTIONS(1503), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1515), 1, + ACTIONS(1261), 1, sym_identifier, - STATE(992), 1, + ACTIONS(1313), 1, + anon_sym_STAR, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(1791), 1, sym_expression, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1501), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - STATE(1214), 2, - sym_attribute, - sym_subscript, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1499), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58749,9 +58771,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 14, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58764,58 +58788,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38649] = 22, - ACTIONS(67), 1, + [38848] = 22, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(859), 1, + STATE(987), 1, sym_primary_expression, - STATE(961), 1, + STATE(1059), 1, sym_string, - STATE(1077), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1910), 1, + STATE(1798), 1, sym_expression, - STATE(2625), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58823,7 +58847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58840,58 +58864,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38747] = 22, - ACTIONS(691), 1, + [38946] = 22, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(964), 1, + STATE(987), 1, sym_primary_expression, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1922), 1, + STATE(1799), 1, sym_expression, - STATE(2647), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58899,7 +58923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58916,58 +58940,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38845] = 22, - ACTIONS(67), 1, + [39044] = 22, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(859), 1, + STATE(987), 1, sym_primary_expression, - STATE(961), 1, + STATE(1059), 1, sym_string, - STATE(1077), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1674), 1, + STATE(1804), 1, sym_expression, - STATE(2625), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58975,7 +58999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58992,58 +59016,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38943] = 22, - ACTIONS(666), 1, + [39142] = 22, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(961), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + STATE(987), 1, sym_primary_expression, - STATE(981), 1, + STATE(1059), 1, sym_string, - STATE(1147), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1943), 1, + STATE(1810), 1, sym_expression, - STATE(2764), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1785), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1471), 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, + [39240] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, + anon_sym_STAR, + STATE(971), 1, + sym_primary_expression, + STATE(1013), 1, + sym_string, + STATE(1416), 1, + sym_list_splat_pattern, + STATE(2132), 1, + sym_expression, + STATE(2797), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(360), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59051,7 +59151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59068,58 +59168,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39041] = 22, - ACTIONS(691), 1, + [39338] = 22, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(964), 1, + STATE(968), 1, sym_primary_expression, - STATE(993), 1, + STATE(998), 1, sym_string, - STATE(1384), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1997), 1, + STATE(1826), 1, sym_expression, - STATE(2647), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59127,7 +59227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59144,58 +59244,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39139] = 22, - ACTIONS(713), 1, + [39436] = 23, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, - sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(869), 1, + ACTIONS(1511), 1, + sym_identifier, + ACTIONS(1517), 1, + anon_sym_await, + STATE(989), 1, sym_primary_expression, - STATE(969), 1, + STATE(1059), 1, sym_string, - STATE(1268), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1873), 1, + STATE(2003), 1, sym_expression, - STATE(2762), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1515), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + STATE(1360), 2, + sym_attribute, + sym_subscript, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1513), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59203,11 +59306,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1471), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59220,121 +59321,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39237] = 9, - ACTIONS(1509), 1, - anon_sym_else, - ACTIONS(1511), 1, - anon_sym_except, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(707), 1, - sym_else_clause, - STATE(782), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(607), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1495), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1493), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [39309] = 22, - ACTIONS(757), 1, + [39536] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1797), 1, + STATE(2031), 1, sym_expression, - STATE(2670), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59342,7 +59380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59359,58 +59397,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39407] = 22, - ACTIONS(691), 1, + [39634] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, - anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1953), 1, + STATE(1971), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59418,7 +59456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59435,58 +59473,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39505] = 22, - ACTIONS(67), 1, + [39732] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, - sym_identifier, - ACTIONS(390), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(859), 1, + STATE(971), 1, sym_primary_expression, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1661), 1, + STATE(2020), 1, sym_expression, - STATE(2625), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(379), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59494,7 +59532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59511,58 +59549,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39603] = 22, - ACTIONS(291), 1, + [39830] = 22, + ACTIONS(703), 1, + anon_sym_LPAREN, + ACTIONS(711), 1, + anon_sym_LBRACK, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(1007), 1, + anon_sym_not, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(962), 1, + STATE(970), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1004), 1, sym_string, - STATE(1416), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(2005), 1, + STATE(1973), 1, sym_expression, - STATE(2653), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1001), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(999), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59570,7 +59608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59587,7 +59625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39701] = 22, + [39928] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -59596,25 +59634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1703), 1, sym_expression, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59622,14 +59660,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -59638,7 +59676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59646,7 +59684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59663,58 +59701,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39799] = 22, - ACTIONS(291), 1, + [40026] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, + anon_sym_STAR, + STATE(971), 1, + sym_primary_expression, + STATE(1013), 1, + sym_string, + STATE(1416), 1, + sym_list_splat_pattern, + STATE(2013), 1, + sym_expression, + STATE(2797), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(360), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1781), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1345), 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, + [40124] = 22, + ACTIONS(350), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(2033), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59722,7 +59836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59739,58 +59853,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39897] = 22, - ACTIONS(757), 1, + [40222] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(1121), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1147), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(959), 1, + STATE(967), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1001), 1, sym_string, - STATE(1337), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1801), 1, + STATE(1891), 1, sym_expression, - STATE(2670), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59798,7 +59912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59815,58 +59929,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39995] = 22, - ACTIONS(691), 1, + [40320] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1315), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1981), 1, + STATE(1979), 1, sym_expression, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59874,7 +59988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59891,58 +60005,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40093] = 22, - ACTIONS(67), 1, + [40418] = 22, + ACTIONS(657), 1, + anon_sym_LPAREN, + ACTIONS(665), 1, + anon_sym_LBRACK, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(1095), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(859), 1, + STATE(948), 1, sym_primary_expression, - STATE(961), 1, + STATE(977), 1, sym_string, - STATE(1077), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1984), 1, sym_expression, - STATE(2625), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59950,7 +60064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59967,58 +60081,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40191] = 22, - ACTIONS(757), 1, + [40516] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(959), 1, + STATE(970), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(2022), 1, sym_expression, - STATE(2670), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60026,7 +60140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60043,58 +60157,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40289] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [40614] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(777), 1, - sym_string_start, - ACTIONS(863), 1, - anon_sym_not, - ACTIONS(865), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(959), 1, + STATE(971), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1013), 1, sym_string, - STATE(1337), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1983), 1, sym_expression, - STATE(2670), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, - sym_ellipsis, - sym_float, - ACTIONS(1127), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60102,7 +60216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60119,58 +60233,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40387] = 22, - ACTIONS(757), 1, + [40712] = 22, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1121), 1, - sym_identifier, - ACTIONS(1129), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1269), 1, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(959), 1, + STATE(987), 1, sym_primary_expression, - STATE(1012), 1, + STATE(1059), 1, sym_string, - STATE(1337), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1995), 1, sym_expression, - STATE(2670), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60178,7 +60292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60195,58 +60309,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40485] = 22, - ACTIONS(781), 1, + [40810] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(976), 1, + STATE(970), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1972), 1, + STATE(1939), 1, sym_expression, - STATE(2596), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60254,7 +60368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60271,58 +60385,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40583] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [40908] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1061), 1, - anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(1287), 1, - sym_identifier, - ACTIONS(1315), 1, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, + anon_sym_not, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(964), 1, + STATE(971), 1, sym_primary_expression, - STATE(993), 1, + STATE(1013), 1, sym_string, - STATE(1384), 1, + STATE(1416), 1, sym_list_splat_pattern, - STATE(1896), 1, + STATE(1767), 1, sym_expression, - STATE(2647), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(1055), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60330,7 +60444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60347,58 +60461,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40681] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [41006] = 23, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(669), 1, + anon_sym_LBRACE, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(967), 1, anon_sym_STAR, - STATE(962), 1, - sym_primary_expression, - STATE(1017), 1, + ACTIONS(975), 1, + anon_sym_not, + ACTIONS(977), 1, + anon_sym_lambda, + ACTIONS(1519), 1, + sym_identifier, + ACTIONS(1525), 1, + anon_sym_await, + STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1014), 1, + sym_primary_expression, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1938), 1, sym_expression, - STATE(2653), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1523), 2, + anon_sym_match, + anon_sym_type, + STATE(1197), 2, + sym_attribute, + sym_subscript, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1521), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60406,11 +60523,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1196), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60423,61 +60538,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40779] = 23, - ACTIONS(666), 1, + [41106] = 22, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(1517), 1, - sym_identifier, - ACTIONS(1523), 1, + ACTIONS(833), 1, anon_sym_await, - STATE(981), 1, - sym_string, - STATE(1004), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(930), 1, sym_primary_expression, - STATE(1147), 1, + STATE(985), 1, + sym_string, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1965), 1, + STATE(1900), 1, sym_expression, - STATE(2764), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(1521), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - STATE(1267), 2, - sym_attribute, - sym_subscript, - ACTIONS(676), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1519), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60485,9 +60597,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 14, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60500,58 +60614,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40879] = 22, - ACTIONS(735), 1, + [41204] = 22, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(825), 1, - sym_identifier, - ACTIONS(841), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(935), 1, + STATE(968), 1, sym_primary_expression, - STATE(973), 1, + STATE(998), 1, sym_string, - STATE(1231), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1837), 1, + STATE(1895), 1, sym_expression, - STATE(2675), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60559,7 +60673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60576,58 +60690,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40977] = 22, - ACTIONS(291), 1, + [41302] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(962), 1, + STATE(865), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1934), 1, + STATE(1711), 1, sym_expression, - STATE(2653), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60635,7 +60749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60652,58 +60766,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41075] = 22, - ACTIONS(291), 1, + [41400] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(962), 1, + STATE(865), 1, sym_primary_expression, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1935), 1, + STATE(2010), 1, sym_expression, - STATE(2653), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60711,7 +60825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60728,45 +60842,45 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41173] = 22, - ACTIONS(666), 1, + [41498] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(977), 1, anon_sym_lambda, ACTIONS(1085), 1, sym_identifier, ACTIONS(1095), 1, anon_sym_await, - STATE(942), 1, + STATE(948), 1, sym_primary_expression, - STATE(981), 1, + STATE(977), 1, sym_string, - STATE(1147), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1815), 1, sym_expression, - STATE(2764), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -60774,12 +60888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60787,7 +60901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60804,58 +60918,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41271] = 22, - ACTIONS(781), 1, + [41596] = 22, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(961), 1, anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1261), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(2009), 1, sym_expression, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(949), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(947), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60863,7 +60977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60880,58 +60994,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41369] = 22, - ACTIONS(713), 1, + [41694] = 22, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(853), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(855), 1, anon_sym_lambda, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1137), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1147), 1, + anon_sym_await, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(869), 1, + STATE(967), 1, sym_primary_expression, - STATE(969), 1, + STATE(1001), 1, sym_string, - STATE(1268), 1, + STATE(1284), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1874), 1, sym_expression, - STATE(2762), 1, + STATE(2826), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(745), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1697), 7, + STATE(1865), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60939,7 +61053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1151), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60956,61 +61070,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41467] = 23, - ACTIONS(691), 1, + [41792] = 23, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1315), 1, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(1525), 1, + ACTIONS(1527), 1, sym_identifier, - ACTIONS(1531), 1, + ACTIONS(1533), 1, anon_sym_await, - STATE(964), 1, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(1999), 1, sym_expression, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1529), 2, + ACTIONS(1531), 2, anon_sym_match, anon_sym_type, - STATE(1484), 2, + STATE(1514), 2, sym_attribute, sym_subscript, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1527), 3, + ACTIONS(1529), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61018,7 +61132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1319), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -61033,58 +61147,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41567] = 22, - ACTIONS(291), 1, + [41892] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2013), 1, + STATE(2052), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61092,7 +61206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61109,58 +61223,184 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41665] = 22, - ACTIONS(735), 1, + [41990] = 9, + ACTIONS(1501), 1, + anon_sym_else, + ACTIONS(1503), 1, + anon_sym_except, + ACTIONS(1505), 1, + anon_sym_finally, + STATE(702), 1, + sym_else_clause, + STATE(751), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(618), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1535), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(743), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(747), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(753), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1537), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42062] = 9, + ACTIONS(1501), 1, + anon_sym_else, + ACTIONS(1503), 1, + anon_sym_except, + ACTIONS(1505), 1, + anon_sym_finally, + STATE(714), 1, + sym_else_clause, + STATE(775), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(502), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1539), 12, sym_string_start, - ACTIONS(825), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1541), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(841), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [42134] = 22, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(743), 1, + sym_string_start, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, anon_sym_not, - ACTIONS(843), 1, + ACTIONS(829), 1, anon_sym_lambda, - ACTIONS(847), 1, + ACTIONS(833), 1, anon_sym_await, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(935), 1, + STATE(930), 1, sym_primary_expression, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1788), 1, sym_expression, - STATE(2675), 1, + STATE(2714), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(835), 2, + ACTIONS(821), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(833), 3, + ACTIONS(819), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1765), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61168,7 +61408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61185,61 +61425,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41763] = 23, - ACTIONS(781), 1, + [42232] = 23, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(957), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(959), 1, anon_sym_lambda, - ACTIONS(1329), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1503), 1, + ACTIONS(1517), 1, anon_sym_await, - ACTIONS(1533), 1, + ACTIONS(1543), 1, sym_identifier, - STATE(976), 1, + STATE(987), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1059), 1, sym_string, - STATE(1436), 1, + STATE(1510), 1, sym_list_splat_pattern, - STATE(1948), 1, + STATE(2003), 1, sym_expression, - STATE(2596), 1, + STATE(2651), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(1537), 2, + ACTIONS(1547), 2, anon_sym_match, anon_sym_type, - STATE(1485), 2, + STATE(1515), 2, sym_attribute, sym_subscript, - ACTIONS(791), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1535), 3, + ACTIONS(1545), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61247,7 +61487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 14, + STATE(1471), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -61262,58 +61502,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41863] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [42332] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1085), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(309), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(348), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(617), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(865), 1, sym_primary_expression, - STATE(981), 1, + STATE(966), 1, sym_string, - STATE(1147), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(2056), 1, sym_expression, - STATE(2764), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61321,7 +61561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61338,61 +61578,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41961] = 23, - ACTIONS(666), 1, + [42430] = 23, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(721), 1, sym_string_start, ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1523), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + ACTIONS(1533), 1, anon_sym_await, - ACTIONS(1539), 1, + ACTIONS(1549), 1, sym_identifier, - STATE(942), 1, + STATE(1002), 1, sym_primary_expression, - STATE(981), 1, + STATE(1004), 1, sym_string, - STATE(1147), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1965), 1, + STATE(1999), 1, sym_expression, - STATE(2764), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1543), 2, + ACTIONS(1553), 2, anon_sym_match, anon_sym_type, - STATE(1486), 2, + STATE(1409), 2, sym_attribute, sym_subscript, - ACTIONS(676), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1541), 3, + ACTIONS(1551), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61400,7 +61640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 14, + STATE(1319), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -61415,58 +61655,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42061] = 22, - ACTIONS(291), 1, + [42530] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(392), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(865), 1, + sym_primary_expression, + STATE(966), 1, + sym_string, + STATE(1137), 1, + sym_list_splat_pattern, + STATE(1708), 1, + sym_expression, + STATE(2752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(324), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1716), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1076), 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, + [42628] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + anon_sym_lambda, + ACTIONS(381), 1, + anon_sym_await, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1894), 1, + STATE(2134), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61474,7 +61790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61491,7 +61807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42159] = 22, + [42726] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -61500,25 +61816,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1841), 1, + STATE(1705), 1, sym_expression, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61526,14 +61842,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -61542,7 +61858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61550,7 +61866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61567,7 +61883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42257] = 22, + [42824] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -61576,25 +61892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(367), 1, + ACTIONS(309), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(348), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(859), 1, + STATE(865), 1, sym_primary_expression, - STATE(961), 1, + STATE(966), 1, sym_string, - STATE(1077), 1, + STATE(1137), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1700), 1, sym_expression, - STATE(2625), 1, + STATE(2752), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61602,14 +61918,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(333), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(324), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -61618,7 +61934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1716), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61626,7 +61942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61643,58 +61959,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42355] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [42922] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, - anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(669), 1, + anon_sym_LBRACE, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(967), 1, anon_sym_STAR, - STATE(962), 1, + ACTIONS(975), 1, + anon_sym_not, + ACTIONS(977), 1, + anon_sym_lambda, + ACTIONS(1085), 1, + sym_identifier, + ACTIONS(1095), 1, + anon_sym_await, + STATE(948), 1, sym_primary_expression, - STATE(1017), 1, + STATE(977), 1, sym_string, - STATE(1416), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(2073), 1, + STATE(1805), 1, sym_expression, - STATE(2653), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1093), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1091), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61702,7 +62018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61719,58 +62035,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42453] = 22, - ACTIONS(691), 1, + [43020] = 23, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1065), 1, + ACTIONS(1525), 1, anon_sym_await, - ACTIONS(1287), 1, + ACTIONS(1555), 1, sym_identifier, - ACTIONS(1315), 1, - anon_sym_STAR, - STATE(964), 1, + STATE(948), 1, sym_primary_expression, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1938), 1, sym_expression, - STATE(2647), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1055), 2, + ACTIONS(1559), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + STATE(1516), 2, + sym_attribute, + sym_subscript, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1053), 3, + ACTIONS(1557), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61778,11 +62097,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 16, + STATE(1196), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61795,58 +62112,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42551] = 22, - ACTIONS(67), 1, + [43120] = 22, + ACTIONS(679), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(859), 1, + STATE(968), 1, sym_primary_expression, - STATE(961), 1, + STATE(998), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1897), 1, + STATE(1837), 1, sym_expression, - STATE(2625), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61854,7 +62171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61871,58 +62188,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42649] = 22, - ACTIONS(666), 1, + [43218] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(721), 1, sym_string_start, ACTIONS(1007), 1, - anon_sym_STAR, - ACTIONS(1015), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(1095), 1, + ACTIONS(1011), 1, anon_sym_await, - STATE(942), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(970), 1, sym_primary_expression, - STATE(981), 1, + STATE(1004), 1, sym_string, - STATE(1147), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1987), 1, sym_expression, - STATE(2764), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1093), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1091), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61930,7 +62247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1265), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61947,184 +62264,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42747] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(716), 1, - sym_else_clause, - STATE(836), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(603), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1547), 12, - sym__dedent, - sym_string_start, + [43316] = 22, + ACTIONS(679), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(689), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(693), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1545), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(803), 1, anon_sym_not, + ACTIONS(805), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(1109), 1, sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [42819] = 9, - ACTIONS(1509), 1, - anon_sym_else, - ACTIONS(1511), 1, - anon_sym_except, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(694), 1, - sym_else_clause, - STATE(746), 1, - sym_finally_clause, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(968), 1, + sym_primary_expression, + STATE(998), 1, + sym_string, + STATE(1361), 1, + sym_list_splat_pattern, + STATE(1841), 1, + sym_expression, + STATE(2694), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(489), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1547), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(695), 2, + sym_ellipsis, + sym_float, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1545), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1113), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(677), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [42891] = 22, - ACTIONS(781), 1, + STATE(1870), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1399), 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, + [43414] = 22, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(985), 1, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1241), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1329), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(976), 1, + STATE(968), 1, sym_primary_expression, - STATE(1068), 1, + STATE(998), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1843), 1, sym_expression, - STATE(2596), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(979), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(977), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(779), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1768), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62132,7 +62399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1439), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62149,61 +62416,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42989] = 23, - ACTIONS(691), 1, + [43512] = 22, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1061), 1, + ACTIONS(1007), 1, anon_sym_not, - ACTIONS(1063), 1, + ACTIONS(1009), 1, anon_sym_lambda, - ACTIONS(1315), 1, - anon_sym_STAR, - ACTIONS(1531), 1, + ACTIONS(1011), 1, anon_sym_await, - ACTIONS(1549), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(991), 1, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(970), 1, sym_primary_expression, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(1780), 1, sym_expression, - STATE(2647), 1, + STATE(2726), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(1553), 2, + ACTIONS(1001), 2, anon_sym_match, anon_sym_type, - STATE(1379), 2, - sym_attribute, - sym_subscript, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1551), 3, + ACTIONS(999), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(701), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1743), 7, + STATE(1782), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62211,9 +62475,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1367), 14, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -62226,58 +62492,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43089] = 22, - ACTIONS(67), 1, + [43610] = 22, + ACTIONS(679), 1, + anon_sym_LPAREN, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(805), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(367), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(390), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1303), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(859), 1, + STATE(968), 1, sym_primary_expression, - STATE(961), 1, + STATE(998), 1, sym_string, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(1824), 1, + STATE(1844), 1, sym_expression, - STATE(2625), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(379), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(375), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1665), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62285,7 +62551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1085), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62302,58 +62568,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43187] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(298), 1, - anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + [43708] = 22, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(693), 1, + anon_sym_LBRACE, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(962), 1, + STATE(968), 1, sym_primary_expression, - STATE(1017), 1, + STATE(998), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2053), 1, + STATE(1845), 1, sym_expression, - STATE(2653), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(677), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1870), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1399), 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, + [43806] = 22, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, + anon_sym_LBRACE, + ACTIONS(787), 1, + sym_string_start, + ACTIONS(957), 1, + anon_sym_not, + ACTIONS(959), 1, + anon_sym_lambda, + ACTIONS(961), 1, + anon_sym_await, + ACTIONS(1261), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + STATE(987), 1, + sym_primary_expression, + STATE(1059), 1, + sym_string, + STATE(1510), 1, + sym_list_splat_pattern, + STATE(1786), 1, + sym_expression, + STATE(2651), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(783), 2, + sym_ellipsis, + sym_float, + ACTIONS(949), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(947), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(767), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1785), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62361,7 +62703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62378,58 +62720,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43285] = 22, - ACTIONS(757), 1, + [43904] = 22, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(863), 1, + ACTIONS(967), 1, + anon_sym_STAR, + ACTIONS(975), 1, anon_sym_not, - ACTIONS(865), 1, + ACTIONS(977), 1, anon_sym_lambda, - ACTIONS(1121), 1, + ACTIONS(1085), 1, sym_identifier, - ACTIONS(1129), 1, + ACTIONS(1095), 1, anon_sym_await, - ACTIONS(1269), 1, - anon_sym_STAR, - STATE(959), 1, + STATE(948), 1, sym_primary_expression, - STATE(1012), 1, + STATE(977), 1, sym_string, - STATE(1337), 1, + STATE(1239), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1807), 1, sym_expression, - STATE(2670), 1, + STATE(2805), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(773), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(1127), 2, + ACTIONS(1093), 2, anon_sym_match, anon_sym_type, - ACTIONS(769), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1125), 3, + ACTIONS(1091), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(655), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1828), 7, + STATE(1802), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62437,7 +62779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1334), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62454,58 +62796,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43383] = 22, - ACTIONS(291), 1, + [44002] = 9, + ACTIONS(1495), 1, + anon_sym_else, + ACTIONS(1497), 1, + anon_sym_except, + ACTIONS(1499), 1, + anon_sym_finally, + STATE(707), 1, + sym_else_clause, + STATE(835), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(601), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1507), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(298), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1509), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(306), 1, - anon_sym_await, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(392), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(648), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44074] = 22, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(693), 1, + anon_sym_LBRACE, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(803), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(805), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(962), 1, + STATE(968), 1, sym_primary_expression, - STATE(1017), 1, + STATE(998), 1, sym_string, - STATE(1416), 1, + STATE(1361), 1, sym_list_splat_pattern, - STATE(2058), 1, + STATE(1858), 1, sym_expression, - STATE(2653), 1, + STATE(2694), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(302), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(677), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1870), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62513,7 +62918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62530,58 +62935,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43481] = 22, - ACTIONS(291), 1, + [44172] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2022), 1, + STATE(2096), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62589,7 +62994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62606,58 +63011,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43579] = 22, - ACTIONS(291), 1, + [44270] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2038), 1, + STATE(2156), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62665,7 +63070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62682,58 +63087,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43677] = 22, - ACTIONS(291), 1, + [44368] = 9, + ACTIONS(1495), 1, + anon_sym_else, + ACTIONS(1497), 1, + anon_sym_except, + ACTIONS(1499), 1, + anon_sym_finally, + STATE(715), 1, + sym_else_clause, + STATE(825), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(613), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1535), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1537), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44440] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2050), 1, + STATE(2068), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62741,7 +63209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62758,58 +63226,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43775] = 22, - ACTIONS(291), 1, + [44538] = 9, + ACTIONS(1495), 1, + anon_sym_else, + ACTIONS(1497), 1, + anon_sym_except, + ACTIONS(1499), 1, + anon_sym_finally, + STATE(712), 1, + sym_else_clause, + STATE(755), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(488), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1539), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1541), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44610] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2057), 1, + STATE(2088), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62817,7 +63348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62834,58 +63365,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43873] = 22, - ACTIONS(291), 1, + [44708] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2065), 1, + STATE(2101), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62893,7 +63424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62910,58 +63441,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43971] = 22, - ACTIONS(291), 1, + [44806] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2078), 1, + STATE(2110), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62969,7 +63500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62986,58 +63517,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44069] = 22, - ACTIONS(291), 1, + [44904] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2079), 1, + STATE(2114), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63045,7 +63576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63062,121 +63593,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44167] = 9, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1489), 1, - anon_sym_except, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(703), 1, - sym_else_clause, - STATE(764), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(610), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1505), 12, - sym__dedent, + [45002] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, + ACTIONS(309), 1, + sym_identifier, + ACTIONS(348), 1, + anon_sym_await, + ACTIONS(617), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(625), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(865), 1, + sym_primary_expression, + STATE(966), 1, + sym_string, + STATE(1137), 1, + sym_list_splat_pattern, + STATE(1701), 1, + sym_expression, + STATE(2752), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(333), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1507), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(324), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [44239] = 22, - ACTIONS(291), 1, + STATE(1716), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1076), 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, + [45100] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(2089), 1, + STATE(2123), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63184,7 +63728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63201,58 +63745,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44337] = 22, - ACTIONS(291), 1, + [45198] = 22, + ACTIONS(350), 1, + sym_identifier, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(298), 1, + ACTIONS(375), 1, anon_sym_lambda, - ACTIONS(306), 1, + ACTIONS(381), 1, anon_sym_await, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(392), 1, - sym_identifier, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1025), 1, + ACTIONS(1027), 1, anon_sym_not, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(962), 1, + STATE(971), 1, sym_primary_expression, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(2124), 1, sym_expression, - STATE(2653), 1, + STATE(2797), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 2, + ACTIONS(360), 2, anon_sym_match, anon_sym_type, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(270), 3, + ACTIONS(358), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(296), 3, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1781), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1345), 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, + [45296] = 22, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(743), 1, + sym_string_start, + ACTIONS(811), 1, + sym_identifier, + ACTIONS(827), 1, + anon_sym_not, + ACTIONS(829), 1, + anon_sym_lambda, + ACTIONS(833), 1, + anon_sym_await, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(930), 1, + sym_primary_expression, + STATE(985), 1, + sym_string, + STATE(1148), 1, + sym_list_splat_pattern, + STATE(1833), 1, + sym_expression, + STATE(2714), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(739), 2, + sym_ellipsis, + sym_float, + ACTIONS(821), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(304), 4, + ACTIONS(819), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(723), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1750), 7, + STATE(1800), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63260,7 +63880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1348), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63277,23 +63897,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44435] = 10, - ACTIONS(1557), 1, + [45394] = 10, + ACTIONS(1399), 1, + anon_sym_LBRACK, + ACTIONS(1563), 1, anon_sym_COMMA, - ACTIONS(1562), 1, + ACTIONS(1568), 1, anon_sym_COLON_EQ, - ACTIONS(1564), 1, + ACTIONS(1570), 1, anon_sym_COLON, - ACTIONS(1567), 1, + ACTIONS(1573), 1, anon_sym_EQ, - ACTIONS(1569), 1, - anon_sym_LBRACK, - STATE(2096), 1, - sym_type_parameter, + STATE(2140), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 13, + ACTIONS(1575), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63307,7 +63927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1560), 15, + ACTIONS(1566), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63323,7 +63943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 16, + ACTIONS(1561), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63340,18 +63960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44508] = 5, - ACTIONS(1577), 1, + [45467] = 5, + ACTIONS(1581), 1, anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(607), 2, + STATE(613), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(1573), 12, + ACTIONS(1579), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63362,7 +63982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1575), 34, + ACTIONS(1577), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63397,19 +64017,138 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44570] = 8, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(274), 1, - anon_sym_COLON, - ACTIONS(284), 1, - anon_sym_EQ, + [45529] = 8, + ACTIONS(1495), 1, + anon_sym_else, + ACTIONS(1588), 1, + anon_sym_elif, + STATE(627), 1, + aux_sym_if_statement_repeat1, + STATE(721), 1, + sym_elif_clause, + STATE(844), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1584), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45597] = 8, + ACTIONS(1495), 1, + anon_sym_else, + ACTIONS(1588), 1, + anon_sym_elif, + STATE(621), 1, + aux_sym_if_statement_repeat1, + STATE(721), 1, + sym_elif_clause, + STATE(759), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1592), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1590), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45665] = 7, + ACTIONS(1563), 1, + anon_sym_COMMA, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(300), 13, + ACTIONS(1573), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1575), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63423,7 +64162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(259), 15, + ACTIONS(1566), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63439,7 +64178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 17, + ACTIONS(1561), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63457,19 +64196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44638] = 8, - ACTIONS(264), 1, + [45731] = 7, + ACTIONS(318), 1, anon_sym_COMMA, - ACTIONS(272), 1, + ACTIONS(328), 1, anon_sym_COLON_EQ, - ACTIONS(274), 1, - anon_sym_COLON, - ACTIONS(284), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(300), 13, + ACTIONS(335), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(346), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63483,7 +64221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(259), 15, + ACTIONS(313), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63499,7 +64237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 17, + ACTIONS(311), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63517,18 +64255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44706] = 5, - ACTIONS(1580), 1, + [45797] = 5, + ACTIONS(1594), 1, anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(610), 2, + STATE(618), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(1573), 12, - sym__dedent, + ACTIONS(1579), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63539,7 +64277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1575), 34, + ACTIONS(1577), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63574,21 +64312,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44768] = 8, - ACTIONS(1509), 1, + [45859] = 8, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(330), 1, + anon_sym_COLON, + ACTIONS(335), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(346), 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(313), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(311), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45927] = 8, + ACTIONS(1501), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1597), 1, anon_sym_elif, - STATE(628), 1, + STATE(622), 1, aux_sym_if_statement_repeat1, - STATE(695), 1, + STATE(710), 1, sym_elif_clause, - STATE(794), 1, + STATE(754), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 12, + ACTIONS(1592), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63601,7 +64399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 32, + ACTIONS(1590), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63634,21 +64432,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44836] = 8, - ACTIONS(1487), 1, + [45995] = 8, + ACTIONS(1495), 1, anon_sym_else, - ACTIONS(1593), 1, + ACTIONS(1588), 1, anon_sym_elif, - STATE(637), 1, + STATE(646), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(721), 1, sym_elif_clause, - STATE(790), 1, + STATE(746), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 12, + ACTIONS(1601), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -63661,7 +64459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1589), 32, + ACTIONS(1599), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63694,21 +64492,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44904] = 8, - ACTIONS(1509), 1, + [46063] = 8, + ACTIONS(1501), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1597), 1, anon_sym_elif, - STATE(614), 1, + STATE(648), 1, aux_sym_if_statement_repeat1, - STATE(695), 1, + STATE(710), 1, sym_elif_clause, - STATE(776), 1, + STATE(778), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 12, + ACTIONS(1601), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63721,7 +64519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1597), 32, + ACTIONS(1599), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63754,21 +64552,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44972] = 8, - ACTIONS(1509), 1, + [46131] = 8, + ACTIONS(1501), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1597), 1, anon_sym_elif, - STATE(628), 1, + STATE(648), 1, aux_sym_if_statement_repeat1, - STATE(695), 1, + STATE(710), 1, sym_elif_clause, - STATE(765), 1, + STATE(749), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 12, + ACTIONS(1603), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63781,7 +64579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1589), 32, + ACTIONS(1605), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63814,21 +64612,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45040] = 8, - ACTIONS(1509), 1, + [46199] = 8, + ACTIONS(1501), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1597), 1, anon_sym_elif, - STATE(611), 1, + STATE(623), 1, aux_sym_if_statement_repeat1, - STATE(695), 1, + STATE(710), 1, sym_elif_clause, - STATE(766), 1, + STATE(776), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 12, + ACTIONS(1586), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63841,7 +64639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1601), 32, + ACTIONS(1584), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63874,18 +64672,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45108] = 7, - ACTIONS(1557), 1, + [46267] = 7, + ACTIONS(318), 1, anon_sym_COMMA, - ACTIONS(1562), 1, + ACTIONS(328), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, + ACTIONS(335), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(1571), 13, + ACTIONS(346), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63899,7 +64697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1560), 15, + ACTIONS(313), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63915,7 +64713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 17, + ACTIONS(311), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63933,77 +64731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45174] = 7, - ACTIONS(264), 1, + [46333] = 8, + ACTIONS(318), 1, anon_sym_COMMA, - ACTIONS(272), 1, + ACTIONS(328), 1, anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(284), 2, + ACTIONS(330), 1, anon_sym_COLON, + ACTIONS(335), 1, anon_sym_EQ, - ACTIONS(300), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(259), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45240] = 7, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(300), 13, + ACTIONS(346), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64017,7 +64757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(259), 15, + ACTIONS(313), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64033,7 +64773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 17, + ACTIONS(311), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64051,21 +64791,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45306] = 8, - ACTIONS(1487), 1, + [46401] = 8, + ACTIONS(1495), 1, anon_sym_else, - ACTIONS(1593), 1, + ACTIONS(1588), 1, anon_sym_elif, - STATE(637), 1, + STATE(646), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(721), 1, sym_elif_clause, - STATE(770), 1, + STATE(747), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 12, + ACTIONS(1603), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64078,7 +64818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 32, + ACTIONS(1605), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64111,239 +64851,125 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45374] = 8, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1593), 1, - anon_sym_elif, - STATE(619), 1, - aux_sym_if_statement_repeat1, - STATE(710), 1, - sym_elif_clause, - STATE(814), 1, - sym_else_clause, + [46469] = 6, + ACTIONS(1573), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1609), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1575), 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(1612), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1601), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45442] = 8, - ACTIONS(1487), 1, - anon_sym_else, - ACTIONS(1593), 1, - anon_sym_elif, - STATE(612), 1, - aux_sym_if_statement_repeat1, - STATE(710), 1, - sym_elif_clause, - STATE(810), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1595), 12, - sym__dedent, - sym_string_start, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1597), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45510] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1605), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_in, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1603), 36, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45567] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46532] = 6, + ACTIONS(1563), 1, + anon_sym_COMMA, + ACTIONS(1573), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1575), 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(1566), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1609), 36, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, 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, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45624] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46595] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 16, + ACTIONS(1616), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64360,7 +64986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 32, + ACTIONS(1614), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64393,11 +65019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45681] = 3, + [46652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 16, + ACTIONS(1620), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64414,7 +65040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 32, + ACTIONS(1618), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64447,11 +65073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45738] = 3, + [46709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 16, + ACTIONS(1620), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64468,7 +65094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 32, + ACTIONS(1618), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64501,23 +65127,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45795] = 7, - ACTIONS(1631), 1, + [46766] = 7, + ACTIONS(1634), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 2, + ACTIONS(1624), 2, anon_sym_DOT, anon_sym_COLON, - ACTIONS(1623), 2, + ACTIONS(1626), 2, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1629), 3, + ACTIONS(1632), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 12, + ACTIONS(1629), 12, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64530,7 +65156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 28, + ACTIONS(1622), 28, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -64559,72 +65185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45860] = 6, - ACTIONS(1637), 1, - anon_sym_elif, - STATE(628), 1, - aux_sym_if_statement_repeat1, - STATE(695), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1633), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1635), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45923] = 6, - ACTIONS(1567), 1, + [46831] = 6, + ACTIONS(1573), 1, anon_sym_EQ, - ACTIONS(1642), 1, + ACTIONS(1609), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 14, + ACTIONS(1575), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -64639,7 +65208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1645), 15, + ACTIONS(1612), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64655,7 +65224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 17, + ACTIONS(1607), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64673,11 +65242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45986] = 3, + [46894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 16, + ACTIONS(1638), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64694,7 +65263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 32, + ACTIONS(1636), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64727,15 +65296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46043] = 6, - ACTIONS(1653), 1, + [46951] = 6, + ACTIONS(1642), 1, anon_sym_COMMA, - ACTIONS(1660), 1, + ACTIONS(1649), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1658), 14, + ACTIONS(1647), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -64750,10 +65319,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1656), 15, + ACTIONS(1645), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1640), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47014] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1653), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64766,13 +65374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 17, + ACTIONS(1651), 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, @@ -64784,11 +65394,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46106] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47071] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 12, + ACTIONS(638), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(633), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(631), 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47132] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1655), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -64801,7 +65480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1664), 36, + ACTIONS(1657), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64838,11 +65517,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46163] = 3, + [47189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 12, + ACTIONS(1661), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -64855,7 +65534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1664), 36, + ACTIONS(1659), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64892,11 +65571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46220] = 3, + [47246] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 16, + ACTIONS(1665), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64913,7 +65592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 32, + ACTIONS(1663), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64946,11 +65625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46277] = 3, + [47303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(1665), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64967,7 +65646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(1663), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65000,15 +65679,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46334] = 3, + [47360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(1667), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1669), 36, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47417] = 6, + ACTIONS(1673), 1, + anon_sym_COMMA, + ACTIONS(1680), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1678), 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(1676), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65021,15 +65772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(1671), 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, @@ -65041,32 +65790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46391] = 6, - ACTIONS(1674), 1, - anon_sym_elif, - STATE(637), 1, - aux_sym_if_statement_repeat1, - STATE(710), 1, - sym_elif_clause, + [47480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 12, - sym__dedent, + ACTIONS(1661), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65077,7 +65807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1635), 33, + ACTIONS(1659), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65089,12 +65819,15 @@ 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, @@ -65111,13 +65844,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46454] = 3, + [47537] = 6, + ACTIONS(1686), 1, + anon_sym_elif, + STATE(646), 1, + aux_sym_if_statement_repeat1, + STATE(721), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 12, + ACTIONS(1684), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65128,7 +65867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1603), 36, + ACTIONS(1682), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65140,15 +65879,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_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65165,11 +65901,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46511] = 3, + [47600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 12, + ACTIONS(1655), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65182,7 +65918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1677), 36, + ACTIONS(1657), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65219,16 +65955,73 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46568] = 6, - ACTIONS(1683), 1, - anon_sym_COMMA, - ACTIONS(1690), 1, + [47657] = 6, + ACTIONS(1689), 1, + anon_sym_elif, + STATE(648), 1, + aux_sym_if_statement_repeat1, + STATE(710), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1684), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1682), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47720] = 6, + ACTIONS(1573), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 14, + ACTIONS(1563), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1575), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65242,7 +66035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1686), 15, + ACTIONS(1566), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65258,7 +66051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 17, + ACTIONS(1561), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65276,16 +66069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46631] = 6, - ACTIONS(1567), 1, + [47783] = 6, + ACTIONS(1680), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, + ACTIONS(1673), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1571), 13, + ACTIONS(1678), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65299,7 +66092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1645), 15, + ACTIONS(1676), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65315,7 +66108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 17, + ACTIONS(1671), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65333,16 +66126,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46694] = 6, - ACTIONS(1567), 1, + [47846] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1692), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1694), 36, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [47903] = 6, + ACTIONS(1649), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, + ACTIONS(1642), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1571), 13, + ACTIONS(1647), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65356,7 +66203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1560), 15, + ACTIONS(1645), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65372,7 +66219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 17, + ACTIONS(1640), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -65390,86 +66237,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46757] = 5, + [47966] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 3, - anon_sym_DOT, + ACTIONS(1698), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(645), 13, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1696), 36, + 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_COLON, - anon_sym_in, + 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, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - 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, - [46818] = 6, - ACTIONS(1690), 1, - anon_sym_EQ, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48023] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1688), 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(1686), 15, + ACTIONS(638), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(633), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65483,17 +66317,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(1681), 17, + ACTIONS(631), 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, @@ -65503,16 +66334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46881] = 6, - ACTIONS(1660), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1653), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1658), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65526,45 +66347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1656), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1651), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [46944] = 3, + [48084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 12, + ACTIONS(1667), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65577,7 +66364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1609), 36, + ACTIONS(1669), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65614,19 +66401,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47001] = 5, + [48141] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 3, + ACTIONS(1626), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1629), 3, + ACTIONS(1632), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 13, + ACTIONS(1629), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -65640,7 +66427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 29, + ACTIONS(1622), 29, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -65670,13 +66457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47062] = 3, + [48202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1692), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -65724,11 +66511,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47119] = 3, + [48259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 12, + ACTIONS(1698), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65741,7 +66528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1677), 36, + ACTIONS(1696), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65778,68 +66565,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47176] = 6, - ACTIONS(1557), 1, - anon_sym_COMMA, - ACTIONS(1567), 1, - anon_sym_EQ, + [48316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 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(1560), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [47239] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1702), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -65852,7 +66582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 36, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65864,7 +66594,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, @@ -65889,67 +66618,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47296] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(645), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47357] = 3, + [48372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1704), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -65962,7 +66635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1706), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65998,11 +66671,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47413] = 3, + [48428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, + ACTIONS(1704), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66015,7 +66688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1706), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66051,13 +66724,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47469] = 3, + [48484] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, + ACTIONS(1710), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66068,7 +66741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1706), 35, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66104,13 +66777,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47525] = 3, + [48540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, - sym__dedent, + ACTIONS(1712), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66121,7 +66794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1708), 35, + ACTIONS(1714), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66157,11 +66830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47581] = 3, + [48596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 12, + ACTIONS(1718), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66174,7 +66847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1712), 35, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66210,13 +66883,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47637] = 3, + [48652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 12, - sym__dedent, + ACTIONS(1720), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66227,7 +66900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1702), 35, + ACTIONS(1722), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66263,13 +66936,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47693] = 3, + [48708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 12, - sym__dedent, + ACTIONS(1724), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66280,7 +66953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1706), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66316,13 +66989,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47749] = 3, + [48764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1718), 12, - sym__dedent, + ACTIONS(1724), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66333,7 +67006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1716), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66369,66 +67042,84 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47805] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1720), 12, + [48820] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1728), 1, + sym_identifier, + ACTIONS(1730), 1, anon_sym_LPAREN, + ACTIONS(1732), 1, anon_sym_STAR, + ACTIONS(1738), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1740), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1667), 1, + sym_primary_expression, + STATE(2119), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1736), 2, + anon_sym_match, + anon_sym_type, + STATE(1615), 2, + sym_attribute, + sym_subscript, + STATE(2122), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1722), 35, - anon_sym_import, - anon_sym_from, + ACTIONS(1734), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(379), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [47861] = 3, + ACTIONS(941), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1345), 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, + [48912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 12, - sym__dedent, + ACTIONS(1742), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66439,7 +67130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1744), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66475,11 +67166,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47917] = 3, + [48968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, + ACTIONS(1748), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66492,7 +67183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1728), 35, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66528,13 +67219,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47973] = 3, + [49024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1734), 12, - sym__dedent, + ACTIONS(1750), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66545,7 +67236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1732), 35, + ACTIONS(1752), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66581,13 +67272,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48029] = 3, + [49080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1738), 12, - sym__dedent, + ACTIONS(1754), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66598,7 +67289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1736), 35, + ACTIONS(1756), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66634,11 +67325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48085] = 3, + [49136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1718), 12, + ACTIONS(1758), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66651,7 +67342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1716), 35, + ACTIONS(1760), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66687,11 +67378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48141] = 3, + [49192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1730), 12, + ACTIONS(1710), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66704,7 +67395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1728), 35, + ACTIONS(1708), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66740,11 +67431,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48197] = 3, + [49248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1734), 12, + ACTIONS(1762), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66757,7 +67448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1732), 35, + ACTIONS(1764), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66793,13 +67484,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48253] = 3, + [49304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, + ACTIONS(1712), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66810,7 +67501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1742), 35, + ACTIONS(1714), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66846,13 +67537,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48309] = 3, + [49360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1710), 12, + ACTIONS(1758), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66863,7 +67554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1708), 35, + ACTIONS(1760), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66899,13 +67590,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48365] = 3, + [49416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, + ACTIONS(1768), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66916,7 +67607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1766), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66952,13 +67643,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48421] = 3, + [49472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 12, + ACTIONS(1772), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66969,7 +67660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 35, + ACTIONS(1770), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67005,11 +67696,82 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48477] = 3, + [49528] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1728), 1, + sym_identifier, + ACTIONS(1730), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_STAR, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1667), 1, + sym_primary_expression, + STATE(2119), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1736), 2, + anon_sym_match, + anon_sym_type, + STATE(1615), 2, + sym_attribute, + sym_subscript, + STATE(2122), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1734), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(927), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1345), 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, + [49620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 12, + ACTIONS(1762), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67022,7 +67784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1698), 35, + ACTIONS(1764), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67058,13 +67820,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48533] = 3, + [49676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, + ACTIONS(1704), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67075,7 +67837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1706), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67111,13 +67873,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48589] = 3, + [49732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1714), 12, + ACTIONS(1704), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67128,7 +67890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1712), 35, + ACTIONS(1706), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67164,13 +67926,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48645] = 3, + [49788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 12, - sym__dedent, + ACTIONS(1748), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67181,7 +67943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1756), 35, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67217,13 +67979,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48701] = 3, + [49844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, - sym__dedent, + ACTIONS(1768), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67234,7 +67996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1766), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67270,13 +68032,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48757] = 3, + [49900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 12, - sym__dedent, + ACTIONS(1774), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67287,7 +68049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 35, + ACTIONS(1776), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67323,13 +68085,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48813] = 3, + [49956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, - sym__dedent, + ACTIONS(1772), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67340,7 +68102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1770), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67376,13 +68138,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48869] = 3, + [50012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1726), 12, + ACTIONS(1720), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67393,7 +68155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1722), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67429,11 +68191,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48925] = 3, + [50068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 12, + ACTIONS(1724), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67446,7 +68208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1722), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67482,11 +68244,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48981] = 3, + [50124] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 12, + ACTIONS(1774), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67499,7 +68261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 35, + ACTIONS(1776), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67535,84 +68297,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49037] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1760), 1, - sym_identifier, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1764), 1, - anon_sym_STAR, - ACTIONS(1770), 1, - anon_sym_LBRACK, - ACTIONS(1772), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1575), 1, - sym_list_splat_pattern, - STATE(1628), 1, - sym_primary_expression, - STATE(2097), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1768), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, - sym_attribute, - sym_subscript, - STATE(2044), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1766), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(957), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1348), 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, - [49129] = 3, + [50180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 12, - sym__dedent, + ACTIONS(1702), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67623,7 +68314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 35, + ACTIONS(1700), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67659,84 +68350,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49185] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1760), 1, - sym_identifier, - ACTIONS(1762), 1, - anon_sym_LPAREN, - ACTIONS(1764), 1, - anon_sym_STAR, - ACTIONS(1770), 1, - anon_sym_LBRACK, - ACTIONS(1772), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1575), 1, - sym_list_splat_pattern, - STATE(1628), 1, - sym_primary_expression, - STATE(2097), 1, - sym_pattern, + [50236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1768), 2, - anon_sym_match, - anon_sym_type, - STATE(1574), 2, - sym_attribute, - sym_subscript, - STATE(2044), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1766), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(971), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1348), 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, - [49277] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1738), 12, + ACTIONS(1724), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67747,7 +68367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1736), 35, + ACTIONS(1726), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67783,13 +68403,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49333] = 3, + [50292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 12, + ACTIONS(1742), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67800,7 +68420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1750), 35, + ACTIONS(1744), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67836,11 +68456,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49389] = 3, + [50348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 12, + ACTIONS(1750), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67853,7 +68473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1742), 35, + ACTIONS(1752), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67889,13 +68509,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49445] = 3, + [50404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 12, + ACTIONS(1754), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67942,11 +68562,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49501] = 3, + [50460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 12, + ACTIONS(1718), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67959,7 +68579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1746), 35, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67995,65 +68615,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49557] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1774), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1776), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, + [50516] = 5, + ACTIONS(1501), 1, anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [49612] = 3, + STATE(796), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 12, - sym__dedent, + ACTIONS(1778), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68064,7 +68636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1776), 34, + ACTIONS(1780), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68076,8 +68648,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, @@ -68099,15 +68669,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49667] = 5, - ACTIONS(1487), 1, + [50575] = 5, + ACTIONS(1495), 1, anon_sym_else, - STATE(796), 1, + STATE(757), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1784), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68120,7 +68690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68153,15 +68723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49726] = 5, - ACTIONS(1513), 1, + [50634] = 5, + ACTIONS(1505), 1, anon_sym_finally, - STATE(741), 1, + STATE(784), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, + ACTIONS(1786), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68174,7 +68744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68207,11 +68777,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49785] = 3, + [50693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, + ACTIONS(1790), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68224,7 +68794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 34, + ACTIONS(1792), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68259,121 +68829,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49840] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1788), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1786), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [49895] = 5, - ACTIONS(1487), 1, - anon_sym_else, - STATE(785), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1792), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1790), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [49954] = 5, - ACTIONS(1509), 1, - anon_sym_else, - STATE(775), 1, - sym_else_clause, + [50748] = 5, + ACTIONS(1505), 1, + anon_sym_finally, + STATE(751), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1535), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68386,7 +68850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1537), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68419,15 +68883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50013] = 5, - ACTIONS(1513), 1, + [50807] = 5, + ACTIONS(1505), 1, anon_sym_finally, - STATE(780), 1, + STATE(766), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1794), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68440,7 +68904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68473,17 +68937,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50072] = 5, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(782), 1, - sym_finally_clause, + [50866] = 5, + ACTIONS(1495), 1, + anon_sym_else, + STATE(819), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(1778), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68494,7 +68958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1780), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68527,15 +68991,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50131] = 5, - ACTIONS(1487), 1, + [50925] = 5, + ACTIONS(1495), 1, anon_sym_else, - STATE(732), 1, + STATE(814), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1800), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68548,7 +69012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 32, + ACTIONS(1798), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68581,17 +69045,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50190] = 5, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(819), 1, - sym_finally_clause, + [50984] = 5, + ACTIONS(1501), 1, + anon_sym_else, + STATE(810), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1804), 12, - sym__dedent, + ACTIONS(1802), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68602,7 +69066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1804), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68635,15 +69099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50249] = 5, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(749), 1, - sym_finally_clause, + [51043] = 5, + ACTIONS(1495), 1, + anon_sym_else, + STATE(743), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1808), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68656,7 +69120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1806), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68689,17 +69153,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50308] = 5, - ACTIONS(1509), 1, - anon_sym_else, - STATE(800), 1, - sym_else_clause, + [51102] = 5, + ACTIONS(1499), 1, + anon_sym_finally, + STATE(825), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1792), 12, + ACTIONS(1535), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68710,7 +69174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1790), 32, + ACTIONS(1537), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68743,15 +69207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50367] = 5, - ACTIONS(1487), 1, - anon_sym_else, - STATE(841), 1, - sym_else_clause, + [51161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1808), 12, + ACTIONS(1812), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68764,7 +69224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1806), 32, + ACTIONS(1810), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68776,6 +69236,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, @@ -68797,15 +69259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50426] = 5, - ACTIONS(1509), 1, + [51216] = 5, + ACTIONS(1501), 1, anon_sym_else, - STATE(742), 1, + STATE(781), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1784), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68818,7 +69280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 32, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68851,15 +69313,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50485] = 5, - ACTIONS(1513), 1, - anon_sym_finally, - STATE(805), 1, - sym_finally_clause, + [51275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1804), 12, + ACTIONS(1814), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68872,7 +69330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1816), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68884,6 +69342,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, @@ -68905,17 +69365,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50544] = 5, - ACTIONS(1487), 1, - anon_sym_else, - STATE(734), 1, - sym_else_clause, + [51330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1812), 12, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68926,7 +69382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1810), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68938,6 +69394,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, @@ -68959,13 +69417,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50603] = 3, + [51385] = 5, + ACTIONS(1499), 1, + anon_sym_finally, + STATE(842), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1788), 12, + ACTIONS(1493), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68976,7 +69438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1786), 34, + ACTIONS(1491), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68988,8 +69450,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, @@ -69011,13 +69471,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50658] = 3, + [51444] = 5, + ACTIONS(1501), 1, + anon_sym_else, + STATE(739), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 12, - sym__dedent, + ACTIONS(1808), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69028,7 +69492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1784), 34, + ACTIONS(1806), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69040,8 +69504,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, @@ -69063,15 +69525,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50713] = 5, - ACTIONS(1509), 1, - anon_sym_else, - STATE(813), 1, - sym_else_clause, + [51503] = 5, + ACTIONS(1505), 1, + anon_sym_finally, + STATE(767), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1808), 12, + ACTIONS(1493), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69084,7 +69546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1806), 32, + ACTIONS(1491), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69117,17 +69579,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50772] = 5, - ACTIONS(1509), 1, - anon_sym_else, - STATE(817), 1, - sym_else_clause, + [51562] = 5, + ACTIONS(1499), 1, + anon_sym_finally, + STATE(841), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1812), 12, + ACTIONS(1794), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69138,7 +69600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1810), 32, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69171,15 +69633,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50831] = 5, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(750), 1, - sym_finally_clause, + [51621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(1790), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69192,7 +69650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1792), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69204,6 +69662,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, @@ -69225,17 +69685,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50890] = 5, - ACTIONS(1509), 1, + [51676] = 5, + ACTIONS(1495), 1, anon_sym_else, - STATE(736), 1, + STATE(731), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1802), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69246,7 +69706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 32, + ACTIONS(1804), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69279,15 +69739,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50949] = 5, - ACTIONS(1487), 1, - anon_sym_else, - STATE(748), 1, - sym_else_clause, + [51735] = 5, + ACTIONS(1499), 1, + anon_sym_finally, + STATE(782), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1786), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69300,7 +69760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69333,15 +69793,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51008] = 5, - ACTIONS(1491), 1, - anon_sym_finally, - STATE(764), 1, - sym_finally_clause, + [51794] = 5, + ACTIONS(1495), 1, + anon_sym_else, + STATE(813), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, + ACTIONS(1820), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69354,7 +69814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1818), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69387,83 +69847,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51067] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1818), 1, - sym_identifier, - ACTIONS(1820), 1, - anon_sym_LPAREN, - ACTIONS(1822), 1, - anon_sym_RPAREN, - ACTIONS(1824), 1, - anon_sym_STAR, - ACTIONS(1830), 1, - anon_sym_LBRACK, - ACTIONS(1832), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2320), 1, - sym_pattern, - STATE(2697), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1828), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1826), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [51159] = 3, + [51853] = 5, + ACTIONS(1501), 1, + anon_sym_else, + STATE(764), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1836), 12, - sym__dedent, + ACTIONS(1800), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69474,7 +69868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1834), 33, + ACTIONS(1798), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69491,7 +69885,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, @@ -69508,13 +69901,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51213] = 3, + [51912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(1814), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69525,7 +69918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 33, + ACTIONS(1816), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69537,12 +69930,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, @@ -69559,11 +69953,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51267] = 3, + [51967] = 5, + ACTIONS(1501), 1, + anon_sym_else, + STATE(792), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1836), 12, + ACTIONS(1820), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69576,7 +69974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1834), 33, + ACTIONS(1818), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69593,7 +69991,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, @@ -69610,13 +70007,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51321] = 3, + [52026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, - sym__dedent, + ACTIONS(1822), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69627,7 +70024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 33, + ACTIONS(1824), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69661,81 +70058,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51375] = 22, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1818), 1, - sym_identifier, - ACTIONS(1820), 1, - anon_sym_LPAREN, - ACTIONS(1824), 1, - anon_sym_STAR, - ACTIONS(1830), 1, - anon_sym_LBRACK, - ACTIONS(1832), 1, - anon_sym_await, - ACTIONS(1842), 1, - anon_sym_RPAREN, - STATE(1017), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2320), 1, - sym_pattern, - STATE(2756), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1828), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1826), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [51467] = 3, + [52080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(1828), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69748,7 +70075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1826), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69765,6 +70092,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, @@ -69781,13 +70109,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51520] = 3, + [52134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1822), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69798,7 +70126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1824), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69815,6 +70143,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, @@ -69831,13 +70160,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51573] = 3, + [52188] = 22, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + anon_sym_RPAREN, + ACTIONS(1836), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + anon_sym_LBRACK, + ACTIONS(1844), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1656), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + STATE(2525), 1, + sym_pattern, + STATE(2712), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, - sym__dedent, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1840), 2, + anon_sym_match, + anon_sym_type, + STATE(1657), 2, + sym_attribute, + sym_subscript, + STATE(2605), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1838), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [52280] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69848,7 +70247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1852), 32, + ACTIONS(1826), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69865,6 +70264,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, @@ -69881,113 +70281,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51626] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1858), 12, - sym__dedent, + [52334] = 22, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, sym_string_start, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1832), 1, anon_sym_LPAREN, + ACTIONS(1836), 1, anon_sym_STAR, + ACTIONS(1842), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1856), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1844), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [51679] = 3, + ACTIONS(1846), 1, + anon_sym_RPAREN, + STATE(1013), 1, + sym_string, + STATE(1656), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + STATE(2525), 1, + sym_pattern, + STATE(2794), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1840), 2, + anon_sym_match, + anon_sym_type, + STATE(1657), 2, + sym_attribute, + sym_subscript, + STATE(2605), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1860), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1838), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(379), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [51732] = 3, + STATE(1345), 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, + [52426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 12, - sym__dedent, + ACTIONS(1848), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69998,7 +70368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70031,60 +70401,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51785] = 21, - ACTIONS(291), 1, + [52479] = 21, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1852), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1854), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1609), 1, + STATE(1650), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1658), 1, sym_primary_expression, - STATE(2338), 1, + STATE(2543), 1, sym_pattern, - STATE(2735), 1, + STATE(2836), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(1858), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1653), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1856), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -70099,11 +70469,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51874] = 3, + [52568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(1866), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70116,7 +70486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70149,13 +70519,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51927] = 3, + [52621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, + ACTIONS(1870), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70166,7 +70536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70199,11 +70569,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51980] = 3, + [52674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, + ACTIONS(1874), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70216,7 +70586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70249,13 +70619,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52033] = 3, + [52727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1878), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70266,7 +70636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70299,11 +70669,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52086] = 3, + [52780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 12, + ACTIONS(1882), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70316,7 +70686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1896), 32, + ACTIONS(1880), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70349,13 +70719,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52139] = 3, + [52833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, + ACTIONS(1886), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70366,7 +70736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70399,13 +70769,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52192] = 3, + [52886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, + ACTIONS(1890), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70416,7 +70786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70449,11 +70819,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52245] = 3, + [52939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, + ACTIONS(1894), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70466,7 +70836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70499,13 +70869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52298] = 3, + [52992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 12, - sym__dedent, + ACTIONS(1896), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70516,7 +70886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1912), 32, + ACTIONS(1898), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70549,13 +70919,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52351] = 3, + [53045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, + ACTIONS(1902), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70566,7 +70936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(1900), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70599,11 +70969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52404] = 3, + [53098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(1906), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70616,7 +70986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(1904), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70649,13 +71019,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52457] = 3, + [53151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, + ACTIONS(1910), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70666,7 +71036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70699,13 +71069,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52510] = 3, + [53204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1924), 12, + ACTIONS(1896), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70716,7 +71086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1926), 32, + ACTIONS(1898), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70749,11 +71119,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52563] = 3, + [53257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, + ACTIONS(1914), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70766,7 +71136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 32, + ACTIONS(1912), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70799,11 +71169,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52616] = 3, + [53310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1892), 12, + ACTIONS(1916), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1918), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53363] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1922), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70816,7 +71236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1894), 32, + ACTIONS(1920), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70849,11 +71269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52669] = 3, + [53416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1926), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70866,7 +71286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70899,11 +71319,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52722] = 3, + [53469] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1836), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + anon_sym_LBRACK, + ACTIONS(1844), 1, + anon_sym_await, + ACTIONS(1928), 1, + anon_sym_RPAREN, + STATE(1013), 1, + sym_string, + STATE(1656), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + STATE(2634), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1840), 2, + anon_sym_match, + anon_sym_type, + STATE(1657), 2, + sym_attribute, + sym_subscript, + STATE(2605), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1838), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [53558] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, + ACTIONS(1926), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70916,7 +71404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70949,11 +71437,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52775] = 3, + [53611] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1650), 1, + sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, + STATE(2536), 1, + sym_pattern, + STATE(2770), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1858), 2, + anon_sym_match, + anon_sym_type, + STATE(1653), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1856), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [53700] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1794), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70966,7 +71522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70999,11 +71555,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52828] = 3, + [53753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1904), 12, + ACTIONS(1932), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71016,7 +71572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1906), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71049,11 +71605,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52881] = 3, + [53806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1936), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71066,7 +71622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71099,13 +71655,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52934] = 3, + [53859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1804), 12, - sym__dedent, + ACTIONS(1938), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71116,7 +71672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1940), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71149,13 +71705,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52987] = 3, + [53912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(1493), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71166,7 +71722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(1491), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71199,11 +71755,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53040] = 3, + [53965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1942), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71216,7 +71772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71249,13 +71805,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53093] = 3, + [54018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, + ACTIONS(1948), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71266,7 +71822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71299,11 +71855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53146] = 3, + [54071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, + ACTIONS(1950), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71316,7 +71872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1952), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71349,13 +71905,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53199] = 3, + [54124] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1938), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71366,7 +71922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1940), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71399,13 +71955,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53252] = 3, + [54177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1944), 12, - sym__dedent, + ACTIONS(1954), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71416,7 +71972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1946), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71449,13 +72005,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53305] = 3, + [54230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, - sym__dedent, + ACTIONS(1958), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71466,7 +72022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71499,11 +72055,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53358] = 3, + [54283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1964), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71516,7 +72072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71549,11 +72105,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53411] = 3, + [54336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1948), 12, + ACTIONS(1942), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71566,7 +72122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1950), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71599,79 +72155,161 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53464] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + [54389] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1966), 12, sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1876), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1878), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1968), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1960), 1, - anon_sym_in, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(1629), 1, - sym_pattern, + sym_true, + sym_false, + sym_none, + [54442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(1950), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(1952), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 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, + [54495] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1970), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + sym_ellipsis, + sym_float, + ACTIONS(1972), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1348), 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, - [53553] = 3, + [54548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 12, + ACTIONS(1786), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71684,7 +72322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1860), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71717,11 +72355,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53606] = 3, + [54601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1964), 12, + ACTIONS(1954), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71734,7 +72372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1962), 32, + ACTIONS(1956), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71767,13 +72405,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53659] = 3, + [54654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1968), 12, - sym__dedent, + ACTIONS(1882), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71784,7 +72422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1966), 32, + ACTIONS(1880), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71817,13 +72455,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53712] = 3, + [54707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 12, - sym__dedent, + ACTIONS(1886), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71834,7 +72472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1800), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71867,11 +72505,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53765] = 3, + [54760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1890), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71884,7 +72522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1888), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71917,11 +72555,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53818] = 3, + [54813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1894), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71934,7 +72572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71967,11 +72605,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53871] = 3, + [54866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(1958), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -71984,7 +72622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1960), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72017,11 +72655,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53924] = 3, + [54919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 12, + ACTIONS(1914), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72034,7 +72672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1984), 32, + ACTIONS(1912), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72067,11 +72705,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53977] = 3, + [54972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1493), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72084,7 +72722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1491), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72117,13 +72755,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54030] = 3, + [55025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, - sym__dedent, + ACTIONS(1974), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72134,7 +72772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1990), 32, + ACTIONS(1976), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72167,13 +72805,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54083] = 3, + [55078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 12, + ACTIONS(1980), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72184,7 +72822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1852), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72217,11 +72855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54136] = 3, + [55131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 12, + ACTIONS(1922), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72234,7 +72872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1864), 32, + ACTIONS(1920), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72267,81 +72905,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54189] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1818), 1, - sym_identifier, - ACTIONS(1820), 1, - anon_sym_LPAREN, - ACTIONS(1824), 1, - anon_sym_STAR, - ACTIONS(1830), 1, - anon_sym_LBRACK, - ACTIONS(1832), 1, - anon_sym_await, - ACTIONS(1994), 1, - anon_sym_RPAREN, - STATE(1017), 1, - sym_string, - STATE(1596), 1, - sym_list_splat_pattern, - STATE(1622), 1, - sym_primary_expression, - STATE(2563), 1, - sym_pattern, + [55184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1828), 2, - anon_sym_match, - anon_sym_type, - STATE(1597), 2, - sym_attribute, - sym_subscript, - STATE(2578), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1826), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [54278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1998), 12, - sym__dedent, + ACTIONS(1932), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72352,7 +72922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72385,11 +72955,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54331] = 3, + [55237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 12, + ACTIONS(1936), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72402,7 +72972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1888), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72435,11 +73005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54384] = 3, + [55290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2000), 12, + ACTIONS(1948), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72452,7 +73022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2002), 32, + ACTIONS(1946), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72485,13 +73055,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54437] = 3, + [55343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2004), 12, + ACTIONS(1984), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72502,7 +73072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72535,13 +73105,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54490] = 3, + [55396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, - sym__dedent, + ACTIONS(1980), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72552,7 +73122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(1978), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72585,11 +73155,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54543] = 3, + [55449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1984), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72602,7 +73172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72635,11 +73205,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54596] = 3, + [55502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 12, + ACTIONS(1986), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72652,7 +73222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1988), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72685,81 +73255,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54649] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2489), 1, - sym_pattern, - STATE(2783), 1, - sym_pattern_list, + [55555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1872), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [54738] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1804), 12, + ACTIONS(1986), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72770,7 +73272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1802), 32, + ACTIONS(1988), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72803,13 +73305,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54791] = 3, + [55608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2014), 12, - sym__dedent, + ACTIONS(1964), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72820,7 +73322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2012), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72853,11 +73355,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54844] = 3, + [55661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(1990), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72870,7 +73372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(1992), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72903,13 +73405,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54897] = 3, + [55714] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1830), 1, + sym_identifier, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1836), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + anon_sym_LBRACK, + ACTIONS(1844), 1, + anon_sym_await, + ACTIONS(1994), 1, + anon_sym_RPAREN, + STATE(1013), 1, + sym_string, + STATE(1656), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, + STATE(2634), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 12, - sym__dedent, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1840), 2, + anon_sym_match, + anon_sym_type, + STATE(1657), 2, + sym_attribute, + sym_subscript, + STATE(2605), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1838), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [55803] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1996), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72920,7 +73490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1998), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72953,11 +73523,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54950] = 3, + [55856] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1650), 1, + sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, + STATE(2478), 1, + sym_pattern, + STATE(2691), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1858), 2, + anon_sym_match, + anon_sym_type, + STATE(1653), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1856), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [55945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(2000), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72970,7 +73608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(2002), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73003,11 +73641,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55003] = 3, + [55998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(2004), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73020,7 +73658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73053,11 +73691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55056] = 3, + [56051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2024), 12, + ACTIONS(2008), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73070,7 +73708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2026), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73103,11 +73741,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55109] = 3, + [56104] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1964), 12, + ACTIONS(2012), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73120,7 +73758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1962), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73153,13 +73791,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55162] = 3, + [56157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, - sym__dedent, + ACTIONS(2016), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73170,7 +73808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73203,13 +73841,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55215] = 3, + [56210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1980), 12, + ACTIONS(1990), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73220,7 +73858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1978), 32, + ACTIONS(1992), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73253,13 +73891,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55268] = 3, + [56263] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1650), 1, + sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, + STATE(2544), 1, + sym_pattern, + STATE(2840), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1916), 12, - sym__dedent, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1858), 2, + anon_sym_match, + anon_sym_type, + STATE(1653), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1856), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [56352] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2020), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73270,7 +73976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1918), 32, + ACTIONS(2022), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73303,13 +74009,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55321] = 3, + [56405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2024), 12, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73353,13 +74059,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55374] = 3, + [56458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, + ACTIONS(2024), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73370,7 +74076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1990), 32, + ACTIONS(2026), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73403,81 +74109,113 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55427] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2412), 1, - sym_pattern, - STATE(2640), 1, - sym_pattern_list, + [56511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(2028), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(2030), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 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, + [56564] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2032), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + sym_ellipsis, + sym_float, + ACTIONS(2034), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1348), 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, - [55516] = 3, + [56617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1924), 12, - sym__dedent, + ACTIONS(2036), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73488,7 +74226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1926), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73521,11 +74259,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55569] = 3, + [56670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 12, + ACTIONS(2040), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73538,7 +74276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2008), 32, + ACTIONS(2042), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73571,60 +74309,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55622] = 21, - ACTIONS(291), 1, + [56723] = 21, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1818), 1, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, sym_identifier, - ACTIONS(1820), 1, + ACTIONS(1854), 1, anon_sym_LPAREN, - ACTIONS(1824), 1, - anon_sym_STAR, - ACTIONS(1830), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1832), 1, + ACTIONS(1862), 1, anon_sym_await, - ACTIONS(2028), 1, - anon_sym_RPAREN, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1596), 1, + STATE(1650), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1658), 1, sym_primary_expression, - STATE(2563), 1, + STATE(2480), 1, sym_pattern, + STATE(2715), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1828), 2, + ACTIONS(1858), 2, anon_sym_match, anon_sym_type, - STATE(1597), 2, + STATE(1653), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1826), 3, + ACTIONS(1856), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73639,11 +74377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [55711] = 3, + [56812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(1878), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73656,7 +74394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73689,11 +74427,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55764] = 3, + [56865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 12, + ACTIONS(1535), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73706,7 +74444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2020), 32, + ACTIONS(1537), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73739,13 +74477,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55817] = 3, + [56918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 12, - sym__dedent, + ACTIONS(2044), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73756,7 +74494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73789,13 +74527,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55870] = 3, + [56971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1900), 12, - sym__dedent, + ACTIONS(1866), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73806,7 +74544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1902), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73839,79 +74577,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55923] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2471), 1, - sym_pattern, - STATE(2760), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1872), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [56012] = 3, + [57024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(1870), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73924,7 +74594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1868), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73957,11 +74627,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56065] = 3, + [57077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(1874), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -73974,7 +74644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74007,13 +74677,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56118] = 3, + [57130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 12, + ACTIONS(2000), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74024,7 +74694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2044), 32, + ACTIONS(2002), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74057,13 +74727,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56171] = 3, + [57183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 12, + ACTIONS(1966), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74074,7 +74744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2048), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74107,11 +74777,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56224] = 3, + [57236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1495), 12, + ACTIONS(2004), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74124,7 +74794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1493), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74157,11 +74827,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56277] = 3, + [57289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2050), 12, + ACTIONS(1902), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74174,7 +74844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2052), 32, + ACTIONS(1900), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74207,13 +74877,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56330] = 3, + [57342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2000), 12, - sym__dedent, + ACTIONS(2048), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74224,7 +74894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2002), 32, + ACTIONS(2050), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74257,81 +74927,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56383] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(2028), 1, - anon_sym_RBRACK, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2056), 1, - anon_sym_LPAREN, - ACTIONS(2058), 1, - anon_sym_STAR, - ACTIONS(2064), 1, - anon_sym_LBRACK, - ACTIONS(2066), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(1627), 1, - sym_primary_expression, - STATE(2584), 1, - sym_pattern, + [57395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2062), 2, - anon_sym_match, - anon_sym_type, - STATE(1605), 2, - sym_attribute, - sym_subscript, - STATE(2525), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2060), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [56472] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2032), 12, + ACTIONS(2008), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74342,7 +74944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2030), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74375,13 +74977,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56525] = 3, + [57448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 12, + ACTIONS(2016), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74392,7 +74994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2070), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74425,13 +75027,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56578] = 3, + [57501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, - sym__dedent, + ACTIONS(1906), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74442,7 +75044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1904), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74475,11 +75077,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56631] = 3, + [57554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 12, + ACTIONS(2052), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74492,7 +75094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1912), 32, + ACTIONS(2054), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74525,11 +75127,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56684] = 3, + [57607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 12, + ACTIONS(1910), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74542,7 +75144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1880), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74575,11 +75177,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56737] = 3, + [57660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 12, + ACTIONS(2056), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -74592,7 +75194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1896), 32, + ACTIONS(2058), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74625,61 +75227,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56790] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2034), 12, - sym__dedent, + [57713] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1439), 1, anon_sym_STAR, + ACTIONS(1852), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1862), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1650), 1, + sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, + STATE(2310), 1, + sym_pattern, + STATE(2681), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1858), 2, + anon_sym_match, + anon_sym_type, + STATE(1653), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2036), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1856), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(379), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56843] = 3, + STATE(1345), 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, + [57802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 12, + ACTIONS(1794), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74692,7 +75312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2040), 32, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74725,13 +75345,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56896] = 3, + [57855] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + ACTIONS(2060), 1, + anon_sym_in, + STATE(1013), 1, + sym_string, + STATE(1650), 1, + sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, + STATE(1680), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1858), 2, + anon_sym_match, + anon_sym_type, + STATE(1653), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1856), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [57944] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1916), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74742,7 +75430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(1918), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74775,63 +75463,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56949] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2014), 12, + [57997] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1928), 1, + anon_sym_RBRACK, + ACTIONS(2062), 1, + sym_identifier, + ACTIONS(2064), 1, anon_sym_LPAREN, + ACTIONS(2066), 1, anon_sym_STAR, + ACTIONS(2072), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2074), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1639), 1, + sym_list_splat_pattern, + STATE(1666), 1, + sym_primary_expression, + STATE(2559), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(2070), 2, + anon_sym_match, + anon_sym_type, + STATE(1640), 2, + sym_attribute, + sym_subscript, + STATE(2546), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2012), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(2068), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(379), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57002] = 3, + STATE(1345), 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, + [58086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 12, + ACTIONS(2040), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74842,7 +75548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2074), 32, + ACTIONS(2042), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74875,110 +75581,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57055] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2042), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2044), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [57108] = 21, - ACTIONS(291), 1, + [58139] = 21, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1852), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1854), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2076), 1, + anon_sym_in, + STATE(1013), 1, sym_string, - STATE(1609), 1, + STATE(1650), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1658), 1, sym_primary_expression, - STATE(2251), 1, + STATE(1680), 1, sym_pattern, - STATE(2741), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(1858), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1653), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1856), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74993,110 +75649,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57197] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [58228] = 21, + ACTIONS(368), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2048), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [57250] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1994), 1, + anon_sym_RBRACK, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(2064), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(2066), 1, + anon_sym_STAR, + ACTIONS(2072), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(2074), 1, anon_sym_await, - ACTIONS(2076), 1, - anon_sym_in, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1609), 1, + STATE(1639), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1666), 1, sym_primary_expression, - STATE(1629), 1, + STATE(2559), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(2070), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1640), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(2068), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75111,13 +75717,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57339] = 3, + [58317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(2012), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75128,7 +75734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(2014), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75161,79 +75767,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57392] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, + [58370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2020), 12, + sym__dedent, sym_string_start, - ACTIONS(1994), 1, - anon_sym_RBRACK, - ACTIONS(2054), 1, - sym_identifier, - ACTIONS(2056), 1, anon_sym_LPAREN, - ACTIONS(2058), 1, anon_sym_STAR, - ACTIONS(2064), 1, anon_sym_LBRACK, - ACTIONS(2066), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(1627), 1, - sym_primary_expression, - STATE(2584), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2062), 2, - anon_sym_match, - anon_sym_type, - STATE(1605), 2, - sym_attribute, - sym_subscript, - STATE(2525), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2060), 3, + sym_ellipsis, + sym_float, + ACTIONS(2022), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1348), 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, - [57481] = 3, + [58423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2050), 12, + ACTIONS(1848), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75246,7 +75834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2052), 32, + ACTIONS(1850), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75279,11 +75867,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57534] = 3, + [58476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2072), 12, + ACTIONS(1535), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75296,7 +75884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2074), 32, + ACTIONS(1537), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75329,13 +75917,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57587] = 3, + [58529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2004), 12, - sym__dedent, + ACTIONS(2078), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75346,7 +75934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2006), 32, + ACTIONS(2080), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75379,11 +75967,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57640] = 3, + [58582] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2016), 12, + ACTIONS(2052), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75396,7 +75984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2018), 32, + ACTIONS(2054), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75429,13 +76017,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57693] = 3, + [58635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 12, + ACTIONS(2032), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75446,7 +76034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1856), 32, + ACTIONS(2034), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75479,11 +76067,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57746] = 3, + [58688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(2056), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75496,7 +76084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(2058), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75529,11 +76117,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57799] = 3, + [58741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 12, + ACTIONS(2036), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75546,7 +76134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1984), 32, + ACTIONS(2038), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75579,11 +76167,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57852] = 3, + [58794] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1505), 12, + ACTIONS(1970), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75596,7 +76184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1507), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75629,79 +76217,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57905] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2445), 1, - sym_pattern, - STATE(2680), 1, - sym_pattern_list, + [58847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1872), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [57994] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1786), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75714,7 +76234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75747,60 +76267,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58047] = 21, - ACTIONS(291), 1, + [58900] = 21, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1852), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1854), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1609), 1, + STATE(1650), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1658), 1, sym_primary_expression, - STATE(2448), 1, + STATE(2502), 1, sym_pattern, - STATE(2690), 1, + STATE(2737), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(1858), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1653), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1856), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75815,11 +76335,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58136] = 3, + [58989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1974), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75832,7 +76352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1942), 32, + ACTIONS(1976), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75865,11 +76385,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58189] = 3, + [59042] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, + sym_identifier, + ACTIONS(1854), 1, + anon_sym_LPAREN, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(1862), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1650), 1, + sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, + STATE(2504), 1, + sym_pattern, + STATE(2747), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2068), 12, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(1858), 2, + anon_sym_match, + anon_sym_type, + STATE(1653), 2, + sym_attribute, + sym_subscript, + STATE(1681), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1856), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [59131] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2028), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75882,7 +76470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2070), 32, + ACTIONS(2030), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75915,60 +76503,160 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58242] = 21, - ACTIONS(291), 1, + [59184] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2044), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(308), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2046), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59237] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2048), 12, + sym__dedent, sym_string_start, - ACTIONS(1427), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(1868), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2050), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1870), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [59290] = 21, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, + sym_identifier, + ACTIONS(1854), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1609), 1, + STATE(1650), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1658), 1, sym_primary_expression, - STATE(2461), 1, + STATE(2515), 1, sym_pattern, - STATE(2716), 1, + STATE(2773), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(1858), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1653), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1856), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75983,60 +76671,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58331] = 21, - ACTIONS(291), 1, + [59379] = 21, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(1852), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(1854), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1609), 1, + STATE(1650), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1658), 1, sym_primary_expression, - STATE(2462), 1, + STATE(2516), 1, sym_pattern, - STATE(2718), 1, + STATE(2775), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(1858), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1653), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(1856), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76051,11 +76739,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58420] = 3, + [59468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(2078), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -76068,7 +76756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(2080), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76101,81 +76789,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58473] = 21, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, - sym_identifier, - ACTIONS(1870), 1, - anon_sym_LPAREN, - ACTIONS(1876), 1, - anon_sym_LBRACK, - ACTIONS(1878), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1609), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(2488), 1, - sym_pattern, - STATE(2779), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(1874), 2, - anon_sym_match, - anon_sym_type, - STATE(1610), 2, - sym_attribute, - sym_subscript, - STATE(1634), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1872), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [58562] = 3, + [59521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1968), 12, + ACTIONS(1996), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -76186,7 +76806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1966), 32, + ACTIONS(1998), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76219,58 +76839,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58615] = 20, - ACTIONS(291), 1, + [59574] = 20, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2054), 1, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(2056), 1, + ACTIONS(2064), 1, anon_sym_LPAREN, - ACTIONS(2058), 1, + ACTIONS(2066), 1, anon_sym_STAR, - ACTIONS(2064), 1, + ACTIONS(2072), 1, anon_sym_LBRACK, - ACTIONS(2066), 1, + ACTIONS(2074), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1604), 1, + STATE(1639), 1, sym_list_splat_pattern, - STATE(1627), 1, + STATE(1666), 1, sym_primary_expression, - STATE(2584), 1, + STATE(2559), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2062), 2, + ACTIONS(2070), 2, anon_sym_match, anon_sym_type, - STATE(1605), 2, + STATE(1640), 2, sym_attribute, sym_subscript, - STATE(2525), 2, + STATE(2546), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2060), 3, + ACTIONS(2068), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76285,58 +76905,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58701] = 20, - ACTIONS(291), 1, + [59660] = 20, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1818), 1, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(1852), 1, sym_identifier, - ACTIONS(1820), 1, + ACTIONS(1854), 1, anon_sym_LPAREN, - ACTIONS(1824), 1, - anon_sym_STAR, - ACTIONS(1830), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(1832), 1, + ACTIONS(1862), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1596), 1, + STATE(1650), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1658), 1, sym_primary_expression, - STATE(2563), 1, + STATE(1680), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1828), 2, + ACTIONS(1858), 2, anon_sym_match, anon_sym_type, - STATE(1597), 2, + STATE(1653), 2, sym_attribute, sym_subscript, - STATE(2578), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1826), 3, + ACTIONS(1856), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76351,58 +76971,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58787] = 20, - ACTIONS(17), 1, - anon_sym_STAR, - ACTIONS(291), 1, + [59746] = 20, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(955), 1, + ACTIONS(1728), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(1730), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(1732), 1, + anon_sym_STAR, + ACTIONS(1738), 1, anon_sym_LBRACK, - ACTIONS(969), 1, + ACTIONS(1740), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1359), 1, + STATE(1617), 1, sym_list_splat_pattern, - STATE(1592), 1, - sym_pattern, - STATE(1615), 1, + STATE(1667), 1, sym_primary_expression, + STATE(2119), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(965), 2, + ACTIONS(1736), 2, anon_sym_match, anon_sym_type, - STATE(1362), 2, + STATE(1615), 2, sym_attribute, sym_subscript, - STATE(1594), 2, + STATE(2122), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(963), 3, + ACTIONS(1734), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76417,58 +77037,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58873] = 20, - ACTIONS(291), 1, + [59832] = 20, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(1868), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(1870), 1, + ACTIONS(929), 1, anon_sym_LPAREN, - ACTIONS(1876), 1, + ACTIONS(937), 1, anon_sym_LBRACK, - ACTIONS(1878), 1, + ACTIONS(939), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1609), 1, + STATE(1390), 1, sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - STATE(1629), 1, + STATE(1646), 1, sym_pattern, + STATE(1654), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1874), 2, + ACTIONS(935), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1391), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(1647), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1872), 3, + ACTIONS(933), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76483,58 +77103,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58959] = 20, - ACTIONS(291), 1, + [59918] = 20, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1027), 1, + ACTIONS(1830), 1, sym_identifier, - ACTIONS(1029), 1, + ACTIONS(1832), 1, anon_sym_LPAREN, - ACTIONS(1037), 1, + ACTIONS(1836), 1, + anon_sym_STAR, + ACTIONS(1842), 1, anon_sym_LBRACK, - ACTIONS(1039), 1, + ACTIONS(1844), 1, anon_sym_await, - ACTIONS(2078), 1, - anon_sym_STAR, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1475), 1, + STATE(1656), 1, sym_list_splat_pattern, - STATE(1623), 1, + STATE(1662), 1, sym_primary_expression, - STATE(1629), 1, + STATE(2634), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1035), 2, + ACTIONS(1840), 2, anon_sym_match, anon_sym_type, - STATE(1481), 2, + STATE(1657), 2, sym_attribute, sym_subscript, - STATE(1634), 2, + STATE(2605), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1033), 3, + ACTIONS(1838), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76549,58 +77169,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59045] = 20, - ACTIONS(291), 1, + [60004] = 20, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1760), 1, + ACTIONS(1071), 1, sym_identifier, - ACTIONS(1762), 1, + ACTIONS(1073), 1, anon_sym_LPAREN, - ACTIONS(1764), 1, - anon_sym_STAR, - ACTIONS(1770), 1, + ACTIONS(1081), 1, anon_sym_LBRACK, - ACTIONS(1772), 1, + ACTIONS(1083), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2082), 1, + anon_sym_STAR, + STATE(1013), 1, sym_string, - STATE(1575), 1, + STATE(1527), 1, sym_list_splat_pattern, - STATE(1628), 1, + STATE(1663), 1, sym_primary_expression, - STATE(2097), 1, + STATE(1680), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(1768), 2, + ACTIONS(1079), 2, anon_sym_match, anon_sym_type, - STATE(1574), 2, + STATE(1528), 2, sym_attribute, sym_subscript, - STATE(2044), 2, + STATE(1681), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1766), 3, + ACTIONS(1077), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76615,56 +77235,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59131] = 19, - ACTIONS(291), 1, + [60090] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2080), 1, + ACTIONS(2084), 1, sym_identifier, - ACTIONS(2088), 1, + ACTIONS(2092), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1658), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2082), 2, + ACTIONS(2086), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(2086), 2, + ACTIONS(2090), 2, anon_sym_match, anon_sym_type, - STATE(1600), 2, + STATE(1651), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2084), 3, + ACTIONS(2088), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76679,56 +77299,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59214] = 19, - ACTIONS(291), 1, + [60173] = 19, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2090), 1, + ACTIONS(2094), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2100), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1662), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2082), 2, + ACTIONS(2086), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2094), 2, + ACTIONS(2098), 2, anon_sym_match, anon_sym_type, - STATE(1590), 2, + STATE(1632), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2092), 3, + ACTIONS(2096), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -76743,51 +77363,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59297] = 17, - ACTIONS(713), 1, + [60256] = 17, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(969), 1, + STATE(985), 1, sym_string, - STATE(994), 1, + STATE(991), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76804,51 +77424,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59375] = 17, - ACTIONS(757), 1, + [60334] = 17, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1106), 1, + STATE(1081), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76865,51 +77485,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59453] = 17, - ACTIONS(291), 1, + [60412] = 17, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1046), 1, + STATE(980), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(623), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(621), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76926,51 +77546,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59531] = 17, - ACTIONS(781), 1, + [60490] = 17, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1157), 1, + STATE(1113), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76987,62 +77607,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59609] = 21, - ACTIONS(2102), 1, + [60568] = 21, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2116), 1, anon_sym_STAR_STAR, - ACTIONS(2114), 1, + ACTIONS(2118), 1, anon_sym_EQ, - ACTIONS(2116), 1, + ACTIONS(2120), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, + ACTIONS(2126), 1, anon_sym_PIPE, - ACTIONS(2124), 1, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2126), 1, + ACTIONS(2130), 1, anon_sym_AMP, - ACTIONS(2128), 1, + ACTIONS(2132), 1, anon_sym_CARET, - ACTIONS(2130), 1, + ACTIONS(2134), 1, anon_sym_is, - STATE(1553), 1, + STATE(1596), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2112), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2124), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2132), 2, + ACTIONS(2136), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(920), 2, sym__not_in, sym__is_not, - STATE(1101), 2, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2122), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2110), 6, + ACTIONS(2114), 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(2100), 9, + ACTIONS(2104), 9, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -77052,51 +77672,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [59695] = 17, - ACTIONS(691), 1, + [60654] = 17, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1251), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(993), 1, + STATE(1001), 1, sym_string, - STATE(1060), 1, + STATE(1047), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77113,51 +77733,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59773] = 17, - ACTIONS(67), 1, + [60732] = 17, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(961), 1, + STATE(1013), 1, sym_string, - STATE(970), 1, + STATE(1073), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(379), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77174,51 +77794,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59851] = 17, - ACTIONS(666), 1, + [60810] = 17, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(981), 1, + STATE(1059), 1, sym_string, - STATE(1035), 1, + STATE(1247), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77235,51 +77855,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59929] = 17, - ACTIONS(735), 1, + [60888] = 17, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(2098), 1, + ACTIONS(2102), 1, anon_sym_not, - STATE(973), 1, + STATE(977), 1, sym_string, - STATE(988), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77296,49 +77916,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60007] = 16, - ACTIONS(757), 1, + [60966] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(985), 1, sym_string, - STATE(1106), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77355,49 +77975,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60082] = 16, - ACTIONS(691), 1, + [61041] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1064), 1, + STATE(1249), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77414,49 +78034,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60157] = 16, - ACTIONS(691), 1, + [61116] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1065), 1, + STATE(1250), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77473,49 +78093,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60232] = 16, - ACTIONS(757), 1, + [61191] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1059), 1, sym_string, - STATE(1103), 1, + STATE(1251), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77532,49 +78152,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60307] = 16, - ACTIONS(757), 1, + [61266] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1059), 1, sym_string, - STATE(1105), 1, + STATE(1252), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77591,119 +78211,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60382] = 21, - ACTIONS(2114), 1, - anon_sym_as, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, + [61341] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(2152), 1, - anon_sym_PIPE, - ACTIONS(2154), 1, - anon_sym_AMP, - ACTIONS(2156), 1, - anon_sym_CARET, - ACTIONS(2158), 1, - anon_sym_is, - STATE(1562), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2138), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2160), 2, - anon_sym_LT, - anon_sym_GT, - STATE(919), 2, - sym__not_in, - sym__is_not, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2142), 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(2100), 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, - [60467] = 18, - ACTIONS(291), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(673), 1, + anon_sym_await, + ACTIONS(675), 1, sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(967), 1, anon_sym_STAR, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, - anon_sym_await, - STATE(1017), 1, + STATE(977), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1621), 1, + STATE(1020), 1, sym_primary_expression, + STATE(1239), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2166), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - STATE(1081), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(671), 2, + sym_ellipsis, + sym_float, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(667), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(655), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -77716,49 +78270,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60546] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61416] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(669), 1, + anon_sym_LBRACE, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(967), 1, anon_sym_STAR, - STATE(961), 1, + STATE(977), 1, sym_string, - STATE(984), 1, + STATE(1022), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(671), 2, + sym_ellipsis, + sym_float, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(667), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77775,53 +78329,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60621] = 16, - ACTIONS(291), 1, + [61491] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2138), 1, + sym_identifier, + ACTIONS(2144), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1122), 1, - sym_primary_expression, STATE(1416), 1, sym_list_splat_pattern, + STATE(1664), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(2142), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + STATE(1388), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2140), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77834,49 +78390,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60696] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61570] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(743), 1, + sym_string_start, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(961), 1, + STATE(985), 1, sym_string, - STATE(970), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(739), 2, + sym_ellipsis, + sym_float, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(735), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77893,49 +78449,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60771] = 16, - ACTIONS(735), 1, + [61645] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(967), 1, anon_sym_STAR, - STATE(973), 1, + STATE(977), 1, sym_string, - STATE(1001), 1, + STATE(1023), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77952,49 +78508,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60846] = 16, - ACTIONS(735), 1, + [61720] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(967), 1, anon_sym_STAR, - STATE(973), 1, + STATE(977), 1, sym_string, - STATE(1003), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78011,53 +78567,112 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60921] = 18, - ACTIONS(291), 1, + [61795] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(629), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(2170), 1, + STATE(966), 1, + sym_string, + STATE(984), 1, + sym_primary_expression, + STATE(1137), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(623), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(621), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, + sym_integer, sym_identifier, - ACTIONS(2176), 1, + sym_true, + sym_false, + sym_none, + STATE(1076), 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, + [61870] = 18, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(2146), 1, + sym_identifier, + ACTIONS(2152), 1, anon_sym_await, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1626), 1, + STATE(1658), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, + ACTIONS(2150), 2, anon_sym_match, anon_sym_type, - STATE(1456), 2, + STATE(1428), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(2148), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78072,49 +78687,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61000] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [61949] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(669), 1, + anon_sym_LBRACE, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(967), 1, anon_sym_STAR, - STATE(961), 1, + STATE(977), 1, sym_string, - STATE(972), 1, + STATE(1026), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(671), 2, + sym_ellipsis, + sym_float, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(667), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78131,49 +78746,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61075] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [62024] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(765), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(961), 1, + STATE(1001), 1, sym_string, - STATE(974), 1, + STATE(1042), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(761), 2, + sym_ellipsis, + sym_float, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(757), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78190,49 +78805,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61150] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [62099] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(693), 1, + anon_sym_LBRACE, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(961), 1, + STATE(998), 1, sym_string, - STATE(975), 1, + STATE(1037), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(695), 2, + sym_ellipsis, + sym_float, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(691), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78249,49 +78864,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61225] = 16, - ACTIONS(735), 1, + [62174] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1001), 1, sym_string, - STATE(989), 1, + STATE(1043), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78308,49 +78923,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61300] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [62249] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(669), 1, + anon_sym_LBRACE, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(967), 1, anon_sym_STAR, - STATE(961), 1, + STATE(977), 1, sym_string, - STATE(979), 1, + STATE(1027), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(671), 2, + sym_ellipsis, + sym_float, + ACTIONS(661), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(655), 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, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [62324] = 16, + ACTIONS(747), 1, + anon_sym_LPAREN, + ACTIONS(755), 1, + anon_sym_LBRACK, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + anon_sym_await, + ACTIONS(765), 1, + sym_string_start, + ACTIONS(1251), 1, + anon_sym_STAR, + STATE(1001), 1, + sym_string, + STATE(1047), 1, + sym_primary_expression, + STATE(1284), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(753), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(761), 2, + sym_ellipsis, + sym_float, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(757), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78367,53 +79041,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61375] = 16, - ACTIONS(67), 1, + [62399] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(961), 1, + ACTIONS(2154), 1, + sym_identifier, + ACTIONS(2160), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(983), 1, - sym_primary_expression, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1661), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(2158), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1114), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(2156), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78426,49 +79102,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61450] = 16, - ACTIONS(781), 1, + [62478] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1001), 1, sym_string, - STATE(1155), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78485,49 +79161,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61525] = 16, - ACTIONS(757), 1, + [62553] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1001), 1, sym_string, - STATE(1107), 1, + STATE(1049), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78544,49 +79220,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61600] = 16, - ACTIONS(781), 1, + [62628] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1001), 1, sym_string, - STATE(1156), 1, + STATE(1050), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78603,49 +79279,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61675] = 16, - ACTIONS(781), 1, + [62703] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1001), 1, sym_string, - STATE(1157), 1, + STATE(1066), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78662,49 +79338,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61750] = 16, - ACTIONS(757), 1, + [62778] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(765), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1001), 1, sym_string, - STATE(1119), 1, + STATE(1067), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(761), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78721,49 +79397,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61825] = 16, - ACTIONS(781), 1, + [62853] = 16, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1158), 1, + STATE(1139), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(644), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78780,53 +79456,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61900] = 16, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, + [62928] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - anon_sym_await, - ACTIONS(777), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(1012), 1, + ACTIONS(2144), 1, + anon_sym_await, + ACTIONS(2162), 1, + sym_identifier, + STATE(1013), 1, sym_string, - STATE(1121), 1, - sym_primary_expression, - STATE(1337), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(773), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(2166), 2, + anon_sym_match, + anon_sym_type, + STATE(1395), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(2164), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78839,49 +79517,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61975] = 16, - ACTIONS(757), 1, + [63007] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(1004), 1, sym_string, - STATE(1123), 1, + STATE(1109), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78898,49 +79576,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62050] = 16, - ACTIONS(757), 1, + [63082] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(967), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(977), 1, sym_string, - STATE(1125), 1, + STATE(995), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78957,49 +79635,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62125] = 16, - ACTIONS(781), 1, + [63157] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1004), 1, sym_string, - STATE(1159), 1, + STATE(1112), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79016,49 +79694,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62200] = 16, - ACTIONS(781), 1, + [63232] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1160), 1, + STATE(976), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1137), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(623), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(621), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79075,55 +79753,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62275] = 18, - ACTIONS(291), 1, + [63307] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2178), 1, - sym_identifier, - ACTIONS(2184), 1, + ACTIONS(629), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(966), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1624), 1, + STATE(978), 1, sym_primary_expression, + STATE(1137), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2182), 2, + ACTIONS(623), 2, anon_sym_match, anon_sym_type, - STATE(1145), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(621), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79136,49 +79812,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62354] = 16, - ACTIONS(781), 1, + [63382] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(966), 1, sym_string, - STATE(1161), 1, + STATE(979), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1137), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(623), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(621), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79195,49 +79871,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62429] = 16, - ACTIONS(713), 1, + [63457] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1004), 1, sym_string, - STATE(987), 1, + STATE(1113), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79254,53 +79930,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62504] = 16, - ACTIONS(781), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [63532] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(797), 1, - anon_sym_await, - ACTIONS(799), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1329), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(1068), 1, + ACTIONS(2168), 1, + sym_identifier, + ACTIONS(2174), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1162), 1, - sym_primary_expression, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1665), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(2172), 2, + anon_sym_match, + anon_sym_type, + STATE(1470), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(2170), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79313,49 +79991,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62579] = 16, - ACTIONS(666), 1, + [63611] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(981), 1, + STATE(1004), 1, sym_string, - STATE(1022), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79372,110 +80050,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62654] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2186), 1, - sym_identifier, - ACTIONS(2192), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1625), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2190), 2, - anon_sym_match, - anon_sym_type, - STATE(1349), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2188), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [62733] = 16, - ACTIONS(666), 1, + [63686] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(981), 1, + STATE(1004), 1, sym_string, - STATE(1032), 1, + STATE(1060), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79492,49 +80109,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62808] = 16, - ACTIONS(666), 1, + [63761] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(981), 1, + STATE(998), 1, sym_string, - STATE(1035), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79551,49 +80168,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62883] = 16, - ACTIONS(666), 1, + [63836] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(981), 1, + STATE(998), 1, sym_string, - STATE(1037), 1, + STATE(1080), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79610,49 +80227,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62958] = 16, - ACTIONS(666), 1, + [63911] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(981), 1, + STATE(998), 1, sym_string, - STATE(1038), 1, + STATE(1081), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79669,49 +80286,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63033] = 16, - ACTIONS(666), 1, + [63986] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(981), 1, + STATE(998), 1, sym_string, - STATE(1040), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79728,49 +80345,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63108] = 16, - ACTIONS(666), 1, + [64061] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(981), 1, + STATE(998), 1, sym_string, - STATE(995), 1, + STATE(1084), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79787,55 +80404,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63183] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [64136] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2194), 1, - sym_identifier, - ACTIONS(2200), 1, + ACTIONS(693), 1, + anon_sym_LBRACE, + ACTIONS(697), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(1257), 1, + anon_sym_STAR, + STATE(998), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1620), 1, + STATE(1085), 1, sym_primary_expression, + STATE(1361), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2198), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - STATE(1357), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2196), 3, + ACTIONS(695), 2, + sym_ellipsis, + sym_float, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(691), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(677), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79848,49 +80463,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63262] = 16, - ACTIONS(666), 1, + [64211] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(981), 1, - sym_string, STATE(998), 1, + sym_string, + STATE(1086), 1, sym_primary_expression, - STATE(1147), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79907,49 +80522,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63337] = 16, - ACTIONS(757), 1, + [64286] = 16, + ACTIONS(679), 1, anon_sym_LPAREN, - ACTIONS(767), 1, + ACTIONS(689), 1, anon_sym_LBRACK, - ACTIONS(771), 1, + ACTIONS(693), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(777), 1, + ACTIONS(699), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1257), 1, anon_sym_STAR, - STATE(1012), 1, + STATE(998), 1, sym_string, - STATE(1099), 1, + STATE(1088), 1, sym_primary_expression, - STATE(1337), 1, + STATE(1361), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(685), 2, anon_sym_match, anon_sym_type, - ACTIONS(773), 2, + ACTIONS(695), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(683), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(769), 3, + ACTIONS(691), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(677), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1334), 16, + STATE(1399), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79966,55 +80581,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63412] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [64361] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2192), 1, + ACTIONS(715), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(2202), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(1317), 1, + anon_sym_STAR, + STATE(1004), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1625), 1, + STATE(1117), 1, sym_primary_expression, + STATE(1421), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2190), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - STATE(1349), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2188), 3, + ACTIONS(717), 2, + sym_ellipsis, + sym_float, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(713), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(701), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80027,49 +80640,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63491] = 16, - ACTIONS(735), 1, + [64436] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1004), 1, sym_string, - STATE(1016), 1, + STATE(1118), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80086,53 +80699,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63566] = 16, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [64511] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2174), 1, + anon_sym_await, + ACTIONS(2176), 1, + sym_identifier, + STATE(1013), 1, sym_string, - STATE(999), 1, - sym_primary_expression, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1666), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(2180), 2, + anon_sym_match, + anon_sym_type, + STATE(1397), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(2178), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80145,49 +80760,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63641] = 16, - ACTIONS(713), 1, + [64590] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1059), 1, sym_string, - STATE(1010), 1, + STATE(1240), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80204,116 +80819,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63716] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [64665] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2200), 1, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(2204), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(743), 1, + sym_string_start, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(985), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1620), 1, + STATE(1035), 1, sym_primary_expression, + STATE(1148), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2198), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - STATE(1357), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2196), 3, + ACTIONS(739), 2, + sym_ellipsis, + sym_float, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [63795] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2212), 1, - anon_sym_await, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1620), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2210), 2, - anon_sym_match, - anon_sym_type, - STATE(1603), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2208), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(723), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80326,55 +80878,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63874] = 18, - ACTIONS(291), 1, + [64740] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2168), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(2214), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(966), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1621), 1, + STATE(980), 1, sym_primary_expression, + STATE(1137), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2166), 2, + ACTIONS(623), 2, anon_sym_match, anon_sym_type, - STATE(1081), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(621), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80387,55 +80937,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63953] = 18, - ACTIONS(291), 1, + [64815] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2192), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(2216), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(966), 1, sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1622), 1, + STATE(981), 1, sym_primary_expression, + STATE(1137), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2220), 2, + ACTIONS(623), 2, anon_sym_match, anon_sym_type, - STATE(1365), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2218), 3, + ACTIONS(621), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80448,53 +80996,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64032] = 18, - ACTIONS(291), 1, + [64890] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2222), 1, - sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2152), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2182), 1, + sym_identifier, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1658), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2226), 2, + ACTIONS(2150), 2, anon_sym_match, anon_sym_type, - STATE(1587), 2, + STATE(1428), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2224), 3, + ACTIONS(2148), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80509,53 +81057,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64111] = 16, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [64969] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(682), 1, - anon_sym_await, - ACTIONS(684), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1007), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(981), 1, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(2190), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1002), 1, - sym_primary_expression, - STATE(1147), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1654), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(680), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(2188), 2, + anon_sym_match, + anon_sym_type, + STATE(656), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(2186), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1265), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80568,49 +81118,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64186] = 16, - ACTIONS(713), 1, + [65048] = 16, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1013), 1, sym_string, - STATE(994), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(644), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80627,53 +81177,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64261] = 16, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [65123] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2192), 1, + sym_identifier, + ACTIONS(2198), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1000), 1, - sym_primary_expression, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1667), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(2196), 2, + anon_sym_match, + anon_sym_type, + STATE(1255), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(2194), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80686,53 +81238,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64336] = 16, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [65202] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2200), 1, + sym_identifier, + ACTIONS(2206), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1006), 1, - sym_primary_expression, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1663), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(2204), 2, + anon_sym_match, + anon_sym_type, + STATE(1513), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(2202), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80745,53 +81299,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64411] = 16, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [65281] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1257), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2208), 1, + sym_identifier, + ACTIONS(2214), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(1020), 1, - sym_primary_expression, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1658), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(2212), 2, + anon_sym_match, + anon_sym_type, + STATE(1642), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(2210), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80804,49 +81360,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64486] = 16, - ACTIONS(713), 1, + [65360] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(969), 1, + STATE(966), 1, sym_string, - STATE(1034), 1, + STATE(982), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1137), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(623), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(621), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80863,49 +81419,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64561] = 16, - ACTIONS(713), 1, + [65435] = 16, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1257), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(969), 1, + STATE(1013), 1, sym_string, - STATE(1039), 1, + STATE(1072), 1, sym_primary_expression, - STATE(1268), 1, + STATE(1416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(644), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1151), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80922,110 +81478,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64636] = 18, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [65510] = 21, + ACTIONS(2118), 1, + anon_sym_as, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2216), 1, + anon_sym_DOT, + ACTIONS(2218), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(2226), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2176), 1, - anon_sym_await, - ACTIONS(2230), 1, - sym_identifier, - STATE(1017), 1, - sym_string, - STATE(1416), 1, - sym_list_splat_pattern, - STATE(1626), 1, - sym_primary_expression, + ACTIONS(2234), 1, + anon_sym_PIPE, + ACTIONS(2236), 1, + anon_sym_AMP, + ACTIONS(2238), 1, + anon_sym_CARET, + ACTIONS(2240), 1, + anon_sym_is, + STATE(1610), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(2174), 2, - anon_sym_match, - anon_sym_type, - STATE(1456), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(2220), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2222), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2232), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2172), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, + ACTIONS(2242), 2, + anon_sym_LT, + anon_sym_GT, + STATE(945), 2, + sym__not_in, + sym__is_not, + STATE(1171), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [64715] = 16, - ACTIONS(691), 1, + ACTIONS(2230), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2224), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2104), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [65595] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(715), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(721), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1004), 1, sym_string, - STATE(1052), 1, + STATE(1120), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(717), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(713), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81042,55 +81601,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64790] = 18, - ACTIONS(291), 1, + [65670] = 16, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2232), 1, - sym_identifier, - ACTIONS(2238), 1, + ACTIONS(650), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(1439), 1, + anon_sym_STAR, + STATE(1013), 1, sym_string, + STATE(1073), 1, + sym_primary_expression, STATE(1416), 1, sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2236), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - STATE(647), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81103,55 +81660,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64869] = 18, - ACTIONS(291), 1, + [65745] = 16, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2176), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(2240), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(1439), 1, + anon_sym_STAR, + STATE(1013), 1, sym_string, + STATE(1074), 1, + sym_primary_expression, STATE(1416), 1, sym_list_splat_pattern, - STATE(1627), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2244), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - STATE(1167), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2242), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81164,49 +81719,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64948] = 16, - ACTIONS(781), 1, + [65820] = 16, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(1329), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(1068), 1, + STATE(1013), 1, sym_string, - STATE(1148), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1436), 1, + STATE(1416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(787), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(785), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(644), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(779), 5, + ACTIONS(642), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1439), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81223,49 +81778,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65023] = 16, - ACTIONS(291), 1, + [65895] = 16, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(1013), 1, sym_string, - STATE(1044), 1, + STATE(1077), 1, sym_primary_expression, STATE(1416), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(379), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81282,55 +81837,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65098] = 18, - ACTIONS(291), 1, + [65970] = 16, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2238), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(2246), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(1439), 1, + anon_sym_STAR, + STATE(1013), 1, sym_string, + STATE(1078), 1, + sym_primary_expression, STATE(1416), 1, sym_list_splat_pattern, - STATE(1615), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2236), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - STATE(647), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2234), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81343,55 +81896,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65177] = 18, - ACTIONS(291), 1, + [66045] = 16, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR, - ACTIONS(2184), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(2248), 1, - sym_identifier, - STATE(1017), 1, + ACTIONS(1439), 1, + anon_sym_STAR, + STATE(1013), 1, sym_string, + STATE(1087), 1, + sym_primary_expression, STATE(1416), 1, sym_list_splat_pattern, - STATE(1628), 1, - sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2252), 2, + ACTIONS(644), 2, anon_sym_match, anon_sym_type, - STATE(1168), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2250), 3, + ACTIONS(642), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81404,49 +81955,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65256] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [66120] = 16, + ACTIONS(703), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(711), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(715), 1, + anon_sym_LBRACE, + ACTIONS(719), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(1317), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(1004), 1, sym_string, - STATE(1045), 1, + STATE(1127), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(709), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(717), 2, + sym_ellipsis, + sym_float, + ACTIONS(707), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(713), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(701), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1319), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81463,53 +82014,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65331] = 18, - ACTIONS(291), 1, + [66195] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2254), 1, - sym_identifier, - ACTIONS(2260), 1, + ACTIONS(2174), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2244), 1, + sym_identifier, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1623), 1, + STATE(1665), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2258), 2, + ACTIONS(2172), 2, anon_sym_match, anon_sym_type, - STATE(1483), 2, + STATE(1470), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2256), 3, + ACTIONS(2170), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81524,113 +82075,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65410] = 21, - ACTIONS(2114), 1, - anon_sym_as, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2280), 1, - anon_sym_PIPE, - ACTIONS(2282), 1, - anon_sym_AMP, - ACTIONS(2284), 1, - anon_sym_CARET, - ACTIONS(2286), 1, - anon_sym_is, - STATE(1568), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2266), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2268), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2278), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2288), 2, - anon_sym_LT, - anon_sym_GT, - STATE(950), 2, - sym__not_in, - sym__is_not, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2270), 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(2100), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [65495] = 16, - ACTIONS(291), 1, + [66274] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(966), 1, sym_string, - STATE(1046), 1, + STATE(983), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1137), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(623), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(621), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81647,53 +82134,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65570] = 16, - ACTIONS(291), 1, + [66349] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(1017), 1, + ACTIONS(2198), 1, + anon_sym_await, + ACTIONS(2246), 1, + sym_identifier, + STATE(1013), 1, sym_string, - STATE(1047), 1, - sym_primary_expression, STATE(1416), 1, sym_list_splat_pattern, + STATE(1634), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(2250), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, + STATE(1238), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2248), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81706,108 +82195,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65645] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [66428] = 16, + ACTIONS(747), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(755), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(759), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(765), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(1001), 1, sym_string, - STATE(1049), 1, + STATE(1128), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1284), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(753), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(761), 2, + sym_ellipsis, + sym_float, + ACTIONS(751), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1348), 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, - [65720] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1427), 1, - anon_sym_STAR, - STATE(1017), 1, - sym_string, - STATE(1050), 1, - sym_primary_expression, - STATE(1416), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(296), 3, + ACTIONS(757), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(745), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1410), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81824,49 +82254,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65795] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [66503] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(743), 1, + sym_string_start, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(985), 1, sym_string, - STATE(1051), 1, + STATE(1005), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(739), 2, + sym_ellipsis, + sym_float, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(735), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81883,49 +82313,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65870] = 16, - ACTIONS(291), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(648), 1, + [66578] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(1427), 1, + ACTIONS(743), 1, + sym_string_start, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1017), 1, + STATE(985), 1, sym_string, - STATE(1053), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1416), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(739), 2, + sym_ellipsis, + sym_float, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 5, + ACTIONS(735), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1348), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81942,113 +82372,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65945] = 21, - ACTIONS(2114), 1, - anon_sym_EQ, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, - ACTIONS(2308), 1, - anon_sym_PIPE, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2312), 1, - anon_sym_CARET, - ACTIONS(2314), 1, - anon_sym_is, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2294), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2316), 2, - anon_sym_LT, - anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2298), 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(2100), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [66030] = 16, - ACTIONS(735), 1, + [66653] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1036), 1, + STATE(991), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82065,49 +82431,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66105] = 16, - ACTIONS(691), 1, + [66728] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(967), 1, anon_sym_STAR, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1058), 1, + STATE(1028), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82124,49 +82490,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66180] = 16, - ACTIONS(691), 1, + [66803] = 16, + ACTIONS(657), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(665), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(669), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(673), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(675), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(967), 1, anon_sym_STAR, - STATE(993), 1, + STATE(977), 1, sym_string, - STATE(1059), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1239), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(663), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(671), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(661), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(667), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(655), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1196), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82183,49 +82549,113 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66255] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [66878] = 21, + ACTIONS(2118), 1, + anon_sym_EQ, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2274), 1, + anon_sym_CARET, + ACTIONS(2276), 1, + anon_sym_is, + STATE(1608), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2278), 2, + anon_sym_LT, + anon_sym_GT, + STATE(879), 2, + sym__not_in, + sym__is_not, + STATE(1204), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2260), 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(2104), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [66963] = 16, + ACTIONS(725), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_LBRACK, + ACTIONS(737), 1, + anon_sym_LBRACE, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(743), 1, + sym_string_start, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(961), 1, + STATE(985), 1, sym_string, - STATE(967), 1, + STATE(992), 1, sym_primary_expression, - STATE(1077), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(739), 2, + sym_ellipsis, + sym_float, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(735), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82242,49 +82672,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66330] = 16, - ACTIONS(691), 1, + [67038] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(993), 1, + STATE(985), 1, sym_string, - STATE(1060), 1, + STATE(994), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82301,49 +82731,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66405] = 16, - ACTIONS(735), 1, + [67113] = 16, + ACTIONS(725), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(733), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(737), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(741), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(743), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(973), 1, + STATE(985), 1, sym_string, - STATE(1025), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1148), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(731), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(739), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(729), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(735), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(723), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1157), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82360,53 +82790,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66480] = 16, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [67188] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(751), 1, - anon_sym_await, - ACTIONS(753), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(636), 1, + anon_sym_LPAREN, + ACTIONS(646), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(973), 1, + ACTIONS(2190), 1, + anon_sym_await, + ACTIONS(2280), 1, + sym_identifier, + STATE(1013), 1, sym_string, - STATE(1027), 1, - sym_primary_expression, - STATE(1231), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1654), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(2188), 2, + anon_sym_match, + anon_sym_type, + STATE(656), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(2186), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82419,49 +82851,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66555] = 16, - ACTIONS(735), 1, + [67267] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(617), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(625), 1, anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(629), 1, anon_sym_await, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(973), 1, + STATE(966), 1, sym_string, - STATE(988), 1, + STATE(986), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1137), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(623), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(621), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1076), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82478,53 +82910,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66630] = 18, - ACTIONS(291), 1, + [67342] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2178), 1, - sym_identifier, - ACTIONS(2184), 1, + ACTIONS(2144), 1, anon_sym_await, - STATE(1017), 1, + ACTIONS(2282), 1, + sym_identifier, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1628), 1, + STATE(1664), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2182), 2, + ACTIONS(2142), 2, anon_sym_match, anon_sym_type, - STATE(1145), 2, + STATE(1388), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2180), 3, + ACTIONS(2140), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82539,53 +82971,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66709] = 18, - ACTIONS(291), 1, + [67421] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2192), 1, + ACTIONS(2198), 1, anon_sym_await, - ACTIONS(2202), 1, + ACTIONS(2246), 1, sym_identifier, - STATE(1017), 1, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(1667), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2190), 2, + ACTIONS(2250), 2, anon_sym_match, anon_sym_type, - STATE(1349), 2, + STATE(1238), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2188), 3, + ACTIONS(2248), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82600,53 +83032,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66788] = 18, - ACTIONS(291), 1, + [67500] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(308), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1439), 1, anon_sym_STAR, - ACTIONS(2176), 1, - anon_sym_await, - ACTIONS(2230), 1, + ACTIONS(2138), 1, sym_identifier, - STATE(1017), 1, + ACTIONS(2144), 1, + anon_sym_await, + STATE(1013), 1, sym_string, STATE(1416), 1, sym_list_splat_pattern, - STATE(1627), 1, + STATE(1662), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(302), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, + ACTIONS(2142), 2, anon_sym_match, anon_sym_type, - STATE(1456), 2, + STATE(1388), 2, sym_attribute, sym_subscript, - ACTIONS(296), 3, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(2140), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 4, + ACTIONS(379), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1348), 14, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82661,53 +83093,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66867] = 16, - ACTIONS(67), 1, + [67579] = 18, + ACTIONS(368), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(383), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(1303), 1, + ACTIONS(1439), 1, anon_sym_STAR, - STATE(961), 1, + ACTIONS(2168), 1, + sym_identifier, + ACTIONS(2174), 1, + anon_sym_await, + STATE(1013), 1, sym_string, - STATE(985), 1, - sym_primary_expression, - STATE(1077), 1, + STATE(1416), 1, sym_list_splat_pattern, + STATE(1666), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(377), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(2172), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1470), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(2170), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(379), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1085), 16, + STATE(1345), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -82720,49 +83154,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66942] = 16, - ACTIONS(691), 1, + [67658] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1061), 1, + STATE(1245), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82779,49 +83213,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67017] = 16, - ACTIONS(691), 1, + [67733] = 18, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(2160), 1, + anon_sym_await, + ACTIONS(2284), 1, + sym_identifier, + STATE(1013), 1, + sym_string, + STATE(1416), 1, + sym_list_splat_pattern, + STATE(1661), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(2158), 2, + anon_sym_match, + anon_sym_type, + STATE(1114), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2156), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [67812] = 16, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1062), 1, + STATE(1246), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82838,49 +83333,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67092] = 16, - ACTIONS(691), 1, + [67887] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(709), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1315), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(993), 1, + STATE(1059), 1, sym_string, - STATE(1063), 1, + STATE(1247), 1, sym_primary_expression, - STATE(1384), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(705), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1367), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82897,49 +83392,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67167] = 16, - ACTIONS(735), 1, + [67962] = 16, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(777), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(781), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(787), 1, sym_string_start, - ACTIONS(1249), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(973), 1, + STATE(1059), 1, sym_string, - STATE(1005), 1, + STATE(1248), 1, sym_primary_expression, - STATE(1231), 1, + STATE(1510), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(775), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(783), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(773), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(779), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(767), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1206), 16, + STATE(1471), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82956,85 +83451,83 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67242] = 21, - ACTIONS(2114), 1, - anon_sym_as, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, + [68037] = 18, + ACTIONS(368), 1, + anon_sym_LBRACE, + ACTIONS(383), 1, + sym_string_start, + ACTIONS(636), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(646), 1, anon_sym_LBRACK, - ACTIONS(2336), 1, - anon_sym_PIPE, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, - ACTIONS(2342), 1, - anon_sym_is, - STATE(1579), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1439), 1, + anon_sym_STAR, + ACTIONS(2286), 1, + sym_identifier, + ACTIONS(2292), 1, + anon_sym_await, + STATE(1013), 1, + sym_string, + STATE(1416), 1, + sym_list_splat_pattern, + STATE(1662), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, + ACTIONS(377), 2, + sym_ellipsis, + sym_float, + ACTIONS(2290), 2, + anon_sym_match, + anon_sym_type, + STATE(1630), 2, + sym_attribute, + sym_subscript, + ACTIONS(373), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2344), 2, - anon_sym_LT, - anon_sym_GT, - STATE(864), 2, - sym__not_in, - sym__is_not, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2326), 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(2100), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, + anon_sym_TILDE, + ACTIONS(2288), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [67326] = 5, + anon_sym_exec, + ACTIONS(379), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1345), 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, + [68116] = 5, ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(965), 2, + STATE(969), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(2296), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 31, + ACTIONS(2294), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83066,22 +83559,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67378] = 5, + [68168] = 20, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2126), 1, + anon_sym_PIPE, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2130), 1, + anon_sym_AMP, + ACTIONS(2132), 1, + anon_sym_CARET, + ACTIONS(2134), 1, + anon_sym_is, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, + anon_sym_LBRACK, + STATE(1596), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2110), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2112), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2124), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2136), 2, + anon_sym_LT, + anon_sym_GT, + STATE(920), 2, + sym__not_in, + sym__is_not, + STATE(1090), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2122), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2114), 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(2104), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [68250] = 5, ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(960), 2, + STATE(964), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(1566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 31, + ACTIONS(1561), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -83113,187 +83668,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67430] = 21, - ACTIONS(2114), 1, - anon_sym_EQ, - ACTIONS(2124), 1, + [68302] = 21, + ACTIONS(2118), 1, + anon_sym_as, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2350), 1, + ACTIONS(2302), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2304), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2312), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2368), 1, + ACTIONS(2320), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2322), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2324), 1, anon_sym_CARET, - ACTIONS(2374), 1, + ACTIONS(2326), 1, anon_sym_is, - STATE(1566), 1, + STATE(1620), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2306), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2308), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2376), 2, + ACTIONS(2328), 2, anon_sym_LT, anon_sym_GT, - STATE(936), 2, + STATE(888), 2, sym__not_in, sym__is_not, - STATE(1405), 2, + STATE(1277), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2316), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2358), 6, + ACTIONS(2310), 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(2100), 7, + ACTIONS(2104), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [67514] = 20, - ACTIONS(2104), 1, + [68386] = 21, + ACTIONS(2118), 1, + anon_sym_as, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2340), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2342), 1, + anon_sym_LBRACK, + ACTIONS(2348), 1, anon_sym_PIPE, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2126), 1, + ACTIONS(2350), 1, anon_sym_AMP, - ACTIONS(2128), 1, + ACTIONS(2352), 1, anon_sym_CARET, - ACTIONS(2130), 1, + ACTIONS(2354), 1, anon_sym_is, - ACTIONS(2378), 1, - anon_sym_DOT, - ACTIONS(2380), 1, - anon_sym_LBRACK, - STATE(1553), 1, + STATE(1614), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2334), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2336), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2346), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2132), 2, + ACTIONS(2356), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(909), 2, sym__not_in, sym__is_not, - STATE(1101), 2, + STATE(1418), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2344), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2110), 6, + ACTIONS(2338), 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(2100), 8, + ACTIONS(2104), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [68470] = 5, + ACTIONS(2362), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(969), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2360), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2358), 31, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [67596] = 21, - ACTIONS(2114), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68522] = 21, + ACTIONS(2118), 1, anon_sym_EQ, - ACTIONS(2124), 1, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2382), 1, + ACTIONS(2365), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2367), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2375), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2383), 1, anon_sym_PIPE, - ACTIONS(2402), 1, + ACTIONS(2385), 1, anon_sym_AMP, - ACTIONS(2404), 1, + ACTIONS(2387), 1, anon_sym_CARET, - ACTIONS(2406), 1, + ACTIONS(2389), 1, anon_sym_is, - STATE(1564), 1, + STATE(1607), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, + ACTIONS(2371), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2398), 2, + ACTIONS(2381), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2408), 2, + ACTIONS(2391), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(903), 2, sym__not_in, sym__is_not, - STATE(1332), 2, + STATE(1328), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2379), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2390), 6, + ACTIONS(2373), 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(2100), 7, + ACTIONS(2104), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -83301,84 +83904,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [67680] = 5, - ACTIONS(2414), 1, - sym_string_start, + [68606] = 21, + ACTIONS(2118), 1, + anon_sym_EQ, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, + ACTIONS(2411), 1, + anon_sym_PIPE, + ACTIONS(2413), 1, + anon_sym_AMP, + ACTIONS(2415), 1, + anon_sym_CARET, + ACTIONS(2417), 1, + anon_sym_is, + STATE(1605), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(965), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(2397), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2410), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2399), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2419), 2, + anon_sym_LT, + anon_sym_GT, + STATE(932), 2, + sym__not_in, + sym__is_not, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2401), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67732] = 5, - ACTIONS(731), 1, + ACTIONS(2104), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [68690] = 5, + ACTIONS(675), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(971), 2, + STATE(973), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, - anon_sym_as, + ACTIONS(2296), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, + 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_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83394,40 +84012,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67783] = 8, - ACTIONS(2102), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, - ACTIONS(2116), 1, - anon_sym_LBRACK, + sym_type_conversion, + [68741] = 5, + ACTIONS(2421), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + STATE(973), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2360), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2358), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83443,29 +84058,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67840] = 5, - ACTIONS(684), 1, + sym_type_conversion, + [68792] = 5, + ACTIONS(2424), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, + STATE(974), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(2360), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 30, + ACTIONS(2358), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -83488,23 +84105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [67891] = 5, - ACTIONS(731), 1, + [68843] = 5, + ACTIONS(743), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(966), 2, + STATE(974), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(2296), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(2294), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83516,10 +84132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83535,93 +84151,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67942] = 15, - ACTIONS(2102), 1, + [68894] = 8, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, anon_sym_LBRACK, - ACTIONS(2122), 1, - anon_sym_PIPE, - ACTIONS(2126), 1, - anon_sym_AMP, - ACTIONS(2128), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2108), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2120), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1101), 2, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, + ACTIONS(2429), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 17, + ACTIONS(2427), 27, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68013] = 5, - ACTIONS(2425), 1, + [68951] = 5, + ACTIONS(675), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(971), 2, + STATE(972), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, - anon_sym_as, + ACTIONS(1566), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 30, + ACTIONS(1561), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83637,28 +84245,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68064] = 8, - ACTIONS(2102), 1, + sym_type_conversion, + [69002] = 8, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 2, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 27, + ACTIONS(2431), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83686,79 +84295,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68121] = 5, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(980), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1555), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68172] = 10, - ACTIONS(2102), 1, + [69059] = 11, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1101), 2, + ACTIONS(2124), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2122), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 24, + ACTIONS(2431), 22, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83768,9 +84334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83783,43 +84347,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68233] = 14, - ACTIONS(2102), 1, + [69122] = 15, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, anon_sym_LBRACK, ACTIONS(2126), 1, + anon_sym_PIPE, + ACTIONS(2130), 1, anon_sym_AMP, - ACTIONS(2128), 1, + ACTIONS(2132), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2112), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2124), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1101), 2, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2122), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2437), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2435), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83828,7 +84394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -83838,89 +84403,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68302] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2428), 1, + [69193] = 8, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2430), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2116), 1, anon_sym_STAR_STAR, - ACTIONS(2440), 1, + ACTIONS(2120), 1, anon_sym_LBRACK, - ACTIONS(2446), 1, - anon_sym_PIPE, - ACTIONS(2448), 1, - anon_sym_AMP, - ACTIONS(2450), 1, - anon_sym_CARET, - ACTIONS(2452), 1, - anon_sym_is, - STATE(1572), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2432), 2, + STATE(1090), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2434), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2454), 2, anon_sym_LT, anon_sym_GT, - STATE(886), 2, - sym__not_in, - sym__is_not, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2436), 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(2100), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [68383] = 8, - ACTIONS(2102), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, - ACTIONS(2116), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1101), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2456), 27, + ACTIONS(2431), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83948,43 +84452,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68440] = 5, - ACTIONS(2460), 1, - sym_string_start, + [69250] = 10, + ACTIONS(2106), 1, + anon_sym_DOT, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, - anon_sym_as, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1090), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2122), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -83994,41 +84503,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68491] = 13, - ACTIONS(2102), 1, + [69311] = 14, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, anon_sym_LBRACK, - ACTIONS(2128), 1, + ACTIONS(2130), 1, + anon_sym_AMP, + ACTIONS(2132), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2112), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2124), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1101), 2, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2122), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 19, + ACTIONS(2431), 18, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84041,128 +84552,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68558] = 5, - ACTIONS(753), 1, - sym_string_start, + [69380] = 13, + ACTIONS(2106), 1, + anon_sym_DOT, + ACTIONS(2108), 1, + anon_sym_LPAREN, + ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, + anon_sym_LBRACK, + ACTIONS(2132), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, - anon_sym_as, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2346), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2112), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2124), 2, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1090), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2122), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68609] = 5, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(968), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, - anon_sym_STAR, + ACTIONS(2433), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68660] = 5, - ACTIONS(2463), 1, + [69447] = 5, + ACTIONS(743), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(982), 2, + STATE(975), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(1566), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 30, + ACTIONS(1561), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84185,40 +84658,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68711] = 12, - ACTIONS(2102), 1, + [69498] = 12, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2110), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2108), 2, + ACTIONS(2112), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2120), 2, + ACTIONS(2124), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1101), 2, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, + ACTIONS(2122), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, + ACTIONS(2431), 20, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84239,85 +84711,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68776] = 8, - ACTIONS(2102), 1, + [69563] = 20, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, + ACTIONS(2449), 1, anon_sym_STAR_STAR, - ACTIONS(2116), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, + ACTIONS(2457), 1, + anon_sym_PIPE, + ACTIONS(2459), 1, + anon_sym_AMP, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_is, + STATE(1612), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1101), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(2443), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2466), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2445), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2455), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2465), 2, + anon_sym_LT, + anon_sym_GT, + STATE(961), 2, + sym__not_in, + sym__is_not, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2447), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68833] = 11, - ACTIONS(2102), 1, + ACTIONS(2104), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [69644] = 8, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2108), 1, anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_STAR_STAR, ACTIONS(2116), 1, + anon_sym_STAR_STAR, + ACTIONS(2120), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2120), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1101), 2, + STATE(1090), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2118), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2469), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, + ACTIONS(2467), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -84327,10 +84803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84340,74 +84821,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68896] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, + [69701] = 20, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2302), 1, + anon_sym_DOT, + ACTIONS(2314), 1, anon_sym_LBRACK, - STATE(2094), 1, - sym_type_parameter, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2457), 1, + anon_sym_PIPE, + ACTIONS(2459), 1, + anon_sym_AMP, + ACTIONS(2461), 1, + anon_sym_CARET, + ACTIONS(2463), 1, + anon_sym_is, + STATE(1612), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, - anon_sym_as, + ACTIONS(2443), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(2445), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2455), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2465), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(961), 2, + sym__not_in, + sym__is_not, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2104), 6, 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_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2447), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68948] = 8, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + [69781] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(1620), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 26, + ACTIONS(1618), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84415,10 +84902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84434,45 +84923,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69004] = 15, - ACTIONS(2262), 1, + sym_type_conversion, + [69827] = 15, + ACTIONS(2216), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2218), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2226), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2228), 1, anon_sym_LBRACK, - ACTIONS(2280), 1, + ACTIONS(2234), 1, anon_sym_PIPE, - ACTIONS(2282), 1, + ACTIONS(2236), 1, anon_sym_AMP, - ACTIONS(2284), 1, + ACTIONS(2238), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2220), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2268), 2, + ACTIONS(2222), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2278), 2, + ACTIONS(2232), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1232), 2, + STATE(1171), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, + ACTIONS(2230), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, + ACTIONS(2437), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 16, + ACTIONS(2435), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -84489,33 +84979,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69074] = 10, - ACTIONS(2262), 1, + [69897] = 8, + ACTIONS(2216), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2218), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2226), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2228), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1232), 2, + STATE(1171), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 23, + ACTIONS(2431), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84523,6 +85008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -84530,6 +85016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84539,33 +85027,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69134] = 3, + [69953] = 5, + ACTIONS(383), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, - anon_sym_as, + STATE(1011), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2296), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(2294), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84581,143 +85072,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69180] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2318), 1, + [70003] = 10, + ACTIONS(2216), 1, anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, + ACTIONS(2218), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2226), 1, anon_sym_STAR_STAR, - ACTIONS(2400), 1, - anon_sym_PIPE, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_CARET, - ACTIONS(2406), 1, - anon_sym_is, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2228), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2220), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2408), 2, - anon_sym_LT, - anon_sym_GT, - STATE(947), 2, - sym__not_in, - sym__is_not, - STATE(1332), 2, + STATE(1171), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2230), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2100), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2433), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 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_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2390), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69260] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2134), 1, + [70063] = 8, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2146), 1, - anon_sym_LBRACK, - ACTIONS(2430), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2446), 1, - anon_sym_PIPE, - ACTIONS(2448), 1, - anon_sym_AMP, - ACTIONS(2450), 1, - anon_sym_CARET, - ACTIONS(2452), 1, - anon_sym_is, - STATE(1572), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2264), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2432), 2, + STATE(1204), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2429), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2434), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2454), 2, anon_sym_LT, anon_sym_GT, - STATE(886), 2, - sym__not_in, - sym__is_not, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2100), 6, + ACTIONS(2427), 26, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2436), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69340] = 5, - ACTIONS(709), 1, + sym_type_conversion, + [70119] = 5, + ACTIONS(721), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1009), 2, + STATE(999), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + ACTIONS(2296), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2294), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84747,137 +85215,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69390] = 15, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, - ACTIONS(2152), 1, - anon_sym_PIPE, - ACTIONS(2154), 1, - anon_sym_AMP, - ACTIONS(2156), 1, - anon_sym_CARET, + [70169] = 5, + ACTIONS(765), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2296), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 16, + ACTIONS(2294), 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_LBRACK, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69460] = 13, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, - ACTIONS(2312), 1, - anon_sym_CARET, + [70219] = 5, + ACTIONS(699), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + STATE(1003), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1566), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(1561), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69526] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [70269] = 5, + ACTIONS(2471), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + STATE(999), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2360), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2358), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -84899,28 +85350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69574] = 5, - ACTIONS(777), 1, - sym_string_start, + [70319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1041), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(1638), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, + ACTIONS(1636), 31, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -84929,6 +85376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84944,88 +85392,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69624] = 12, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, + sym_type_conversion, + [70365] = 5, + ACTIONS(765), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + STATE(997), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1566), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 19, + ACTIONS(1561), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69688] = 8, - ACTIONS(2134), 1, + [70415] = 20, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2330), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2342), 1, + anon_sym_LBRACK, + ACTIONS(2367), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2375), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + ACTIONS(2383), 1, + anon_sym_PIPE, + ACTIONS(2385), 1, + anon_sym_AMP, + ACTIONS(2387), 1, + anon_sym_CARET, + ACTIONS(2389), 1, + anon_sym_is, + STATE(1607), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1186), 2, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2381), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2391), 2, + anon_sym_LT, + anon_sym_GT, + STATE(903), 2, + sym__not_in, + sym__is_not, + STATE(1328), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2379), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2104), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2373), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70495] = 5, + ACTIONS(699), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1008), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2296), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2294), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85044,36 +85543,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69744] = 8, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + [70545] = 5, + ACTIONS(721), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_as, + STATE(996), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1566), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(1561), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85092,41 +85588,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69800] = 13, - ACTIONS(2262), 1, + [70595] = 13, + ACTIONS(2216), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2218), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2226), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2228), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2238), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2220), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2268), 2, + ACTIONS(2222), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2278), 2, + ACTIONS(2232), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1232), 2, + STATE(1171), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, + ACTIONS(2230), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2431), 18, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -85145,38 +85641,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69866] = 8, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, + [70661] = 5, + ACTIONS(2474), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + STATE(1006), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2360), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 26, + ACTIONS(2358), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85192,141 +85686,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69922] = 12, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, + [70711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2268), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2278), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 19, + ACTIONS(2477), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69986] = 20, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2308), 1, - anon_sym_PIPE, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2312), 1, - anon_sym_CARET, - ACTIONS(2314), 1, - anon_sym_is, - STATE(1567), 1, - aux_sym_comparison_operator_repeat1, + [70757] = 5, + ACTIONS(2481), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + STATE(1008), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2360), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2316), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, - sym__not_in, - sym__is_not, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2100), 6, + ACTIONS(2358), 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_RBRACE, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2298), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70066] = 8, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2264), 1, - anon_sym_LPAREN, - ACTIONS(2272), 1, - anon_sym_STAR_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK, + [70807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(1665), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(1663), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85334,6 +85795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85353,47 +85816,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70122] = 10, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + sym_type_conversion, + [70853] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, + ACTIONS(1566), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 23, + ACTIONS(1561), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85403,28 +85861,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70182] = 3, + [70901] = 5, + ACTIONS(2484), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + STATE(1011), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2360), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(2358), 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_LBRACK, @@ -85446,18 +85906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70228] = 3, + [70951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 6, + ACTIONS(1665), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, + ACTIONS(1663), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85489,30 +85949,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70274] = 5, - ACTIONS(709), 1, + [70997] = 5, + ACTIONS(383), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1033), 2, + STATE(993), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(1566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85534,88 +85994,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70324] = 11, - ACTIONS(2134), 1, + [71047] = 20, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2216), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2228), 1, + anon_sym_LBRACK, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2274), 1, + anon_sym_CARET, + ACTIONS(2276), 1, + anon_sym_is, + STATE(1608), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2150), 2, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1186), 2, + ACTIONS(2278), 2, + anon_sym_LT, + anon_sym_GT, + STATE(879), 2, + sym__not_in, + sym__is_not, + STATE(1204), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2148), 3, + ACTIONS(2266), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 21, + ACTIONS(2104), 6, 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_RBRACK, - anon_sym_PIPE, - anon_sym_not, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(2260), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70386] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, - anon_sym_LBRACK, - STATE(2092), 1, - sym_type_parameter, + [71127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1620), 6, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(1618), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85631,78 +86096,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70438] = 5, - ACTIONS(777), 1, - sym_string_start, + sym_type_conversion, + [71173] = 14, + ACTIONS(2216), 1, + anon_sym_DOT, + ACTIONS(2218), 1, + anon_sym_LPAREN, + ACTIONS(2226), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_LBRACK, + ACTIONS(2236), 1, + anon_sym_AMP, + ACTIONS(2238), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(997), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2220), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2222), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2232), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1171), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2230), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2431), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70488] = 3, + [71241] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 6, - anon_sym_as, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(311), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85718,21 +86195,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70534] = 3, + [71289] = 8, + ACTIONS(2216), 1, + anon_sym_DOT, + ACTIONS(2218), 1, + anon_sym_LPAREN, + ACTIONS(2226), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 6, + STATE(1171), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2429), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2427), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85740,8 +86224,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85761,19 +86243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70580] = 3, + [71345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 6, + ACTIONS(1616), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 31, + ACTIONS(1614), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85805,34 +86286,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70626] = 8, - ACTIONS(2262), 1, + [71391] = 8, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, + STATE(1204), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2468), 5, - anon_sym_as, + ACTIONS(2433), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 26, + ACTIONS(2431), 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_AT, anon_sym_DASH, @@ -85853,36 +86333,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70682] = 5, - ACTIONS(308), 1, - sym_string_start, + sym_type_conversion, + [71447] = 8, + ACTIONS(2216), 1, + anon_sym_DOT, + ACTIONS(2218), 1, + anon_sym_LPAREN, + ACTIONS(2226), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1019), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 5, + STATE(1171), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2469), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2467), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85898,41 +86382,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70732] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [71503] = 11, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2256), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1204), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85942,30 +86432,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70780] = 5, - ACTIONS(308), 1, - sym_string_start, + sym_type_conversion, + [71565] = 15, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, + ACTIONS(2270), 1, + anon_sym_PIPE, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2274), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1026), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 5, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1204), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2437), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2435), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [71635] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, + ACTIONS(2487), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85987,90 +86531,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70830] = 14, - ACTIONS(2134), 1, + [71681] = 8, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, - ACTIONS(2154), 1, - anon_sym_AMP, - ACTIONS(2156), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, + STATE(1204), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, + ACTIONS(2433), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2431), 26, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70898] = 8, - ACTIONS(2262), 1, + sym_type_conversion, + [71737] = 10, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, - anon_sym_as, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1204), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 26, + ACTIONS(2431), 23, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -86078,8 +86619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86089,47 +86628,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70954] = 8, - ACTIONS(2290), 1, + sym_type_conversion, + [71797] = 14, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_AMP, + ACTIONS(2274), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1204), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_STAR, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2431), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [71865] = 13, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + ACTIONS(2262), 1, + anon_sym_STAR_STAR, + ACTIONS(2264), 1, + anon_sym_LBRACK, + ACTIONS(2274), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1204), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2266), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -86137,33 +86736,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71010] = 3, + [71931] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 6, - anon_sym_as, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, + ACTIONS(311), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86179,48 +86780,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71056] = 8, - ACTIONS(2290), 1, + [71979] = 12, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2258), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2268), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1204), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2458), 5, - anon_sym_STAR, + ACTIONS(2266), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 26, + ACTIONS(2431), 19, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -86228,28 +86832,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71112] = 8, - ACTIONS(2262), 1, + [72043] = 8, + ACTIONS(2216), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2218), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2226), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2228), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1232), 2, + STATE(1171), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2433), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2431), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -86276,42 +86880,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71168] = 5, - ACTIONS(2476), 1, - sym_string_start, + [72099] = 11, + ACTIONS(2216), 1, + anon_sym_DOT, + ACTIONS(2218), 1, + anon_sym_LPAREN, + ACTIONS(2226), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1026), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(2220), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2232), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1171), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2230), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 21, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86321,48 +86931,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71218] = 11, - ACTIONS(2262), 1, + [72161] = 8, + ACTIONS(2252), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2262), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2264), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2278), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1232), 2, + STATE(1204), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, + ACTIONS(2469), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 21, + ACTIONS(2467), 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_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86372,18 +86978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71280] = 3, + sym_type_conversion, + [72217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + ACTIONS(1653), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(1651), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86415,20 +87022,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71326] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [72263] = 12, + ACTIONS(2216), 1, + anon_sym_DOT, + ACTIONS(2218), 1, + anon_sym_LPAREN, + ACTIONS(2226), 1, + anon_sym_STAR_STAR, + ACTIONS(2228), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2220), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2222), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2232), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1171), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2230), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 19, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [72327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(1663), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -86438,6 +87094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86459,36 +87116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71374] = 8, - ACTIONS(2134), 1, + [72372] = 8, + ACTIONS(2330), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2340), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2342), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1186), 2, + STATE(1418), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(2429), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 26, + ACTIONS(2427), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86507,19 +87163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71430] = 3, + [72427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 32, + ACTIONS(2491), 31, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -86550,47 +87205,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71476] = 11, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, + [72472] = 6, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + ACTIONS(2495), 1, anon_sym_LBRACK, + STATE(1969), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(1566), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 21, + ACTIONS(1561), 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_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86600,26 +87250,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71538] = 5, - ACTIONS(2483), 1, - sym_string_start, + [72523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1033), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, + ACTIONS(2497), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -86646,196 +87292,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71588] = 13, - ACTIONS(2134), 1, + [72568] = 8, + ACTIONS(2330), 1, anon_sym_DOT, - ACTIONS(2136), 1, + ACTIONS(2332), 1, anon_sym_LPAREN, - ACTIONS(2144), 1, + ACTIONS(2340), 1, anon_sym_STAR_STAR, - ACTIONS(2146), 1, + ACTIONS(2342), 1, anon_sym_LBRACK, - ACTIONS(2156), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, + STATE(1418), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2469), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2467), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71654] = 15, - ACTIONS(2290), 1, + [72623] = 8, + ACTIONS(2302), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2304), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2312), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2308), 1, - anon_sym_PIPE, - ACTIONS(2310), 1, - anon_sym_AMP, - ACTIONS(2312), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2296), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2306), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1280), 2, + STATE(1277), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_EQ, + ACTIONS(2433), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 16, + ACTIONS(2431), 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_RBRACE, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71724] = 14, - ACTIONS(2262), 1, + [72678] = 11, + ACTIONS(2302), 1, anon_sym_DOT, - ACTIONS(2264), 1, + ACTIONS(2304), 1, anon_sym_LPAREN, - ACTIONS(2272), 1, + ACTIONS(2312), 1, anon_sym_STAR_STAR, - ACTIONS(2274), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_AMP, - ACTIONS(2284), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2266), 2, + ACTIONS(2306), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2268), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2278), 2, + ACTIONS(2318), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1232), 2, + STATE(1277), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2276), 3, + ACTIONS(2316), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2431), 20, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71792] = 8, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, + [72739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2479), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 26, + ACTIONS(2477), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86856,46 +87478,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [71848] = 10, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_LPAREN, - ACTIONS(2300), 1, - anon_sym_STAR_STAR, - ACTIONS(2302), 1, - anon_sym_LBRACK, + [72784] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(687), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1280), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2304), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 23, + ACTIONS(311), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86905,103 +87522,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71908] = 12, - ACTIONS(2134), 1, - anon_sym_DOT, - ACTIONS(2136), 1, - anon_sym_LPAREN, - ACTIONS(2144), 1, - anon_sym_STAR_STAR, - ACTIONS(2146), 1, - anon_sym_LBRACK, + [72833] = 5, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 2, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2140), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2150), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1186), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2148), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 19, - anon_sym_COMMA, + ACTIONS(311), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71972] = 14, - ACTIONS(2290), 1, + sym_type_conversion, + [72882] = 15, + ACTIONS(2302), 1, anon_sym_DOT, - ACTIONS(2292), 1, + ACTIONS(2304), 1, anon_sym_LPAREN, - ACTIONS(2300), 1, + ACTIONS(2312), 1, anon_sym_STAR_STAR, - ACTIONS(2302), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2310), 1, + ACTIONS(2320), 1, + anon_sym_PIPE, + ACTIONS(2322), 1, anon_sym_AMP, - ACTIONS(2312), 1, + ACTIONS(2324), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2294), 2, + ACTIONS(2306), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2296), 2, + ACTIONS(2308), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2306), 2, + ACTIONS(2318), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1280), 2, + STATE(1277), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2304), 3, + ACTIONS(2316), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, + ACTIONS(2437), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2435), 15, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -87011,34 +87620,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72040] = 5, - ACTIONS(2486), 1, - sym_string_start, + [72951] = 8, + ACTIONS(2302), 1, + anon_sym_DOT, + ACTIONS(2304), 1, + anon_sym_LPAREN, + ACTIONS(2312), 1, + anon_sym_STAR_STAR, + ACTIONS(2314), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1041), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 5, + STATE(1277), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2431), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87057,42 +87667,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72090] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [73006] = 10, + ACTIONS(2302), 1, + anon_sym_DOT, + ACTIONS(2304), 1, + anon_sym_LPAREN, + ACTIONS(2312), 1, + anon_sym_STAR_STAR, + ACTIONS(2314), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2306), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1277), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2316), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 22, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87102,77 +87716,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72141] = 3, + [73065] = 14, + ACTIONS(2302), 1, + anon_sym_DOT, + ACTIONS(2304), 1, + anon_sym_LPAREN, + ACTIONS(2312), 1, + anon_sym_STAR_STAR, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2322), 1, + anon_sym_AMP, + ACTIONS(2324), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2306), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2308), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2318), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1277), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2316), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72186] = 8, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [73132] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(1616), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(1614), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87191,47 +87811,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72241] = 11, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [73177] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(687), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, + ACTIONS(311), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87241,89 +87855,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72302] = 15, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, + [73226] = 5, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + ACTIONS(2501), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(1566), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 15, + ACTIONS(1561), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72371] = 8, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [73275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(2505), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2503), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87342,19 +87941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72426] = 3, + [73320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(2509), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 31, - sym_string_start, + ACTIONS(2507), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87367,7 +87968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87383,47 +87983,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72471] = 10, - ACTIONS(2350), 1, + [73365] = 8, + ACTIONS(2302), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2304), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2312), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1405), 2, + STATE(1277), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, + ACTIONS(2469), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, + ACTIONS(2467), 25, 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_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87433,140 +88030,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72530] = 14, - ACTIONS(2350), 1, + [73420] = 8, + ACTIONS(2393), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2405), 1, anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 16, + ACTIONS(2431), 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_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72597] = 13, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2372), 1, - anon_sym_CARET, + [73475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2513), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2511), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72662] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + [73520] = 5, + ACTIONS(787), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + STATE(1131), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1566), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 25, - anon_sym_RPAREN, + ACTIONS(1561), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87585,86 +88163,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72717] = 12, - ACTIONS(2350), 1, + [73569] = 8, + ACTIONS(2365), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2367), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2375), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2356), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1405), 2, + STATE(1328), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2429), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2427), 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_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72780] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + [73624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, - anon_sym_RPAREN, + ACTIONS(2515), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87683,33 +88252,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72835] = 3, + [73669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2477), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87725,17 +88294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72880] = 3, + [73714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(313), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 31, + ACTIONS(311), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87767,19 +88336,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72925] = 3, + [73759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2521), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 31, - sym_string_start, + ACTIONS(2519), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87792,7 +88363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87808,39 +88378,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72970] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + [73804] = 5, + ACTIONS(1563), 1, + anon_sym_COMMA, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(1566), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1561), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87856,142 +88421,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73025] = 11, - ACTIONS(2382), 1, + sym_type_conversion, + [73853] = 13, + ACTIONS(2302), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2304), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2312), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, + ACTIONS(2324), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2306), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2398), 2, + ACTIONS(2308), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2318), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1332), 2, + STATE(1277), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2316), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_EQ, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, - anon_sym_RPAREN, + ACTIONS(2431), 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_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73086] = 15, - ACTIONS(2382), 1, + [73918] = 12, + ACTIONS(2302), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2304), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2312), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_PIPE, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2306), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, + ACTIONS(2308), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2398), 2, + ACTIONS(2318), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1332), 2, + STATE(1277), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2316), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_EQ, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2421), 15, - anon_sym_RPAREN, + ACTIONS(2431), 18, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73155] = 8, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + [73981] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, + ACTIONS(311), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88007,46 +88567,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73210] = 10, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, + sym_type_conversion, + [74028] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(1676), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2396), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(1671), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88056,149 +88610,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73269] = 14, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2384), 1, - anon_sym_LPAREN, - ACTIONS(2392), 1, - anon_sym_STAR_STAR, - ACTIONS(2394), 1, - anon_sym_LBRACK, - ACTIONS(2402), 1, - anon_sym_AMP, - ACTIONS(2404), 1, - anon_sym_CARET, + [74073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(1645), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1332), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2396), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 16, - anon_sym_RPAREN, + ACTIONS(1640), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73336] = 13, - ACTIONS(2382), 1, + [74118] = 8, + ACTIONS(2365), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2367), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2375), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, - ACTIONS(2404), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1332), 2, + STATE(1328), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2469), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, + ACTIONS(2467), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73401] = 12, - ACTIONS(2382), 1, + [74173] = 11, + ACTIONS(2393), 1, anon_sym_DOT, - ACTIONS(2384), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2392), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2394), 1, + ACTIONS(2405), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2386), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2398), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1332), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2396), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, - anon_sym_RPAREN, + ACTIONS(2431), 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_PIPE, anon_sym_not, @@ -88206,78 +88742,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73464] = 3, + [74234] = 15, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, + ACTIONS(2411), 1, + anon_sym_PIPE, + ACTIONS(2413), 1, + anon_sym_AMP, + ACTIONS(2415), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2397), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2399), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2409), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2437), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2435), 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_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73509] = 3, + [74303] = 8, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88296,41 +88850,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73554] = 5, - ACTIONS(799), 1, - sym_string_start, + [74358] = 10, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1079), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1560), 4, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88340,17 +88899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73603] = 3, + [74417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(1566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 31, + ACTIONS(1561), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88382,119 +88941,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73648] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [74462] = 14, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, + ACTIONS(2413), 1, + anon_sym_AMP, + ACTIONS(2415), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2397), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2399), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2409), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73695] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [74529] = 13, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, + ACTIONS(2415), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2397), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2399), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2409), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73742] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [74594] = 8, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88510,40 +89093,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73789] = 3, + [74649] = 11, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2334), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2344), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 20, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88553,59 +89143,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73834] = 3, + [74710] = 15, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, + ACTIONS(2348), 1, + anon_sym_PIPE, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2334), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2336), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2344), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2437), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2435), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73879] = 3, + [74779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(2525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 31, + ACTIONS(2523), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -88637,30 +89239,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73924] = 3, + [74824] = 8, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88679,39 +89286,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73969] = 3, + [74879] = 10, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2334), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2344), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 22, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88721,283 +89335,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74014] = 5, - ACTIONS(1557), 1, - anon_sym_COMMA, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [74938] = 14, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, + ACTIONS(2350), 1, + anon_sym_AMP, + ACTIONS(2352), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2334), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2336), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2344), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(2431), 16, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74063] = 5, - ACTIONS(799), 1, - sym_string_start, + [75005] = 13, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, + ACTIONS(2352), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1080), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2348), 4, + ACTIONS(2334), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2336), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2346), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2344), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2346), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 17, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74112] = 5, - ACTIONS(2501), 1, - sym_string_start, + [75070] = 12, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1080), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2412), 4, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2399), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2409), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2410), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74161] = 5, + [75133] = 12, + ACTIONS(2330), 1, + anon_sym_DOT, + ACTIONS(2332), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_STAR_STAR, + ACTIONS(2342), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2334), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2336), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74210] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(2504), 1, - anon_sym_LBRACK, - STATE(1959), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(2346), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + STATE(1418), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2344), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74261] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2504), 1, - anon_sym_LBRACK, - STATE(1960), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1560), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2433), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 18, 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_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74312] = 3, + [75196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 31, + ACTIONS(2527), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89029,17 +89584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74357] = 3, + [75241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 31, + ACTIONS(2531), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89071,35 +89626,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74402] = 5, - ACTIONS(1562), 1, + [75286] = 6, + ACTIONS(328), 1, anon_sym_COLON_EQ, - ACTIONS(2510), 1, - anon_sym_EQ, + ACTIONS(638), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(631), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(633), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(652), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89115,33 +89671,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74451] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [75337] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2537), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2535), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89160,35 +89713,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74502] = 5, - ACTIONS(272), 1, + [75382] = 6, + ACTIONS(1568), 1, anon_sym_COLON_EQ, - ACTIONS(765), 1, - anon_sym_EQ, + ACTIONS(1632), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1622), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1629), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1626), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89204,17 +89758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74551] = 3, + [75433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(2541), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 31, + ACTIONS(2539), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89246,33 +89800,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74596] = 3, + [75478] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(311), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89288,36 +89842,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74641] = 6, - ACTIONS(272), 1, + sym_type_conversion, + [75525] = 4, + ACTIONS(1568), 1, anon_sym_COLON_EQ, - ACTIONS(2512), 1, - anon_sym_LBRACK, - STATE(1911), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1566), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89333,36 +89885,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74692] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2512), 1, - anon_sym_LBRACK, - STATE(1913), 1, - sym_type_parameter, + sym_type_conversion, + [75572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2489), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(2487), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89378,17 +89928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74743] = 3, + [75617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2545), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 31, + ACTIONS(2543), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89420,101 +89970,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74788] = 3, + [75662] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(652), 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_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [74833] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2524), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2522), 31, + ACTIONS(631), 17, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74878] = 3, + [75711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2549), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 31, + ACTIONS(2547), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89546,17 +90056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74923] = 3, + [75756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(313), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 31, + ACTIONS(311), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89588,124 +90098,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74968] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(765), 1, - anon_sym_EQ, + [75801] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75017] = 8, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2466), 25, - anon_sym_RPAREN, + ACTIONS(631), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75072] = 3, + [75850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, - anon_sym_as, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 31, + ACTIONS(2487), 31, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89721,33 +90183,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75117] = 3, + sym_type_conversion, + [75895] = 5, + ACTIONS(318), 1, + anon_sym_COMMA, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(311), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89763,17 +90227,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75162] = 3, + sym_type_conversion, + [75944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 31, + ACTIONS(2527), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89805,38 +90270,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75207] = 8, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + [75989] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 5, + ACTIONS(313), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_RPAREN, + ACTIONS(311), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89852,17 +90313,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75262] = 3, + [76036] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2553), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, + ACTIONS(2551), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89894,138 +90355,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75307] = 11, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + [76081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2557), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 20, - anon_sym_RPAREN, + ACTIONS(2555), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75368] = 15, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 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, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2322), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2423), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2421), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75437] = 8, - ACTIONS(2318), 1, + [76126] = 8, + ACTIONS(2365), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2367), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2375), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1383), 2, + STATE(1328), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2419), 5, - anon_sym_as, + ACTIONS(2433), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2431), 25, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -90045,30 +90444,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75492] = 3, + [76181] = 6, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(2559), 1, + anon_sym_LBRACK, + STATE(1931), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, + ACTIONS(311), 27, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90087,33 +90489,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75537] = 3, + [76232] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(313), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(311), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90129,40 +90532,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75582] = 5, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [76279] = 11, + ACTIONS(2365), 1, + anon_sym_DOT, + ACTIONS(2367), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_STAR_STAR, + ACTIONS(2377), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2369), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2381), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1328), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2379), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 20, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90172,81 +90582,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75631] = 5, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(257), 28, + [76340] = 15, + ACTIONS(2365), 1, anon_sym_DOT, + ACTIONS(2367), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(2375), 1, anon_sym_STAR_STAR, + ACTIONS(2377), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2383), 1, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2385), 1, anon_sym_AMP, + ACTIONS(2387), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [75680] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2371), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2381), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1328), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2379), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2437), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2435), 15, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -90261,18 +90636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75729] = 5, + [76409] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1629), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, + ACTIONS(1632), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -90287,7 +90662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 17, + ACTIONS(1622), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -90305,34 +90680,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75778] = 4, - ACTIONS(272), 1, + [76458] = 6, + ACTIONS(1568), 1, anon_sym_COLON_EQ, + ACTIONS(2559), 1, + anon_sym_LBRACK, + STATE(2025), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_as, + ACTIONS(1566), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1561), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90348,30 +90725,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75825] = 3, + [76509] = 8, + ACTIONS(2365), 1, + anon_sym_DOT, + ACTIONS(2367), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_STAR_STAR, + ACTIONS(2377), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, - anon_sym_as, + STATE(1328), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90390,39 +90772,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75870] = 3, + [76564] = 10, + ACTIONS(2365), 1, + anon_sym_DOT, + ACTIONS(2367), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_STAR_STAR, + ACTIONS(2377), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2369), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1328), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2379), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2431), 22, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90432,77 +90821,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75915] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [76623] = 14, + ACTIONS(2365), 1, + anon_sym_DOT, + ACTIONS(2367), 1, + anon_sym_LPAREN, + ACTIONS(2375), 1, + anon_sym_STAR_STAR, + ACTIONS(2377), 1, + anon_sym_LBRACK, + ACTIONS(2385), 1, + anon_sym_AMP, + ACTIONS(2387), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_as, + ACTIONS(2369), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2381), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1328), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2379), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 16, + anon_sym_RPAREN, 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_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75962] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [76690] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, - anon_sym_as, + ACTIONS(2563), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2561), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90518,46 +90916,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76009] = 10, - ACTIONS(2318), 1, + [76735] = 13, + ACTIONS(2365), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2367), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2375), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, + ACTIONS(2387), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1383), 2, + ACTIONS(2371), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2381), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1328), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2332), 3, + ACTIONS(2379), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, + ACTIONS(2433), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2431), 17, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [76800] = 6, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(2495), 1, + anon_sym_LBRACK, + STATE(1957), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 22, + ACTIONS(311), 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_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90567,17 +91013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76068] = 3, + [76851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 31, + ACTIONS(2565), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90609,88 +91055,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76113] = 14, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2338), 1, - anon_sym_AMP, - ACTIONS(2340), 1, - anon_sym_CARET, + [76896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2571), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 16, - anon_sym_RPAREN, + ACTIONS(2569), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76180] = 8, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [76941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 5, + ACTIONS(1653), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 25, + ACTIONS(1651), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90709,87 +91139,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76235] = 13, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2340), 1, - anon_sym_CARET, + [76986] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2537), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2324), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2334), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2332), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 17, - anon_sym_RPAREN, + ACTIONS(2535), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76300] = 8, - ACTIONS(2350), 1, - anon_sym_DOT, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, + [77031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, + ACTIONS(1638), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, + ACTIONS(1636), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90808,44 +91223,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76355] = 12, - ACTIONS(2318), 1, + [77076] = 12, + ACTIONS(2365), 1, anon_sym_DOT, - ACTIONS(2320), 1, + ACTIONS(2367), 1, anon_sym_LPAREN, - ACTIONS(2328), 1, + ACTIONS(2375), 1, anon_sym_STAR_STAR, - ACTIONS(2330), 1, + ACTIONS(2377), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2324), 2, + ACTIONS(2371), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2334), 2, + ACTIONS(2381), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1383), 2, + STATE(1328), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2332), 3, + ACTIONS(2379), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2419), 3, - anon_sym_as, + ACTIONS(2433), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 18, + ACTIONS(2431), 18, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -90859,33 +91274,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76418] = 3, + [77139] = 8, + ACTIONS(2302), 1, + anon_sym_DOT, + ACTIONS(2304), 1, + anon_sym_LPAREN, + ACTIONS(2312), 1, + anon_sym_STAR_STAR, + ACTIONS(2314), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + STATE(1277), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2429), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2427), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90901,35 +91321,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76463] = 8, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_STAR_STAR, - ACTIONS(2330), 1, - anon_sym_LBRACK, + [77194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1383), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 5, - anon_sym_as, + ACTIONS(1665), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, - anon_sym_RPAREN, + ACTIONS(1663), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90948,31 +91363,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76518] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [77239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_as, + ACTIONS(1620), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1618), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90991,27 +91405,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76565] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [77284] = 5, + ACTIONS(787), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, - anon_sym_as, + STATE(1135), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2296), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2294), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91034,31 +91449,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76612] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [77333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, - anon_sym_as, + ACTIONS(1620), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(1618), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91077,37 +91491,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76659] = 7, - ACTIONS(1562), 1, + [77378] = 4, + ACTIONS(1568), 1, anon_sym_COLON_EQ, - ACTIONS(1631), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1621), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1626), 5, + ACTIONS(1566), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 23, + ACTIONS(1561), 29, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91123,17 +91534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76712] = 3, + [77425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2575), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 31, + ACTIONS(2573), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91165,21 +91576,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76757] = 3, + [77470] = 5, + ACTIONS(2577), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + STATE(1135), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2360), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2358), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -91189,6 +91601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91207,36 +91620,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76802] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [77519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2582), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2580), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91252,36 +91662,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76853] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [77564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(1612), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(1607), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91297,36 +91704,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76904] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(1629), 1, - anon_sym_COLON, + [77609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, - anon_sym_as, + ACTIONS(2586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(2584), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91342,30 +91746,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76955] = 3, + [77654] = 8, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2429), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2427), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91384,17 +91793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77000] = 3, + [77709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2590), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 31, + ACTIONS(2588), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91426,26 +91835,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77045] = 3, + [77754] = 8, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, - anon_sym_as, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2469), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2467), 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_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [77809] = 6, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(638), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(631), 2, anon_sym_async, anon_sym_for, + ACTIONS(633), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91468,27 +91927,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77090] = 3, + [77860] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(631), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(633), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(652), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91510,27 +91970,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77135] = 3, + [77908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1620), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1618), 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_LBRACK, @@ -91552,19 +92011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77180] = 3, + [77952] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1620), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(1618), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91574,7 +92034,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [77996] = 5, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1563), 2, + anon_sym_COMMA, anon_sym_RBRACK, + ACTIONS(1566), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91593,17 +92095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77224] = 3, + [78044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(2479), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(2477), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91611,6 +92114,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78088] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1612), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91633,27 +92177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77268] = 3, + [78132] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, + ACTIONS(2487), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91675,67 +92218,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77312] = 5, + [78176] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(1671), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77360] = 3, + [78220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(1645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(1640), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91758,32 +92300,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77404] = 3, + [78264] = 6, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(1399), 1, + anon_sym_LBRACK, + STATE(2138), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, + ACTIONS(311), 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91799,35 +92344,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77448] = 8, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, + [78314] = 6, + ACTIONS(1399), 1, anon_sym_LBRACK, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + STATE(2140), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2468), 4, + ACTIONS(1566), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2466), 25, + ACTIONS(1561), 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_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91846,34 +92388,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77502] = 8, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, + [78364] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2458), 4, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2456), 25, + ACTIONS(311), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91892,31 +92430,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77556] = 3, + [78410] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91932,30 +92472,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77600] = 3, + [78456] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(1566), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91974,32 +92514,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77644] = 3, + [78502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(1566), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - sym_string_start, + ACTIONS(1561), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92015,20 +92555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77688] = 3, + [78546] = 4, + ACTIONS(1609), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(1612), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 30, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92056,20 +92597,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77732] = 3, + [78592] = 4, + ACTIONS(1563), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(1566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92097,33 +92639,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77776] = 8, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, + [78638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 4, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2417), 25, + ACTIONS(2477), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -92143,139 +92680,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77830] = 11, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, + [78682] = 4, + ACTIONS(1673), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2444), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2417), 20, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77890] = 15, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, - ACTIONS(2446), 1, - anon_sym_PIPE, - ACTIONS(2448), 1, - anon_sym_AMP, - ACTIONS(2450), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2423), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2434), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2444), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2421), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [77958] = 8, - ACTIONS(2428), 1, + ACTIONS(1671), 29, anon_sym_DOT, - ACTIONS(2430), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2419), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2417), 25, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92291,97 +92721,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78012] = 10, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, + sym_type_conversion, + [78728] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2417), 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_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78070] = 14, - ACTIONS(2428), 1, + ACTIONS(638), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 14, anon_sym_DOT, - ACTIONS(2430), 1, anon_sym_LPAREN, - ACTIONS(2438), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2440), 1, anon_sym_LBRACK, - ACTIONS(2448), 1, - anon_sym_AMP, - ACTIONS(2450), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2419), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2432), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2434), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2444), 2, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2417), 16, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(631), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92391,392 +92764,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78136] = 13, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, - ACTIONS(2450), 1, - anon_sym_CARET, + sym_type_conversion, + [78776] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2434), 2, + ACTIONS(638), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2444), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2417), 17, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(631), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78200] = 12, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2430), 1, - anon_sym_LPAREN, - ACTIONS(2438), 1, - anon_sym_STAR_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK, + sym_type_conversion, + [78824] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2432), 2, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2434), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2444), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1421), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2442), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2417), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(311), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78262] = 5, + [78870] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(311), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78310] = 5, + [78916] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1566), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1561), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78358] = 5, + [78962] = 4, + ACTIONS(1642), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1645), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1640), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78406] = 5, + sym_type_conversion, + [79008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(311), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78454] = 5, + [79052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(311), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78502] = 5, + [79096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2505), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(2503), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78550] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [79140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2533), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2531), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92792,22 +93140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78596] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [79184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2487), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -92816,6 +93162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92834,25 +93181,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78642] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [79228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2545), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2543), 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, @@ -92861,6 +93206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92876,25 +93222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78688] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [79272] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2582), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2580), 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, @@ -92903,6 +93247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92918,24 +93263,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78734] = 3, + [79316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2513), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(2511), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92958,25 +93304,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78778] = 3, + [79360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2509), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(2507), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92999,18 +93345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78822] = 3, + [79404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2549), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(2547), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93022,10 +93367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93041,17 +93386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78866] = 3, + [79448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93063,10 +93408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93082,17 +93427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78910] = 3, + [79492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2571), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2569), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93104,10 +93449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93123,20 +93468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78954] = 3, + [79536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2586), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(2584), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93149,6 +93493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93164,33 +93509,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78998] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [79580] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2590), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2588), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93206,24 +93550,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79044] = 3, + [79624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2517), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(2515), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93246,34 +93591,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79088] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [79668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2521), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(2519), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93289,24 +93632,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79134] = 3, + [79712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(2563), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - sym_string_start, + ACTIONS(2561), 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, @@ -93315,6 +93657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93330,34 +93673,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79178] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [79756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, + ACTIONS(2525), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(2523), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93373,26 +93714,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79226] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [79800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(259), 5, + ACTIONS(2567), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(2565), 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, @@ -93401,6 +93739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93416,24 +93755,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79274] = 3, + [79844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2499), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(2497), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93456,18 +93796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79318] = 3, + [79888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2541), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(2539), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93479,10 +93818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93498,17 +93837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79362] = 3, + [79932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2527), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93520,10 +93859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93539,17 +93878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79406] = 3, + [79976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2553), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, + ACTIONS(2551), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93561,10 +93900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93580,17 +93919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79450] = 3, + [80020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2557), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(2555), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93602,10 +93941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93621,17 +93960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79494] = 3, + [80064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, + ACTIONS(2527), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93643,10 +93982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93662,17 +94001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79538] = 3, + [80108] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2537), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(2535), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93684,10 +94023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93703,24 +94042,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79582] = 3, + [80152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2575), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(2573), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93743,18 +94083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79626] = 3, + [80196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2537), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2535), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93766,10 +94105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93785,32 +94124,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79670] = 3, + [80240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_as, + ACTIONS(1566), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(1561), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [80284] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 3, anon_sym_COLON, anon_sym_async, anon_sym_for, + ACTIONS(1629), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93826,23 +94207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79714] = 3, + [80330] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(313), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(311), 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, @@ -93867,23 +94249,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79758] = 3, + [80376] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(313), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, + ACTIONS(311), 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, @@ -93908,23 +94291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79802] = 3, + [80422] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1566), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, + ACTIONS(1561), 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, @@ -93949,32 +94333,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79846] = 3, + [80468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, - anon_sym_as, + ACTIONS(313), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(311), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93990,32 +94373,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79890] = 3, + sym_type_conversion, + [80512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_as, + ACTIONS(313), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(311), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94031,32 +94414,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79934] = 3, + sym_type_conversion, + [80556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, - anon_sym_as, + ACTIONS(2505), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(2503), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94072,32 +94455,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79978] = 3, + sym_type_conversion, + [80600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, - anon_sym_as, + ACTIONS(2533), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(2531), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94113,32 +94496,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80022] = 3, + sym_type_conversion, + [80644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, - anon_sym_as, + ACTIONS(2545), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(2543), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94154,32 +94537,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80066] = 3, + sym_type_conversion, + [80688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, - anon_sym_as, + ACTIONS(2582), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(2580), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94195,32 +94578,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80110] = 3, + sym_type_conversion, + [80732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(2513), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2511), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94236,32 +94619,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80154] = 3, + sym_type_conversion, + [80776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, - anon_sym_as, + ACTIONS(2509), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2507), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94277,25 +94660,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80198] = 3, + sym_type_conversion, + [80820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2549), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(2547), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94318,32 +94701,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80242] = 3, + sym_type_conversion, + [80864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94359,21 +94742,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80286] = 4, - ACTIONS(1642), 1, + sym_type_conversion, + [80908] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2571), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2569), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [80952] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2586), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2584), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94401,32 +94825,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80332] = 3, + [80996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(2590), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(2588), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94442,21 +94865,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80376] = 4, - ACTIONS(1557), 1, - anon_sym_COMMA, + sym_type_conversion, + [81040] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2515), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94484,32 +94907,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80422] = 4, - ACTIONS(1683), 1, - anon_sym_COMMA, + [81084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(1665), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(1663), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94525,120 +94948,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80468] = 5, + [81128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2563), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [80516] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2561), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [80564] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1619), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94654,34 +94988,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80610] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2525), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(2523), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94697,33 +95029,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80658] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2567), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2565), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94739,33 +95070,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80704] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81260] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(2499), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2497), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94781,33 +95111,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80750] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + ACTIONS(2541), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(2539), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94823,32 +95152,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80796] = 3, + sym_type_conversion, + [81348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, - anon_sym_as, + ACTIONS(2529), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 30, + ACTIONS(2527), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94864,21 +95193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80840] = 4, - ACTIONS(1653), 1, - anon_sym_COMMA, + sym_type_conversion, + [81392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(2553), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(2551), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94906,25 +95235,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80886] = 3, + [81436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(2557), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(2555), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94947,25 +95275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80930] = 3, + sym_type_conversion, + [81480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(2529), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(2527), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94988,25 +95316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80974] = 3, + sym_type_conversion, + [81524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(2537), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(2535), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95029,34 +95357,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81018] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2575), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(2573), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95072,34 +95398,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81066] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2537), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2535), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95115,17 +95439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81114] = 3, + sym_type_conversion, + [81656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1616), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1614), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95156,31 +95481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81158] = 3, + [81700] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(318), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 30, + ACTIONS(311), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95196,35 +95524,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81202] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [81748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(1653), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(1651), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95240,35 +95564,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81250] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(1569), 1, - anon_sym_LBRACK, - STATE(2095), 1, - sym_type_parameter, + sym_type_conversion, + [81792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 6, + ACTIONS(1638), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 26, + ACTIONS(1636), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95284,34 +95605,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81300] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, - anon_sym_as, + ACTIONS(1665), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(1663), 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_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95327,25 +95646,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81348] = 3, + sym_type_conversion, + [81880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, - anon_sym_as, + ACTIONS(1665), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, + ACTIONS(1663), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95368,25 +95687,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81392] = 3, + sym_type_conversion, + [81924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, - anon_sym_as, + ACTIONS(1620), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(1618), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95409,25 +95728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81436] = 3, + sym_type_conversion, + [81968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(1620), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(1618), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95450,23 +95769,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81480] = 3, + sym_type_conversion, + [82012] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(318), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(313), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, + ACTIONS(311), 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, @@ -95475,7 +95798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95491,19 +95813,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81524] = 3, + [82060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2479), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2477), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -95515,7 +95839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95531,41 +95854,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81568] = 3, + [82104] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1629), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1632), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1622), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -95573,25 +95897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [81612] = 3, + [82152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, - anon_sym_as, + ACTIONS(1612), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(1607), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95614,32 +95937,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81656] = 3, + sym_type_conversion, + [82196] = 8, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, - anon_sym_as, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2429), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2427), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95655,32 +95984,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81700] = 3, + [82250] = 8, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, - anon_sym_as, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2469), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2467), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95696,19 +96030,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81744] = 3, + [82304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2489), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2487), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -95720,7 +96056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95736,33 +96071,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [81788] = 3, + [82348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, - anon_sym_as, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 30, + ACTIONS(1671), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95778,25 +96111,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81832] = 3, + sym_type_conversion, + [82392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, - anon_sym_as, + ACTIONS(1645), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(1640), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95819,32 +96152,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81876] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(1569), 1, + sym_type_conversion, + [82436] = 8, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2096), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 6, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 26, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95863,41 +96199,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81926] = 6, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, + [82490] = 11, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2092), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2455), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2431), 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_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95907,76 +96248,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81976] = 6, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2470), 1, + [82550] = 15, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2094), 1, - sym_type_parameter, + ACTIONS(2457), 1, + anon_sym_PIPE, + ACTIONS(2459), 1, + anon_sym_AMP, + ACTIONS(2461), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, + ACTIONS(2437), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2445), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2455), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2435), 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_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82026] = 3, + [82618] = 8, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2431), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95992,38 +96347,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82070] = 3, + [82672] = 10, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2443), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2431), 22, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96033,269 +96395,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82114] = 3, + [82730] = 14, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, + anon_sym_AMP, + ACTIONS(2461), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2445), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2455), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2431), 16, + 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_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82158] = 3, + [82796] = 13, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_LBRACK, + ACTIONS(2461), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2445), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2455), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2431), 17, + 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_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82202] = 3, + [82860] = 12, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2449), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2433), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2443), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2445), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2455), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1480), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2453), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2431), 18, + 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_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82246] = 3, + [82922] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_as, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82290] = 3, + [82970] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, - anon_sym_as, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82334] = 3, + [83018] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, - anon_sym_as, + ACTIONS(1629), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1632), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1622), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82378] = 3, + [83066] = 5, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(1563), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1566), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(1561), 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, @@ -96304,7 +96705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96320,23 +96720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82422] = 3, + [83114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2479), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(2477), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -96345,7 +96746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96361,23 +96761,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82466] = 3, + [83158] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(318), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(313), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(311), 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, @@ -96386,7 +96789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96402,29 +96804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82510] = 3, + [83206] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(318), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(313), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(311), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96443,29 +96847,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82554] = 3, + [83254] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(311), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96484,29 +96889,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82598] = 3, + [83300] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(313), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(311), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96525,32 +96931,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82642] = 3, + [83346] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1566), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96566,23 +96973,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82686] = 3, + [83392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2489), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2487), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -96591,7 +96999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96607,25 +97014,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82730] = 3, + [83436] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(631), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(633), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(652), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96648,25 +97057,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82774] = 3, + [83484] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(631), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(633), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(652), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96689,31 +97100,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82818] = 5, - ACTIONS(272), 1, + [83532] = 5, + ACTIONS(1568), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(259), 5, + ACTIONS(1622), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1629), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(1626), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96732,31 +97143,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82866] = 3, + [83580] = 6, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(2592), 1, + anon_sym_LBRACK, + STATE(2089), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(313), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 30, + ACTIONS(311), 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96772,32 +97187,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [82910] = 5, - ACTIONS(272), 1, + [83630] = 6, + ACTIONS(1568), 1, anon_sym_COLON_EQ, + ACTIONS(2592), 1, + anon_sym_LBRACK, + STATE(2090), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(259), 5, - anon_sym_as, + ACTIONS(1566), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(1561), 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96816,33 +97231,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82958] = 4, + [83680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, + ACTIONS(1616), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(1614), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96858,19 +97272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83004] = 3, + [83724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(1653), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, + ACTIONS(1651), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96880,7 +97295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96899,31 +97313,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83048] = 3, + [83768] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(631), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(633), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(652), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96939,32 +97356,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83092] = 3, + [83816] = 5, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1622), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1629), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(1626), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96980,32 +97399,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83136] = 3, + [83864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1638), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 30, + ACTIONS(1636), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97021,32 +97440,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83180] = 3, + [83908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1665), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(1663), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97062,18 +97481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83224] = 3, + [83952] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2521), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 30, + ACTIONS(2519), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97104,26 +97522,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [83268] = 3, + [83996] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(687), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, - anon_sym_as, + ACTIONS(313), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, - sym_string_start, + ACTIONS(311), 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_LBRACK, @@ -97145,29 +97564,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83312] = 3, + [84043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2533), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97186,29 +97604,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83356] = 3, + [84086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1620), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1618), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97227,29 +97644,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83400] = 3, + [84129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 5, + ACTIONS(1620), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - sym_string_start, + ACTIONS(1618), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97268,31 +97684,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83444] = 3, + [84172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2545), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 30, + ACTIONS(2543), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97308,155 +97724,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83488] = 3, + [84215] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [83532] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2536), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2534), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(631), 15, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83576] = 3, + [84262] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 30, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83620] = 3, + [84309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2582), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2580), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97472,32 +97848,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83664] = 3, + [84352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(1612), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97513,30 +97888,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83708] = 3, + [84395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, - anon_sym_as, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 30, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97555,29 +97928,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83752] = 3, + [84438] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, - anon_sym_as, + ACTIONS(1645), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(1640), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97596,31 +97968,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83796] = 3, + [84481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2513), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97636,32 +98008,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83840] = 3, + [84524] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(311), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(313), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(346), 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, + [84569] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(311), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(313), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(346), 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, + [84614] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97677,32 +98130,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83884] = 3, + [84657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2549), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(2547), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97718,18 +98170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83928] = 3, + [84700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(1616), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 30, + ACTIONS(1614), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97737,13 +98188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97759,33 +98210,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [83972] = 3, + [84743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 30, + ACTIONS(2491), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97801,32 +98250,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84016] = 3, + [84786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(2571), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(2569), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97842,24 +98290,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84060] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [84829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(264), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(259), 5, + ACTIONS(2586), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 27, + ACTIONS(2584), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -97867,6 +98311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97885,31 +98330,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84108] = 3, + [84872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -97925,30 +98370,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [84152] = 3, + [84915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 5, + ACTIONS(1645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, - sym_string_start, + ACTIONS(1640), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -97967,28 +98410,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84196] = 3, + [84958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2590), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(2588), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98007,22 +98450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84239] = 4, + [85001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1645), 5, + ACTIONS(2517), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 27, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98030,6 +98471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98048,38 +98490,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84284] = 5, + [85044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2521), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85087] = 7, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1632), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1624), 5, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1622), 12, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_not, anon_sym_and, @@ -98090,28 +98561,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84331] = 3, + ACTIONS(1626), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [85138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2563), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 29, + ACTIONS(2561), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98130,28 +98614,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84374] = 3, + [85181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(2525), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85224] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2567), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2565), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98170,11 +98694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84417] = 3, + [85267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(1653), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, @@ -98183,12 +98707,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1651), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98210,28 +98734,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84460] = 3, + [85310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2499), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2497), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98250,66 +98774,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84503] = 7, - ACTIONS(1631), 1, - anon_sym_EQ, + [85353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2541), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 5, + ACTIONS(2539), 29, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1619), 12, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1623), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [84554] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1656), 5, + ACTIONS(2529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 27, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -98317,6 +98835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98335,72 +98854,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84599] = 7, - ACTIONS(1631), 1, - anon_sym_EQ, + [85439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1629), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1619), 12, + ACTIONS(2553), 5, anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1623), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [84650] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(2551), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98419,28 +98894,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84693] = 3, + [85482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2557), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2555), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98459,20 +98934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84736] = 3, + [85525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2529), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98481,6 +98955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98499,17 +98974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84779] = 3, + [85568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1638), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1636), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98539,59 +99014,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84822] = 5, + [85611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1665), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84869] = 3, + [85654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(1665), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 29, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98621,28 +99094,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84912] = 3, + [85697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2537), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2535), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98661,28 +99134,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84955] = 3, + [85740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2575), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2573), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98701,20 +99174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84998] = 3, + [85783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2537), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2535), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98723,6 +99195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98741,25 +99214,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85041] = 3, + [85826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, - anon_sym_as, + ACTIONS(1620), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(1618), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98781,25 +99254,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85084] = 3, + [85869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, - anon_sym_as, + ACTIONS(1566), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98821,108 +99294,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85127] = 3, + [85912] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, - anon_sym_as, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85170] = 3, + [85959] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(633), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85213] = 3, + [86006] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, - anon_sym_as, + ACTIONS(313), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(311), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98941,28 +99419,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85256] = 3, + [86051] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, - anon_sym_as, + ACTIONS(313), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(311), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -98981,28 +99460,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85299] = 3, + [86096] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, - anon_sym_as, + ACTIONS(1566), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(1561), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99021,25 +99501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85342] = 3, + [86141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(313), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99061,17 +99541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85385] = 3, + [86184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(313), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99101,25 +99581,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85428] = 3, + [86227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(2505), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99141,25 +99621,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85471] = 3, + [86270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99181,25 +99661,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85514] = 3, + [86313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2545), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(2543), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99221,25 +99701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85557] = 3, + [86356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2582), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(2580), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99261,25 +99741,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85600] = 3, + [86399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, - anon_sym_as, + ACTIONS(2513), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99301,25 +99781,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85643] = 3, + [86442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2509), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99341,25 +99821,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85686] = 3, + [86485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2549), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99381,25 +99861,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85729] = 3, + [86528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 5, + ACTIONS(1620), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1618), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99421,25 +99901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85772] = 3, + [86571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99461,25 +99941,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85815] = 3, + [86614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2582), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(2580), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99501,17 +99981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85858] = 3, + [86657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 5, + ACTIONS(2571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(2569), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99541,25 +100021,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85901] = 3, + [86700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(2586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2584), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99581,17 +100061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85944] = 3, + [86743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2590), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(2588), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99621,17 +100101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85987] = 3, + [86786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99661,25 +100141,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86030] = 3, + [86829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2521), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2519), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2563), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99701,17 +100221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86073] = 3, + [86915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99741,17 +100261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86116] = 3, + [86958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99781,17 +100301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86159] = 3, + [87001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(1566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99821,13 +100341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86202] = 3, + [87044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2499), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -99836,10 +100356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99861,20 +100381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86245] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(765), 1, - anon_sym_EQ, + [87087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(2541), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2539), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99882,6 +100399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99903,19 +100421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86292] = 3, + [87130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2474), 4, + ACTIONS(2529), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2472), 30, - sym_string_start, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -99924,7 +100443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99943,20 +100461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86335] = 5, - ACTIONS(272), 1, - anon_sym_COLON_EQ, - ACTIONS(765), 1, - anon_sym_EQ, + [87173] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(2553), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2551), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99964,6 +100479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99985,20 +100501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86382] = 5, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, - ACTIONS(2510), 1, - anon_sym_EQ, + [87216] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 4, + ACTIONS(2557), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(2555), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100006,6 +100519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100027,29 +100541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86429] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [87259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2529), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100068,25 +100581,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86474] = 3, + [87302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(313), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100108,17 +100621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86517] = 3, + [87345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2513), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100148,59 +100661,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86560] = 5, + [87388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2509), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1629), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87431] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2537), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2535), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86607] = 3, + [87474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2575), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2573), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100230,17 +100781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86650] = 3, + [87517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2537), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(2535), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100270,25 +100821,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86693] = 3, + [87560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2549), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2547), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87603] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(311), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87646] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1629), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87691] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1612), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87734] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2505), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100310,25 +101022,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86736] = 3, + [87777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100350,17 +101062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86779] = 3, + [87820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(2569), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100390,17 +101102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86822] = 3, + [87863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(2586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2479), 30, - sym_string_start, + ACTIONS(2584), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100408,10 +101120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -100430,25 +101142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86865] = 3, + [87906] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2590), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2588), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100470,59 +101182,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86908] = 5, + [87949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2537), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(2535), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86955] = 3, + [87992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100552,66 +101262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86998] = 4, + [88035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1645), 13, + ACTIONS(2521), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1571), 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, - [87043] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1686), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100633,25 +101302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87086] = 3, + [88078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, - anon_sym_as, + ACTIONS(1616), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(1614), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100673,58 +101342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87129] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1555), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1560), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1571), 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, - [87174] = 3, + [88121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100754,149 +101382,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87217] = 4, + [88164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1686), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1688), 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, - [87262] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(2537), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(2535), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87309] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1651), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1656), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1658), 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, - [87354] = 3, + [88207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(2567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2565), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100918,17 +101462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87397] = 3, + [88250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 5, + ACTIONS(2499), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100958,25 +101502,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87440] = 3, + [88293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 5, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100998,25 +101542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87483] = 3, + [88336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1640), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101038,17 +101582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87526] = 3, + [88379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(2541), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2539), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101078,17 +101622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87569] = 3, + [88422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101118,25 +101662,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87612] = 3, + [88465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(1653), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(1651), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101158,26 +101702,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87655] = 4, + [88508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(1638), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(1636), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101199,25 +101742,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87700] = 3, + [88551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, - anon_sym_as, + ACTIONS(1665), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101239,17 +101782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87743] = 3, + [88594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1665), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101279,26 +101822,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87786] = 4, + [88637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1686), 5, - anon_sym_as, + ACTIONS(1620), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(1618), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101320,25 +101862,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87831] = 3, + [88680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, - anon_sym_as, + ACTIONS(1620), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1618), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101360,29 +101902,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87874] = 4, + [88723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1626), 5, - anon_sym_as, + ACTIONS(2479), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 27, + ACTIONS(2477), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101401,150 +101942,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87919] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [88766] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(633), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 28, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87964] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [88813] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 5, + ACTIONS(633), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 28, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88009] = 3, + [88860] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 5, + ACTIONS(1629), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1632), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1622), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88052] = 3, + [88907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, - anon_sym_as, + ACTIONS(2489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(2487), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101563,65 +102108,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88095] = 3, + [88950] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(1607), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1612), 13, anon_sym_STAR, - anon_sym_EQ, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1640), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1575), 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, + [88995] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1561), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(1566), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1575), 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, + [89040] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 3, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, + ACTIONS(1676), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [88138] = 3, + ACTIONS(1678), 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, + [89085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2553), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2551), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101643,28 +102271,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88181] = 3, + [89128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(1616), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(1614), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101683,18 +102311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88224] = 5, + [89171] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1629), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, + ACTIONS(1632), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -101709,12 +102337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, + ACTIONS(1622), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -101725,18 +102353,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88271] = 5, + [89218] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1640), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1645), 13, anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(650), 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1647), 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, + [89263] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1632), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -101751,13 +102420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, + ACTIONS(1622), 15, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -101767,25 +102436,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88318] = 3, + [89310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 5, + ACTIONS(2557), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(2555), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101807,25 +102476,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88361] = 3, + [89353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 5, + ACTIONS(1566), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101847,25 +102516,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88404] = 3, + [89396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101887,107 +102556,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88447] = 4, + [89439] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(257), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(259), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(300), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [88492] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(257), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(259), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(300), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(1609), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [88537] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(1612), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(1607), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102009,21 +102597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88580] = 3, + [89484] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(1563), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1566), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(1561), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102049,17 +102638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88623] = 3, + [89529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2537), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2535), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102089,21 +102678,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88666] = 3, + [89572] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1673), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1676), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1671), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102129,26 +102719,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88709] = 4, + [89617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1645), 5, - anon_sym_as, + ACTIONS(2575), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 27, + ACTIONS(2573), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102170,25 +102759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88754] = 3, + [89660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_as, + ACTIONS(2537), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2535), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102210,107 +102799,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88797] = 4, + [89703] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1656), 5, - anon_sym_as, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 27, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88842] = 4, + [89750] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1557), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1560), 5, - anon_sym_as, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(638), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 27, + ACTIONS(652), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(631), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88887] = 3, + [89797] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(1622), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1629), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(1626), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102332,20 +102924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88930] = 3, + [89842] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1566), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -102354,6 +102945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102372,21 +102964,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88973] = 3, + [89885] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1609), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1612), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1607), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102412,25 +103005,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89016] = 3, + [89930] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(1563), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1566), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(1561), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102452,25 +103046,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89059] = 3, + [89975] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1642), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1640), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102492,17 +103087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89102] = 3, + [90020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(313), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102532,25 +103127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89145] = 3, + [90063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102572,25 +103167,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89188] = 3, + [90106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(1612), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102612,25 +103207,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89231] = 3, + [90149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2505), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102652,109 +103247,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89274] = 5, + [90192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2533), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89321] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89368] = 3, + [90235] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(1673), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1676), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(1671), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102776,28 +103328,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89411] = 3, + [90280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1653), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1651), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102816,25 +103368,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89454] = 3, + [90323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(1612), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -102856,17 +103408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89497] = 3, + [90366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102896,22 +103448,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89540] = 4, + [90409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1686), 5, + ACTIONS(2545), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 27, + ACTIONS(2543), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102937,17 +103488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89585] = 3, + [90452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2582), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2580), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102977,17 +103528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89628] = 3, + [90495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2513), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2511), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103017,25 +103568,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89671] = 3, + [90538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2499), 5, + ACTIONS(2509), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2497), 29, + ACTIONS(2507), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103057,27 +103608,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89714] = 3, + [90581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 4, + ACTIONS(2549), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(2547), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103096,67 +103648,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89756] = 3, + [90624] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2495), 4, + ACTIONS(1629), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1632), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2493), 29, + ACTIONS(1626), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1622), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89798] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [90671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(2545), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(2543), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103175,28 +103730,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89842] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [90714] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1642), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1645), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1640), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103215,69 +103771,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89886] = 5, + [90759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2493), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89932] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [90802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(2575), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(2573), 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_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103296,70 +103851,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89976] = 7, - ACTIONS(1631), 1, + [90845] = 5, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(687), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1629), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1619), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1623), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [90026] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(313), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(311), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103378,27 +103893,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90068] = 3, + [90892] = 5, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + ACTIONS(2501), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(1566), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(1561), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103417,38 +103935,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90110] = 5, + [90939] = 7, + ACTIONS(1634), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1629), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 2, + ACTIONS(1632), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1624), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, + ACTIONS(1622), 12, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -103458,64 +103966,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90156] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2499), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2497), 29, - anon_sym_DOT, + ACTIONS(1626), 12, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90198] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [90990] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(2571), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(2569), 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_LBRACK, @@ -103537,27 +104019,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90242] = 3, + [91033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 4, + ACTIONS(2586), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2584), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103576,27 +104059,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90284] = 3, + [91076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 4, + ACTIONS(2590), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2588), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103615,25 +104099,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90326] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [91119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(2517), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(2515), 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_LBRACK, @@ -103655,27 +104139,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90370] = 3, + [91162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 4, + ACTIONS(2521), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2519), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103694,25 +104179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90412] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [91205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(2563), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(2561), 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_LBRACK, @@ -103734,27 +104219,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90456] = 3, + [91248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 4, + ACTIONS(2525), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103773,27 +104259,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90498] = 3, + [91291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 4, + ACTIONS(2567), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1555), 29, + ACTIONS(2565), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103812,23 +104299,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90540] = 3, + [91334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 4, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103851,23 +104339,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90582] = 3, + [91377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 4, + ACTIONS(1638), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 29, + ACTIONS(1636), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103890,23 +104379,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90624] = 3, + [91420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 4, + ACTIONS(1665), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103929,27 +104419,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90666] = 3, + [91463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 4, + ACTIONS(2499), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(2497), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -103968,27 +104459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90708] = 3, + [91506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(2541), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(2539), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104007,27 +104499,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90750] = 3, + [91549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 4, + ACTIONS(2529), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1681), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104046,27 +104539,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90792] = 3, + [91592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 4, + ACTIONS(2553), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(2551), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104085,27 +104579,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90834] = 3, + [91635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(2557), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2555), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104124,23 +104619,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90876] = 3, + [91678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 4, + ACTIONS(2529), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2527), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91721] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1663), 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_LBRACK, @@ -104163,23 +104699,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90918] = 3, + [91764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 4, + ACTIONS(313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -104202,23 +104739,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90960] = 3, + [91807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 4, + ACTIONS(2505), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2503), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -104241,31 +104779,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91002] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [91850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1676), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -104281,31 +104819,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91046] = 4, - ACTIONS(272), 1, - anon_sym_COLON_EQ, + [91893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1645), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1640), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -104321,31 +104859,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91090] = 4, - ACTIONS(1562), 1, - anon_sym_COLON_EQ, + [91936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(2525), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(2523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -104361,16 +104899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91134] = 3, + [91979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + ACTIONS(2582), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2580), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104400,16 +104938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91176] = 3, + [92021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 4, + ACTIONS(1616), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(257), 29, + ACTIONS(1614), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104439,57 +104977,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91218] = 5, + [92063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(1653), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1623), 14, + ACTIONS(1651), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92105] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1638), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1636), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91264] = 3, + [92147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 4, + ACTIONS(1665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104519,16 +105094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91306] = 3, + [92189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 4, + ACTIONS(1665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104558,16 +105133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91348] = 3, + [92231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 4, + ACTIONS(1620), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(1618), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104597,16 +105172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91390] = 3, + [92273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2491), 4, + ACTIONS(1620), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2489), 29, + ACTIONS(1618), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104636,27 +105211,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91432] = 3, + [92315] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(633), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(652), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104675,27 +105251,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91474] = 3, + [92359] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(633), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(652), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -104714,23 +105291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91516] = 3, + [92403] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 4, + ACTIONS(633), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1647), 29, + ACTIONS(652), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -104753,16 +105331,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91558] = 3, + [92447] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1632), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1622), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 4, + ACTIONS(1566), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1666), 29, + ACTIONS(1561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104792,26 +105411,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91600] = 6, + [92535] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 2, + ACTIONS(633), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 2, + ACTIONS(638), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 5, + ACTIONS(652), 14, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(631), 15, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_in, anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92581] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(633), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(638), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(1619), 12, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(631), 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, @@ -104821,29 +105493,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1623), 12, + [92627] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(633), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 28, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [91648] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 4, + ACTIONS(313), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104873,16 +105572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91690] = 3, + [92713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 4, + ACTIONS(313), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104912,54 +105611,1353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91732] = 4, + [92755] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92799] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2505), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92841] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 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_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92885] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2533), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2531), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1676), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92969] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2545), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2543), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93011] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1645), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1640), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2513), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2511), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93095] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2507), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2549), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2547), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93179] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2493), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2491), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93221] = 7, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1632), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1624), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1622), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1626), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [93271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2571), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2569), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93313] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2586), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2584), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93355] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2590), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2588), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93397] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2517), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2515), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2521), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2519), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93481] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2563), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2561), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2525), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2523), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93565] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2567), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2565), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93607] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(633), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93651] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2499), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2497), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93693] = 6, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1632), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1624), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1622), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1626), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [93741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 3, + ACTIONS(2541), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2539), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(1686), 13, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93783] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2529), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2527), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93825] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2553), 4, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2551), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1688), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2557), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2555), 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_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, - [91775] = 4, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93909] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2529), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2527), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93951] = 4, + ACTIONS(328), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(633), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(652), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93995] = 4, + ACTIONS(1568), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94039] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2537), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2535), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94081] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2575), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2573), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2537), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2535), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94165] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1612), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94207] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(257), 3, + ACTIONS(311), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(259), 13, + ACTIONS(313), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104973,7 +106971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(300), 16, + ACTIONS(346), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104990,11 +106988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91818] = 3, + [94250] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 13, + ACTIONS(1640), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1645), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105008,13 +107010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1647), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1647), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105028,15 +107027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91859] = 4, + [94293] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(257), 3, + ACTIONS(1626), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(259), 13, + ACTIONS(1629), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105050,7 +107049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(300), 16, + ACTIONS(1622), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105067,11 +107066,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91902] = 3, + [94336] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 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_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94377] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94418] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 13, + ACTIONS(1653), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105085,7 +107198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1666), 19, + ACTIONS(1651), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105105,11 +107218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91943] = 3, + [94500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 13, + ACTIONS(1616), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105123,7 +107236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1611), 19, + ACTIONS(1614), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105143,11 +107256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91984] = 3, + [94541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 13, + ACTIONS(1638), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105161,7 +107274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1615), 19, + ACTIONS(1636), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105181,15 +107294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92025] = 4, + [94582] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1645), 13, + ACTIONS(1665), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105203,10 +107312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1571), 16, + ACTIONS(1663), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105220,11 +107332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92068] = 3, + [94623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 13, + ACTIONS(1665), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105238,7 +107350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1615), 19, + ACTIONS(1663), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105258,11 +107370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92109] = 3, + [94664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1620), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105276,7 +107388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, + ACTIONS(1618), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105296,11 +107408,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92150] = 3, + [94705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1620), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105314,7 +107426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, + ACTIONS(1618), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -105334,15 +107446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92191] = 4, + [94746] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(686), 3, + ACTIONS(652), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(645), 13, + ACTIONS(633), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105356,7 +107468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + ACTIONS(631), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105373,15 +107485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92234] = 4, + [94789] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(686), 3, + ACTIONS(652), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(645), 13, + ACTIONS(633), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105395,7 +107507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + ACTIONS(631), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105412,15 +107524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92277] = 4, + [94832] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1555), 3, + ACTIONS(311), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1560), 13, + ACTIONS(313), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105434,7 +107546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1571), 16, + ACTIONS(346), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105451,15 +107563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92320] = 4, + [94875] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 3, + ACTIONS(1607), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1656), 13, + ACTIONS(1612), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105473,7 +107585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1658), 16, + ACTIONS(1575), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105490,15 +107602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92363] = 4, + [94918] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 3, + ACTIONS(1561), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1626), 13, + ACTIONS(1566), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -105512,7 +107624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1619), 16, + ACTIONS(1575), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -105529,165 +107641,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92406] = 3, + [94961] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1626), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 28, + ACTIONS(1671), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92447] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1626), 4, + ACTIONS(1676), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92488] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1626), 4, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1623), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [92529] = 20, - ACTIONS(308), 1, + ACTIONS(1678), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [95004] = 20, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2594), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2598), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2600), 1, anon_sym_if, - ACTIONS(2586), 1, + ACTIONS(2602), 1, anon_sym_COLON, - ACTIONS(2588), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2199), 1, + STATE(2216), 1, sym_case_pattern, - STATE(2631), 1, + STATE(2652), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2215), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2610), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(2012), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105697,51 +107734,51 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92603] = 20, - ACTIONS(308), 1, + [95078] = 20, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2594), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2598), 1, anon_sym_STAR, - ACTIONS(2584), 1, + ACTIONS(2600), 1, anon_sym_if, - ACTIONS(2588), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2602), 1, + ACTIONS(2618), 1, anon_sym_COLON, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2199), 1, + STATE(2216), 1, sym_case_pattern, - STATE(2740), 1, + STATE(2733), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2215), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2610), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(2012), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105751,97 +107788,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92677] = 18, - ACTIONS(799), 1, + [95152] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2604), 1, - sym_identifier, - ACTIONS(2606), 1, - anon_sym_LPAREN, - ACTIONS(2608), 1, - anon_sym_STAR, - ACTIONS(2610), 1, - anon_sym_STAR_STAR, - ACTIONS(2612), 1, - anon_sym_LBRACK, - ACTIONS(2614), 1, - anon_sym_RBRACK, - ACTIONS(2616), 1, - anon_sym_DASH, ACTIONS(2620), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(2622), 1, - sym_integer, + anon_sym_LPAREN, ACTIONS(2624), 1, - sym_float, - STATE(1843), 1, - sym_string, - STATE(2015), 1, - sym_dotted_name, - STATE(2328), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2294), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2618), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(2016), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [92745] = 18, - ACTIONS(709), 1, - sym_string_start, + anon_sym_STAR, ACTIONS(2626), 1, - sym_identifier, + anon_sym_STAR_STAR, ACTIONS(2628), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(2630), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(2632), 1, - anon_sym_STAR, - ACTIONS(2634), 1, - anon_sym_STAR_STAR, - ACTIONS(2636), 1, - anon_sym_LBRACK, - ACTIONS(2638), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - STATE(1886), 1, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2179), 1, + STATE(2209), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105851,47 +107838,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92813] = 18, - ACTIONS(799), 1, + [95220] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2648), 1, + ACTIONS(2642), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1879), 1, sym_string, - STATE(2015), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2237), 1, + STATE(2180), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105901,47 +107888,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92881] = 18, - ACTIONS(709), 1, + [95288] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2648), 1, + anon_sym_RPAREN, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2650), 1, - anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2244), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105951,47 +107938,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92949] = 18, - ACTIONS(709), 1, + [95356] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2652), 1, + ACTIONS(2666), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106001,47 +107988,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93017] = 18, - ACTIONS(799), 1, + [95424] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2668), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1879), 1, sym_string, - STATE(2015), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106051,47 +108038,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93085] = 18, - ACTIONS(709), 1, + [95492] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2656), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106101,47 +108088,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93153] = 18, - ACTIONS(799), 1, + [95560] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2658), 1, + ACTIONS(2672), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1879), 1, sym_string, - STATE(2015), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106151,47 +108138,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93221] = 18, - ACTIONS(709), 1, + [95628] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2660), 1, + ACTIONS(2674), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106201,47 +108188,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93289] = 18, - ACTIONS(709), 1, + [95696] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2662), 1, + ACTIONS(2676), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106251,47 +108238,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93357] = 18, - ACTIONS(709), 1, + [95764] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, - sym_float, ACTIONS(2664), 1, + sym_float, + ACTIONS(2678), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2213), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106301,47 +108288,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93425] = 18, - ACTIONS(709), 1, + [95832] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2666), 1, + ACTIONS(2680), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2149), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106351,47 +108338,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93493] = 18, - ACTIONS(799), 1, + [95900] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2668), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2682), 1, + anon_sym_RPAREN, + STATE(1923), 1, sym_string, - STATE(2015), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2150), 1, + STATE(2176), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106401,47 +108388,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93561] = 18, - ACTIONS(709), 1, + [95968] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2670), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2684), 1, + anon_sym_RBRACK, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2205), 1, + STATE(2178), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106451,47 +108438,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93629] = 18, - ACTIONS(709), 1, + [96036] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2672), 1, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2164), 1, + STATE(2203), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106501,47 +108488,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93697] = 18, - ACTIONS(709), 1, + [96104] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2674), 1, + ACTIONS(2688), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106551,47 +108538,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93765] = 18, - ACTIONS(709), 1, + [96172] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2676), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2690), 1, + anon_sym_RBRACK, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106601,47 +108588,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93833] = 18, - ACTIONS(799), 1, + [96240] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2678), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2692), 1, + anon_sym_RPAREN, + STATE(1923), 1, sym_string, - STATE(2015), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2166), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106651,47 +108638,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93901] = 18, - ACTIONS(709), 1, + [96308] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2680), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2694), 1, + anon_sym_RBRACK, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106701,47 +108688,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93969] = 18, - ACTIONS(709), 1, + [96376] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2682), 1, + ACTIONS(2696), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106751,47 +108738,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94037] = 18, - ACTIONS(799), 1, + [96444] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2684), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2698), 1, + anon_sym_RPAREN, + STATE(1923), 1, sym_string, - STATE(2015), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106801,47 +108788,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94105] = 18, - ACTIONS(709), 1, + [96512] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2686), 1, + ACTIONS(2700), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106851,47 +108838,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94173] = 18, - ACTIONS(709), 1, + [96580] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2688), 1, + ACTIONS(2702), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2229), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106901,47 +108888,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94241] = 18, - ACTIONS(799), 1, + [96648] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2690), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2704), 1, + anon_sym_RPAREN, + STATE(1923), 1, sym_string, - STATE(2015), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2188), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106951,47 +108938,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94309] = 18, - ACTIONS(709), 1, + [96716] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2692), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2706), 1, + anon_sym_RBRACK, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2170), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107001,47 +108988,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94377] = 18, - ACTIONS(799), 1, + [96784] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2694), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2708), 1, + anon_sym_RPAREN, + STATE(1923), 1, sym_string, - STATE(2015), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2174), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107051,47 +109038,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94445] = 18, - ACTIONS(709), 1, + [96852] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2710), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107101,47 +109088,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94513] = 18, - ACTIONS(709), 1, + [96920] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2698), 1, + ACTIONS(2712), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2197), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107151,47 +109138,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94581] = 18, - ACTIONS(799), 1, + [96988] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2700), 1, + ACTIONS(2714), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1879), 1, sym_string, - STATE(2015), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107201,47 +109188,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94649] = 18, - ACTIONS(709), 1, + [97056] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2702), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2716), 1, + anon_sym_RBRACK, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107251,47 +109238,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94717] = 18, - ACTIONS(709), 1, + [97124] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2704), 1, + ACTIONS(2718), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2186), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107301,47 +109288,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94785] = 18, - ACTIONS(709), 1, + [97192] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2706), 1, + ACTIONS(2720), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2235), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107351,47 +109338,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94853] = 18, - ACTIONS(799), 1, + [97260] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2708), 1, - anon_sym_RBRACK, - STATE(1843), 1, + ACTIONS(2722), 1, + anon_sym_RPAREN, + STATE(1923), 1, sym_string, - STATE(2015), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2208), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107401,47 +109388,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94921] = 18, - ACTIONS(709), 1, + [97328] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2710), 1, - anon_sym_RPAREN, - STATE(1886), 1, + ACTIONS(2724), 1, + anon_sym_RBRACK, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107451,47 +109438,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94989] = 18, - ACTIONS(709), 1, + [97396] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2712), 1, + ACTIONS(2726), 1, anon_sym_RPAREN, - STATE(1886), 1, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107501,47 +109488,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95057] = 18, - ACTIONS(799), 1, + [97464] = 18, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2714), 1, + ACTIONS(2728), 1, anon_sym_RBRACK, - STATE(1843), 1, + STATE(1879), 1, sym_string, - STATE(2015), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2328), 1, + STATE(2225), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107551,45 +109538,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95125] = 17, - ACTIONS(709), 1, + [97532] = 18, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2626), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2664), 1, sym_float, - STATE(1886), 1, + ACTIONS(2730), 1, + anon_sym_RPAREN, + STATE(1923), 1, sym_string, - STATE(2111), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2253), 1, + STATE(2519), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2307), 2, + STATE(2287), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2640), 4, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2100), 9, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107599,45 +109588,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95190] = 17, - ACTIONS(799), 1, + [97600] = 17, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2594), 1, sym_identifier, - ACTIONS(2606), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2598), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2616), 1, sym_float, - STATE(1843), 1, + STATE(1854), 1, sym_string, - STATE(2015), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2328), 1, + STATE(1982), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2294), 2, + STATE(2215), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2618), 4, + ACTIONS(2610), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2016), 9, + STATE(2012), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107647,45 +109636,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95255] = 17, - ACTIONS(684), 1, + [97665] = 17, + ACTIONS(675), 1, sym_string_start, - ACTIONS(2716), 1, + ACTIONS(2732), 1, sym_identifier, - ACTIONS(2718), 1, + ACTIONS(2734), 1, anon_sym_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2724), 1, + ACTIONS(2740), 1, anon_sym_LBRACK, - ACTIONS(2726), 1, + ACTIONS(2742), 1, anon_sym_DASH, - ACTIONS(2730), 1, + ACTIONS(2746), 1, anon_sym_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2748), 1, sym_integer, - ACTIONS(2734), 1, + ACTIONS(2750), 1, sym_float, - STATE(1863), 1, + STATE(1894), 1, sym_string, - STATE(2007), 1, + STATE(2102), 1, sym_dotted_name, - STATE(2313), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2416), 2, + STATE(2317), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2728), 4, + ACTIONS(2744), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2014), 9, + STATE(2158), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107695,45 +109684,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95320] = 17, - ACTIONS(308), 1, + [97730] = 17, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2620), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2640), 1, sym_float, - STATE(1789), 1, + STATE(1879), 1, sym_string, - STATE(1905), 1, + STATE(2049), 1, sym_dotted_name, - STATE(2199), 1, + STATE(2366), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2313), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2634), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(2050), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107743,45 +109732,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95385] = 17, - ACTIONS(308), 1, + [97795] = 17, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2578), 1, + ACTIONS(2594), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2598), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(1919), 1, + STATE(2216), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2143), 2, + STATE(2215), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2610), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1925), 9, + STATE(2012), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107791,94 +109780,94 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95450] = 18, - ACTIONS(308), 1, + [97860] = 17, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2644), 1, + sym_identifier, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2650), 1, + anon_sym_STAR, + ACTIONS(2652), 1, + anon_sym_STAR_STAR, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2720), 1, - anon_sym_STAR, - ACTIONS(2722), 1, - anon_sym_STAR_STAR, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(2740), 1, - anon_sym_RBRACE, - STATE(1789), 1, + STATE(1923), 1, sym_string, - STATE(1905), 1, + STATE(2151), 1, sym_dotted_name, - STATE(2030), 1, - sym_splat_pattern, - STATE(2317), 1, - sym__key_value_pattern, + STATE(2519), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + STATE(2287), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2658), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2152), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, + sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95516] = 18, - ACTIONS(308), 1, + [97925] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2742), 1, + ACTIONS(2756), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107887,46 +109876,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95582] = 18, - ACTIONS(308), 1, + [97991] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2758), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107935,46 +109924,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95648] = 18, - ACTIONS(308), 1, + [98057] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2746), 1, + ACTIONS(2760), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107983,46 +109972,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95714] = 18, - ACTIONS(308), 1, + [98123] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2762), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108031,46 +110020,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95780] = 18, - ACTIONS(308), 1, + [98189] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2750), 1, + ACTIONS(2764), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108079,46 +110068,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95846] = 18, - ACTIONS(308), 1, + [98255] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, - sym_identifier, ACTIONS(2752), 1, + sym_identifier, + ACTIONS(2766), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108127,46 +110116,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95912] = 18, - ACTIONS(308), 1, + [98321] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2754), 1, + ACTIONS(2768), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2079), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2367), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108175,46 +110164,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95978] = 18, - ACTIONS(308), 1, + [98387] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2756), 1, + ACTIONS(2770), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2053), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2329), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108223,46 +110212,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96044] = 18, - ACTIONS(308), 1, + [98453] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2758), 1, + ACTIONS(2772), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108271,46 +110260,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96110] = 18, - ACTIONS(308), 1, + [98519] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2774), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108319,46 +110308,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96176] = 18, - ACTIONS(308), 1, + [98585] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2762), 1, + ACTIONS(2776), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108367,46 +110356,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96242] = 18, - ACTIONS(308), 1, + [98651] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2764), 1, + ACTIONS(2778), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2006), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2277), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108415,46 +110404,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96308] = 18, - ACTIONS(308), 1, + [98717] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2766), 1, + ACTIONS(2780), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108463,46 +110452,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96374] = 18, - ACTIONS(308), 1, + [98783] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2768), 1, + ACTIONS(2782), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2091), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2468), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108511,46 +110500,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96440] = 18, - ACTIONS(308), 1, + [98849] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2770), 1, + ACTIONS(2784), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108559,46 +110548,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96506] = 18, - ACTIONS(308), 1, + [98915] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2772), 1, + ACTIONS(2786), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(1999), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2296), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108607,46 +110596,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96572] = 18, - ACTIONS(308), 1, + [98981] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2774), 1, + ACTIONS(2788), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108655,46 +110644,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96638] = 18, - ACTIONS(308), 1, + [99047] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2776), 1, + ACTIONS(2790), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2120), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2523), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108703,46 +110692,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96704] = 18, - ACTIONS(308), 1, + [99113] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - ACTIONS(2778), 1, + ACTIONS(2792), 1, anon_sym_RBRACE, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2280), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2597), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108751,44 +110740,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96770] = 17, - ACTIONS(308), 1, + [99179] = 18, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - STATE(1789), 1, + ACTIONS(2794), 1, + anon_sym_RBRACE, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, - STATE(2171), 1, + STATE(2084), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2335), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2295), 8, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108797,83 +110788,86 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96833] = 15, - ACTIONS(799), 1, + [99245] = 17, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, - anon_sym_STAR, - ACTIONS(2610), 1, - anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2780), 1, + ACTIONS(2736), 1, + anon_sym_STAR, + ACTIONS(2738), 1, + anon_sym_STAR_STAR, + ACTIONS(2752), 1, sym_identifier, - STATE(1843), 1, + STATE(1854), 1, sym_string, - STATE(2015), 1, + STATE(1940), 1, sym_dotted_name, + STATE(2280), 1, + sym_splat_pattern, + STATE(2597), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2782), 4, + ACTIONS(2754), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2032), 9, + STATE(2333), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, - sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96891] = 15, - ACTIONS(799), 1, + [99308] = 15, + ACTIONS(721), 1, sym_string_start, - ACTIONS(2606), 1, + ACTIONS(2646), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2650), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2652), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2654), 1, anon_sym_LBRACK, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_DASH, - ACTIONS(2620), 1, + ACTIONS(2660), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2662), 1, sym_integer, - ACTIONS(2624), 1, + ACTIONS(2664), 1, sym_float, - ACTIONS(2780), 1, + ACTIONS(2796), 1, sym_identifier, - STATE(1843), 1, + STATE(1923), 1, sym_string, - STATE(2015), 1, + STATE(2151), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2784), 4, + ACTIONS(2798), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2033), 9, + STATE(2073), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108883,32 +110877,69 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96949] = 9, - ACTIONS(2124), 1, + [99366] = 9, + ACTIONS(2805), 1, + anon_sym_EQ, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2130), 1, + ACTIONS(2810), 1, anon_sym_is, - ACTIONS(2788), 1, + STATE(1595), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2813), 2, + anon_sym_LT, + anon_sym_GT, + STATE(920), 2, + sym__not_in, + sym__is_not, + ACTIONS(2802), 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(2800), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [99412] = 9, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2134), 1, + anon_sym_is, + ACTIONS(2818), 1, anon_sym_EQ, - STATE(1559), 1, + STATE(1595), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2132), 2, + ACTIONS(2136), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(920), 2, sym__not_in, sym__is_not, - ACTIONS(2110), 6, + ACTIONS(2114), 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(2786), 11, + ACTIONS(2816), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108920,40 +110951,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96995] = 15, - ACTIONS(308), 1, + [99458] = 15, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2598), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2736), 1, + ACTIONS(2752), 1, sym_identifier, - STATE(1789), 1, + STATE(1854), 1, sym_string, - STATE(1905), 1, + STATE(1940), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2790), 4, + ACTIONS(2820), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1968), 9, + STATE(1953), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108963,40 +110994,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97053] = 15, - ACTIONS(709), 1, + [99516] = 15, + ACTIONS(675), 1, sym_string_start, - ACTIONS(2628), 1, + ACTIONS(2734), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2740), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2742), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2746), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2748), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2750), 1, sym_float, - ACTIONS(2792), 1, + ACTIONS(2822), 1, sym_identifier, - STATE(1886), 1, + STATE(1894), 1, sym_string, - STATE(2111), 1, + STATE(2102), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2794), 4, + ACTIONS(2824), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2048), 9, + STATE(2147), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109006,40 +111037,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97111] = 15, - ACTIONS(684), 1, + [99574] = 15, + ACTIONS(675), 1, sym_string_start, - ACTIONS(2718), 1, + ACTIONS(2734), 1, anon_sym_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2736), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2738), 1, anon_sym_STAR_STAR, - ACTIONS(2724), 1, + ACTIONS(2740), 1, anon_sym_LBRACK, - ACTIONS(2726), 1, + ACTIONS(2742), 1, anon_sym_DASH, - ACTIONS(2730), 1, + ACTIONS(2746), 1, anon_sym_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2748), 1, sym_integer, - ACTIONS(2734), 1, + ACTIONS(2750), 1, sym_float, - ACTIONS(2796), 1, + ACTIONS(2822), 1, sym_identifier, - STATE(1863), 1, + STATE(1894), 1, sym_string, - STATE(2007), 1, + STATE(2102), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2798), 4, + ACTIONS(2826), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2037), 9, + STATE(2148), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109049,40 +111080,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97169] = 15, - ACTIONS(308), 1, + [99632] = 15, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2588), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2590), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2736), 1, + ACTIONS(2828), 1, sym_identifier, - STATE(1789), 1, + STATE(1879), 1, sym_string, - STATE(1905), 1, + STATE(2049), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2800), 4, + ACTIONS(2830), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1982), 9, + STATE(2081), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109092,40 +111123,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97227] = 15, - ACTIONS(709), 1, + [99690] = 15, + ACTIONS(787), 1, sym_string_start, - ACTIONS(2628), 1, + ACTIONS(2622), 1, anon_sym_LPAREN, - ACTIONS(2632), 1, + ACTIONS(2624), 1, anon_sym_STAR, - ACTIONS(2634), 1, + ACTIONS(2626), 1, anon_sym_STAR_STAR, - ACTIONS(2636), 1, + ACTIONS(2628), 1, anon_sym_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2632), 1, anon_sym_DASH, - ACTIONS(2642), 1, + ACTIONS(2636), 1, anon_sym_LBRACE, - ACTIONS(2644), 1, + ACTIONS(2638), 1, sym_integer, - ACTIONS(2646), 1, + ACTIONS(2640), 1, sym_float, - ACTIONS(2792), 1, + ACTIONS(2828), 1, sym_identifier, - STATE(1886), 1, + STATE(1879), 1, sym_string, - STATE(2111), 1, + STATE(2049), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 4, + ACTIONS(2832), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2055), 9, + STATE(2087), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109135,77 +111166,83 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97285] = 9, - ACTIONS(2809), 1, - anon_sym_EQ, - ACTIONS(2811), 1, - anon_sym_not, - ACTIONS(2814), 1, - anon_sym_is, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, + [99748] = 15, + ACTIONS(721), 1, + sym_string_start, + ACTIONS(2646), 1, + anon_sym_LPAREN, + ACTIONS(2650), 1, + anon_sym_STAR, + ACTIONS(2652), 1, + anon_sym_STAR_STAR, + ACTIONS(2654), 1, + anon_sym_LBRACK, + ACTIONS(2656), 1, + anon_sym_DASH, + ACTIONS(2660), 1, + anon_sym_LBRACE, + ACTIONS(2662), 1, + sym_integer, + ACTIONS(2664), 1, + sym_float, + ACTIONS(2796), 1, + sym_identifier, + STATE(1923), 1, + sym_string, + STATE(2151), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2817), 2, - anon_sym_LT, - anon_sym_GT, - STATE(873), 2, - sym__not_in, - sym__is_not, - ACTIONS(2806), 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(2804), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [97331] = 15, - ACTIONS(684), 1, + ACTIONS(2834), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2047), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [99806] = 15, + ACTIONS(383), 1, sym_string_start, - ACTIONS(2718), 1, + ACTIONS(2596), 1, anon_sym_LPAREN, - ACTIONS(2720), 1, + ACTIONS(2598), 1, anon_sym_STAR, - ACTIONS(2722), 1, + ACTIONS(2604), 1, anon_sym_STAR_STAR, - ACTIONS(2724), 1, + ACTIONS(2606), 1, anon_sym_LBRACK, - ACTIONS(2726), 1, + ACTIONS(2608), 1, anon_sym_DASH, - ACTIONS(2730), 1, + ACTIONS(2612), 1, anon_sym_LBRACE, - ACTIONS(2732), 1, + ACTIONS(2614), 1, sym_integer, - ACTIONS(2734), 1, + ACTIONS(2616), 1, sym_float, - ACTIONS(2796), 1, + ACTIONS(2752), 1, sym_identifier, - STATE(1863), 1, + STATE(1854), 1, sym_string, - STATE(2007), 1, + STATE(1940), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2820), 4, + ACTIONS(2836), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2018), 9, + STATE(1960), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -109215,104 +111252,102 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97389] = 9, - ACTIONS(2809), 1, - anon_sym_as, - ACTIONS(2811), 1, + [99864] = 9, + ACTIONS(2805), 1, + anon_sym_EQ, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2825), 1, + ACTIONS(2841), 1, anon_sym_is, - STATE(1561), 1, + STATE(1604), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2828), 2, + ACTIONS(2844), 2, anon_sym_LT, anon_sym_GT, - STATE(919), 2, + STATE(932), 2, sym__not_in, sym__is_not, - ACTIONS(2822), 6, + ACTIONS(2838), 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(2804), 10, + ACTIONS(2800), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97434] = 9, - ACTIONS(2124), 1, + [99908] = 9, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2158), 1, + ACTIONS(2417), 1, anon_sym_is, - ACTIONS(2788), 1, - anon_sym_as, - STATE(1561), 1, + ACTIONS(2818), 1, + anon_sym_EQ, + STATE(1604), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2160), 2, + ACTIONS(2419), 2, anon_sym_LT, anon_sym_GT, - STATE(919), 2, + STATE(932), 2, sym__not_in, sym__is_not, - ACTIONS(2142), 6, + ACTIONS(2401), 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(2786), 10, + ACTIONS(2816), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_else, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97479] = 9, - ACTIONS(2809), 1, + [99952] = 9, + ACTIONS(2805), 1, anon_sym_EQ, - ACTIONS(2811), 1, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2834), 1, + ACTIONS(2850), 1, anon_sym_is, - STATE(1563), 1, + STATE(1606), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2837), 2, + ACTIONS(2853), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(903), 2, sym__not_in, sym__is_not, - ACTIONS(2831), 6, + ACTIONS(2847), 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(2804), 9, + ACTIONS(2800), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -109322,32 +111357,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97523] = 9, - ACTIONS(2124), 1, + [99996] = 9, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2406), 1, + ACTIONS(2389), 1, anon_sym_is, - ACTIONS(2788), 1, + ACTIONS(2818), 1, anon_sym_EQ, - STATE(1563), 1, + STATE(1606), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2408), 2, + ACTIONS(2391), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(903), 2, sym__not_in, sym__is_not, - ACTIONS(2390), 6, + ACTIONS(2373), 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(2786), 9, + ACTIONS(2816), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -109357,136 +111392,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97567] = 9, - ACTIONS(2809), 1, - anon_sym_EQ, - ACTIONS(2811), 1, + [100040] = 9, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2843), 1, + ACTIONS(2276), 1, anon_sym_is, - STATE(1565), 1, + ACTIONS(2818), 1, + anon_sym_EQ, + STATE(1609), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2846), 2, + ACTIONS(2278), 2, anon_sym_LT, anon_sym_GT, - STATE(936), 2, + STATE(879), 2, sym__not_in, sym__is_not, - ACTIONS(2840), 6, + ACTIONS(2260), 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(2804), 9, - anon_sym_DOT, + ACTIONS(2816), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97611] = 9, - ACTIONS(2124), 1, + sym_type_conversion, + [100083] = 9, + ACTIONS(2805), 1, + anon_sym_EQ, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2374), 1, + ACTIONS(2859), 1, anon_sym_is, - ACTIONS(2788), 1, - anon_sym_EQ, - STATE(1565), 1, + STATE(1609), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2376), 2, + ACTIONS(2862), 2, anon_sym_LT, anon_sym_GT, - STATE(936), 2, + STATE(879), 2, sym__not_in, sym__is_not, - ACTIONS(2358), 6, + ACTIONS(2856), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 9, - anon_sym_DOT, + ACTIONS(2800), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97655] = 9, - ACTIONS(2124), 1, + sym_type_conversion, + [100126] = 9, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2314), 1, + ACTIONS(2240), 1, anon_sym_is, - ACTIONS(2788), 1, - anon_sym_EQ, - STATE(1570), 1, + ACTIONS(2818), 1, + anon_sym_as, + STATE(1611), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2316), 2, + ACTIONS(2242), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(945), 2, sym__not_in, sym__is_not, - ACTIONS(2298), 6, + ACTIONS(2224), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2786), 8, + ACTIONS(2816), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97698] = 9, - ACTIONS(2124), 1, + [100169] = 9, + ACTIONS(2805), 1, + anon_sym_as, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2286), 1, + ACTIONS(2868), 1, anon_sym_is, - ACTIONS(2788), 1, - anon_sym_as, - STATE(1571), 1, + STATE(1611), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, + ACTIONS(2871), 2, anon_sym_LT, anon_sym_GT, - STATE(950), 2, + STATE(945), 2, sym__not_in, sym__is_not, - ACTIONS(2270), 6, + ACTIONS(2865), 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(2786), 8, + ACTIONS(2800), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -109495,30 +111528,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97741] = 8, - ACTIONS(2811), 1, + [100212] = 8, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2852), 1, + ACTIONS(2463), 1, anon_sym_is, - STATE(1569), 1, + STATE(1613), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2855), 2, + ACTIONS(2465), 2, anon_sym_LT, anon_sym_GT, - STATE(886), 2, + STATE(961), 2, sym__not_in, sym__is_not, - ACTIONS(2849), 6, + ACTIONS(2447), 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(2804), 9, + ACTIONS(2816), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -109528,154 +111561,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97782] = 9, - ACTIONS(2809), 1, - anon_sym_EQ, - ACTIONS(2811), 1, + [100253] = 8, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2861), 1, + ACTIONS(2877), 1, anon_sym_is, - STATE(1570), 1, + STATE(1613), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2864), 2, + ACTIONS(2880), 2, anon_sym_LT, anon_sym_GT, - STATE(901), 2, + STATE(961), 2, sym__not_in, sym__is_not, - ACTIONS(2858), 6, + ACTIONS(2874), 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(2804), 8, + ACTIONS(2800), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97825] = 9, - ACTIONS(2809), 1, - anon_sym_as, - ACTIONS(2811), 1, + [100294] = 9, + ACTIONS(2128), 1, anon_sym_not, - ACTIONS(2870), 1, + ACTIONS(2354), 1, anon_sym_is, - STATE(1571), 1, + ACTIONS(2818), 1, + anon_sym_as, + STATE(1621), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2873), 2, + ACTIONS(2356), 2, anon_sym_LT, anon_sym_GT, - STATE(950), 2, + STATE(909), 2, sym__not_in, sym__is_not, - ACTIONS(2867), 6, + ACTIONS(2338), 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(2804), 8, + ACTIONS(2816), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97868] = 8, - ACTIONS(2124), 1, - anon_sym_not, - ACTIONS(2452), 1, - anon_sym_is, - STATE(1569), 1, - aux_sym_comparison_operator_repeat1, + [100336] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2454), 2, - anon_sym_LT, - anon_sym_GT, - STATE(886), 2, - sym__not_in, - sym__is_not, - ACTIONS(2436), 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(2786), 9, - anon_sym_DOT, + ACTIONS(1566), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1575), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1561), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [97909] = 9, - ACTIONS(2809), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [100368] = 9, + ACTIONS(2805), 1, anon_sym_as, - ACTIONS(2811), 1, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2879), 1, + ACTIONS(2886), 1, anon_sym_is, - STATE(1573), 1, + STATE(1616), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2882), 2, + ACTIONS(2889), 2, anon_sym_LT, anon_sym_GT, - STATE(864), 2, + STATE(888), 2, sym__not_in, sym__is_not, - ACTIONS(2876), 6, + ACTIONS(2883), 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(2804), 7, - anon_sym_RPAREN, + ACTIONS(2800), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [97951] = 4, + [100410] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1612), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 5, + ACTIONS(1575), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1555), 14, + ACTIONS(1607), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109690,20 +111716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97983] = 4, + [100442] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 2, + ACTIONS(1676), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 5, + ACTIONS(1678), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1640), 14, + ACTIONS(1671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109718,20 +111744,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98015] = 4, + [100474] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 5, + ACTIONS(1647), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(257), 14, + ACTIONS(1640), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109746,87 +111772,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98047] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2887), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2885), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [98077] = 4, + [100506] = 9, + ACTIONS(2128), 1, + anon_sym_not, + ACTIONS(2326), 1, + anon_sym_is, + ACTIONS(2818), 1, + anon_sym_as, + STATE(1616), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1688), 5, + ACTIONS(2328), 2, + anon_sym_LT, + anon_sym_GT, + STATE(888), 2, + sym__not_in, + sym__is_not, + ACTIONS(2310), 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(2816), 7, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1681), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98109] = 9, - ACTIONS(2124), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [100548] = 9, + ACTIONS(2805), 1, + anon_sym_as, + ACTIONS(2807), 1, anon_sym_not, - ACTIONS(2342), 1, + ACTIONS(2895), 1, anon_sym_is, - ACTIONS(2788), 1, - anon_sym_as, - STATE(1573), 1, + STATE(1621), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2344), 2, + ACTIONS(2898), 2, anon_sym_LT, anon_sym_GT, - STATE(864), 2, + STATE(909), 2, sym__not_in, sym__is_not, - ACTIONS(2326), 6, + ACTIONS(2892), 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(2786), 7, + ACTIONS(2800), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -109834,48 +111838,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [98151] = 4, + [100590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(2903), 10, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1651), 14, - anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2901), 11, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100620] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2907), 10, + sym_string_start, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98183] = 4, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2905), 11, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_type, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [100650] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 5, + ACTIONS(346), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(257), 14, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109890,97 +111920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98215] = 3, + [100682] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2891), 10, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(2889), 11, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_type, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [98245] = 4, - ACTIONS(2895), 1, - anon_sym_COMMA, - STATE(1583), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2893), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98275] = 4, - ACTIONS(2898), 1, - anon_sym_COMMA, - STATE(1583), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(971), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98305] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 3, - anon_sym_RPAREN, + ACTIONS(346), 5, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109995,18 +111948,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98335] = 4, + [100714] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 3, + ACTIONS(631), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110021,18 +111974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98365] = 4, + [100744] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2900), 3, + ACTIONS(1353), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1555), 14, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110047,18 +112000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98395] = 4, + [100774] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 3, + ACTIONS(1353), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110073,18 +112026,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98425] = 4, + [100804] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 3, + ACTIONS(631), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110099,18 +112052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98455] = 4, + [100834] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 3, + ACTIONS(2909), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1555), 14, + ACTIONS(1561), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110125,39 +112078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98485] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(300), 2, + [100864] = 4, + ACTIONS(2913), 1, anon_sym_COMMA, - anon_sym_in, - ACTIONS(257), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98514] = 2, + STATE(1631), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 18, + ACTIONS(2911), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -110173,17 +112104,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98539] = 4, + [100894] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(1622), 3, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(257), 14, + anon_sym_COLON, + ACTIONS(1561), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110198,14 +112130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98568] = 2, + [100924] = 4, + ACTIONS(2916), 1, + anon_sym_COMMA, + STATE(1631), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 18, + ACTIONS(927), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -110221,42 +112156,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98593] = 4, + [100954] = 13, + ACTIONS(2252), 1, + anon_sym_DOT, + ACTIONS(2264), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2411), 1, + anon_sym_PIPE, + ACTIONS(2413), 1, + anon_sym_AMP, + ACTIONS(2415), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(257), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2399), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98622] = 4, + [101001] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1645), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 14, + ACTIONS(346), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110271,17 +112215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98651] = 4, + [101030] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 2, - anon_sym_RPAREN, + ACTIONS(346), 2, anon_sym_COMMA, - ACTIONS(1555), 14, + anon_sym_RBRACK, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110296,17 +112240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98680] = 4, + [101059] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 2, - anon_sym_RPAREN, + ACTIONS(1353), 2, anon_sym_COMMA, - ACTIONS(1681), 14, + anon_sym_COLON, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110321,17 +112265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98709] = 4, + [101088] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, - anon_sym_RPAREN, + ACTIONS(1353), 2, anon_sym_COMMA, - ACTIONS(1651), 14, + anon_sym_COLON, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110346,17 +112290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98738] = 4, + [101117] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1575), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1612), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1619), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1555), 14, + ACTIONS(1607), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110371,17 +112315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98767] = 4, + [101146] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 2, + ACTIONS(1575), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(257), 14, + anon_sym_RBRACK, + ACTIONS(1561), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110396,17 +112340,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98796] = 4, + [101175] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2918), 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, + [101200] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1407), 2, + ACTIONS(2909), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(1561), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110421,17 +112388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98825] = 4, + [101229] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1676), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2900), 2, + ACTIONS(1678), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1555), 14, + anon_sym_RBRACK, + ACTIONS(1671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110446,17 +112413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98854] = 4, + [101258] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1645), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 14, + ACTIONS(631), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110471,17 +112438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98883] = 4, + [101287] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 2, + ACTIONS(1647), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1555), 14, + ACTIONS(1640), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110496,17 +112463,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98912] = 4, + [101316] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2911), 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, + [101341] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1686), 2, + ACTIONS(1575), 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, + [101366] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 2, + ACTIONS(346), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1681), 14, + anon_sym_in, + ACTIONS(311), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110521,17 +112534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98941] = 4, + [101395] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(1676), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1678), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1651), 14, + anon_sym_in, + ACTIONS(1671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110546,17 +112559,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98970] = 4, + [101424] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(1575), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(257), 14, + ACTIONS(1612), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1607), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110571,17 +112584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98999] = 4, + [101453] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1645), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1640), 14, + ACTIONS(1622), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1561), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110596,17 +112609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99028] = 4, + [101482] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 2, + ACTIONS(1647), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1555), 14, + ACTIONS(1640), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110621,40 +112634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99057] = 2, + [101511] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 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, - [99082] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1686), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1688), 2, + ACTIONS(1575), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(1681), 14, + ACTIONS(1561), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110669,36 +112659,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99111] = 4, + [101540] = 13, + ACTIONS(2298), 1, + anon_sym_DOT, + ACTIONS(2300), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2411), 1, + anon_sym_PIPE, + ACTIONS(2413), 1, + anon_sym_AMP, + ACTIONS(2415), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1651), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2399), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99140] = 2, + [101587] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 18, + ACTIONS(2920), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -110717,51 +112716,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99165] = 13, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, - ACTIONS(2378), 1, - anon_sym_DOT, - ACTIONS(2380), 1, - anon_sym_LBRACK, + [101612] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(1575), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1612), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(1607), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99212] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [101641] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1566), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 2, + ACTIONS(1575), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(257), 14, + ACTIONS(1561), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110776,42 +112766,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99241] = 4, + [101670] = 13, + ACTIONS(2393), 1, + anon_sym_DOT, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + anon_sym_STAR_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACK, + ACTIONS(2411), 1, + anon_sym_PIPE, + ACTIONS(2413), 1, + anon_sym_AMP, + ACTIONS(2415), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(257), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2399), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2409), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1422), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2407), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99270] = 4, + [101717] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1676), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(1678), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(257), 14, + ACTIONS(1671), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110826,17 +112825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99299] = 4, + [101746] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(259), 2, + ACTIONS(1645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(300), 2, + ACTIONS(1647), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(257), 14, + ACTIONS(1640), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110851,459 +112850,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99328] = 13, - ACTIONS(2350), 1, + [101775] = 13, + ACTIONS(2106), 1, anon_sym_DOT, - ACTIONS(2352), 1, + ACTIONS(2120), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2362), 1, - anon_sym_LBRACK, - ACTIONS(2368), 1, + ACTIONS(2411), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2413), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2415), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99375] = 13, - ACTIONS(2102), 1, + [101822] = 13, + ACTIONS(2330), 1, anon_sym_DOT, - ACTIONS(2116), 1, + ACTIONS(2342), 1, anon_sym_LBRACK, - ACTIONS(2352), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2411), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2413), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2415), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99422] = 13, - ACTIONS(2318), 1, - anon_sym_DOT, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2352), 1, + [101869] = 13, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2411), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2413), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2415), 1, anon_sym_CARET, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99469] = 13, - ACTIONS(2352), 1, + [101916] = 13, + ACTIONS(2365), 1, + anon_sym_DOT, + ACTIONS(2377), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2411), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2413), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2415), 1, anon_sym_CARET, - ACTIONS(2906), 1, - anon_sym_DOT, - ACTIONS(2908), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99516] = 13, - ACTIONS(2290), 1, - anon_sym_DOT, - ACTIONS(2302), 1, - anon_sym_LBRACK, - ACTIONS(2352), 1, + [101963] = 13, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2411), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2413), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2415), 1, anon_sym_CARET, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2451), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99563] = 13, - ACTIONS(2352), 1, + [102010] = 13, + ACTIONS(2302), 1, + anon_sym_DOT, + ACTIONS(2314), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2411), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2413), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2415), 1, anon_sym_CARET, - ACTIONS(2382), 1, - anon_sym_DOT, - ACTIONS(2394), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99610] = 13, - ACTIONS(2352), 1, + [102057] = 13, + ACTIONS(2216), 1, + anon_sym_DOT, + ACTIONS(2228), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + ACTIONS(2403), 1, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + ACTIONS(2411), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2413), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2415), 1, anon_sym_CARET, - ACTIONS(2428), 1, - anon_sym_DOT, - ACTIONS(2440), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(2397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(2399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2366), 2, + ACTIONS(2409), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1405), 2, + STATE(1422), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2364), 3, + ACTIONS(2407), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99657] = 13, - ACTIONS(2134), 1, + [102104] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(313), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(346), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(311), 14, anon_sym_DOT, - ACTIONS(2146), 1, - anon_sym_LBRACK, - ACTIONS(2352), 1, anon_sym_LPAREN, - ACTIONS(2360), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2368), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2370), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2372), 1, anon_sym_CARET, + anon_sym_LT_LT, + [102133] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(346), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(311), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99704] = 13, - ACTIONS(2262), 1, - anon_sym_DOT, - ACTIONS(2274), 1, - anon_sym_LBRACK, - ACTIONS(2352), 1, - anon_sym_LPAREN, - ACTIONS(2360), 1, - anon_sym_STAR_STAR, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, anon_sym_AMP, - ACTIONS(2372), 1, anon_sym_CARET, + anon_sym_LT_LT, + [102162] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2354), 2, + ACTIONS(313), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2356), 2, + ACTIONS(346), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(311), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2366), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1405), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2364), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99751] = 2, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [102191] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 17, + ACTIONS(313), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(631), 2, 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, - [99775] = 13, - ACTIONS(2910), 1, + ACTIONS(311), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [102220] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2916), 1, + ACTIONS(2932), 1, anon_sym_COLON, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2745), 1, - sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, + STATE(2796), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99821] = 4, - ACTIONS(2922), 1, - anon_sym_COMMA, - STATE(1640), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(971), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99849] = 13, - ACTIONS(2910), 1, + [102266] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2924), 1, + ACTIONS(2938), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2725), 1, - sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, + STATE(2844), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99895] = 6, - ACTIONS(2926), 1, + [102312] = 6, + ACTIONS(2940), 1, anon_sym_COMMA, - ACTIONS(2928), 1, + ACTIONS(2942), 1, anon_sym_COLON, - ACTIONS(2930), 1, + ACTIONS(2944), 1, anon_sym_EQ, - STATE(1631), 1, + STATE(1685), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2932), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [99927] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1571), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + ACTIONS(2946), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111317,110 +113280,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99951] = 13, - ACTIONS(2910), 1, + [102344] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2934), 1, + ACTIONS(2948), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2731), 1, - sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, + STATE(2757), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99997] = 13, - ACTIONS(2910), 1, + [102390] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_SLASH, ACTIONS(2936), 1, + anon_sym_SLASH, + ACTIONS(2950), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2713), 1, - sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, + STATE(2828), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100043] = 13, - ACTIONS(2910), 1, + [102436] = 6, + ACTIONS(2942), 1, + anon_sym_COLON, + ACTIONS(2944), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_COMMA, + STATE(1633), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 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, + [102468] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2938), 1, + ACTIONS(2954), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2765), 1, + STATE(2663), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100089] = 2, + [102514] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 17, + ACTIONS(2920), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -111438,18 +113427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100113] = 5, - ACTIONS(2928), 1, - anon_sym_COLON, - ACTIONS(2930), 1, - anon_sym_EQ, + [102538] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2932), 13, + ACTIONS(2911), 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, @@ -111463,16 +113449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100143] = 4, - ACTIONS(2942), 1, - anon_sym_COMMA, - STATE(1640), 1, - aux_sym__patterns_repeat1, + [102562] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 15, + ACTIONS(1575), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111487,80 +113471,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100171] = 13, - ACTIONS(2910), 1, + [102586] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2945), 1, + ACTIONS(2956), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2681), 1, - sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, + STATE(2760), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100217] = 13, - ACTIONS(2910), 1, + [102632] = 5, + ACTIONS(2942), 1, + anon_sym_COLON, + ACTIONS(2944), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2958), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2946), 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, + [102662] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2947), 1, + ACTIONS(2960), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2608), 1, - sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, + STATE(2777), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100263] = 2, + [102708] = 4, + ACTIONS(2962), 1, + anon_sym_COMMA, + STATE(1690), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 17, - anon_sym_COMMA, + ACTIONS(927), 15, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -111575,204 +113586,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100287] = 13, - ACTIONS(2910), 1, + [102736] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2949), 1, + ACTIONS(2964), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2775), 1, - sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, + STATE(2823), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100333] = 13, - ACTIONS(2910), 1, - sym_identifier, - ACTIONS(2912), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_STAR, - ACTIONS(2918), 1, - anon_sym_STAR_STAR, - ACTIONS(2920), 1, - anon_sym_SLASH, - ACTIONS(2951), 1, - anon_sym_COLON, - STATE(2299), 1, - sym_parameter, - STATE(2301), 1, - sym_tuple_pattern, - STATE(2703), 1, - sym_lambda_parameters, - STATE(2786), 1, - sym__parameters, + [102782] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2507), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100379] = 13, - ACTIONS(2910), 1, + ACTIONS(2918), 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, + [102806] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2953), 1, + ACTIONS(2966), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2720), 1, + STATE(2654), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100425] = 13, - ACTIONS(2910), 1, + [102852] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2955), 1, + ACTIONS(2968), 1, anon_sym_COLON, - STATE(2299), 1, + STATE(2532), 1, sym_parameter, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2701), 1, + STATE(2653), 1, sym_lambda_parameters, - STATE(2786), 1, + STATE(2697), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100471] = 6, - ACTIONS(2928), 1, - anon_sym_COLON, - ACTIONS(2930), 1, - anon_sym_EQ, - ACTIONS(2957), 1, + [102898] = 4, + ACTIONS(2970), 1, anon_sym_COMMA, - STATE(1584), 1, + STATE(1690), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2932), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [100503] = 12, - ACTIONS(2959), 1, - sym_identifier, - ACTIONS(2961), 1, - anon_sym_LPAREN, - ACTIONS(2963), 1, - anon_sym_RPAREN, - ACTIONS(2965), 1, - anon_sym_STAR, - ACTIONS(2967), 1, - anon_sym_STAR_STAR, - ACTIONS(2969), 1, - anon_sym_SLASH, - STATE(2306), 1, - sym_parameter, - STATE(2360), 1, - sym_tuple_pattern, - STATE(2610), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2385), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2501), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100546] = 4, - ACTIONS(2928), 1, - anon_sym_COLON, - ACTIONS(2930), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2932), 13, + ACTIONS(2911), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111786,258 +113731,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100572] = 11, - ACTIONS(2959), 1, + [102926] = 13, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2967), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2969), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2971), 1, - anon_sym_RPAREN, - STATE(2360), 1, - sym_tuple_pattern, - STATE(2548), 1, + ACTIONS(2973), 1, + anon_sym_COLON, + STATE(2532), 1, sym_parameter, + STATE(2534), 1, + sym_tuple_pattern, + STATE(2697), 1, + sym__parameters, + STATE(2799), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2385), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2501), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100612] = 11, - ACTIONS(2959), 1, + [102972] = 12, + ACTIONS(2975), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2979), 1, + anon_sym_RPAREN, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2967), 1, + ACTIONS(2983), 1, anon_sym_STAR_STAR, - ACTIONS(2969), 1, + ACTIONS(2985), 1, anon_sym_SLASH, - ACTIONS(2973), 1, - anon_sym_RPAREN, - STATE(2360), 1, - sym_tuple_pattern, - STATE(2548), 1, + STATE(2496), 1, sym_parameter, + STATE(2497), 1, + sym_tuple_pattern, + STATE(2749), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2385), 2, + STATE(2498), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2501), 5, + STATE(2602), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100652] = 11, - ACTIONS(2910), 1, + [103015] = 11, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - ACTIONS(2971), 1, + ACTIONS(2987), 1, anon_sym_COLON, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2510), 1, + STATE(2567), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100692] = 11, - ACTIONS(2910), 1, + [103055] = 11, + ACTIONS(2975), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2977), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2981), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2983), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2985), 1, anon_sym_SLASH, - ACTIONS(2973), 1, - anon_sym_COLON, - STATE(2301), 1, + ACTIONS(2987), 1, + anon_sym_RPAREN, + STATE(2497), 1, sym_tuple_pattern, - STATE(2510), 1, + STATE(2555), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2498), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2602), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100732] = 10, - ACTIONS(2959), 1, + [103095] = 11, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2961), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2967), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2969), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - STATE(2360), 1, + ACTIONS(2989), 1, + anon_sym_COLON, + STATE(2534), 1, sym_tuple_pattern, - STATE(2548), 1, + STATE(2567), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2385), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2501), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100769] = 11, + [103135] = 4, + ACTIONS(2942), 1, + anon_sym_COLON, + ACTIONS(2944), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2946), 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, + [103161] = 11, + ACTIONS(2975), 1, + sym_identifier, ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, + anon_sym_LPAREN, ACTIONS(2981), 1, - anon_sym_async, + anon_sym_STAR, ACTIONS(2983), 1, - anon_sym_for, + anon_sym_STAR_STAR, ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - STATE(1861), 1, - sym_for_in_clause, - STATE(2451), 1, - aux_sym__collection_elements_repeat1, - STATE(2732), 1, - sym__comprehension_clauses, + anon_sym_SLASH, + ACTIONS(2989), 1, + anon_sym_RPAREN, + STATE(2497), 1, + sym_tuple_pattern, + STATE(2555), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [100808] = 10, - ACTIONS(2910), 1, + STATE(2498), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2602), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [103201] = 10, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2912), 1, + ACTIONS(2928), 1, anon_sym_LPAREN, - ACTIONS(2914), 1, + ACTIONS(2930), 1, anon_sym_STAR, - ACTIONS(2918), 1, + ACTIONS(2934), 1, anon_sym_STAR_STAR, - ACTIONS(2920), 1, + ACTIONS(2936), 1, anon_sym_SLASH, - STATE(2301), 1, + STATE(2534), 1, sym_tuple_pattern, - STATE(2510), 1, + STATE(2567), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2513), 2, + STATE(2637), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2507), 5, + STATE(2639), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100845] = 13, - ACTIONS(2989), 1, - anon_sym_COMMA, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(2995), 1, - anon_sym_COLON, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3001), 1, - anon_sym_RBRACE, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, - STATE(1860), 1, - sym_for_in_clause, - STATE(2457), 1, - aux_sym__collection_elements_repeat1, - STATE(2766), 1, - sym__comprehension_clauses, + [103238] = 10, + ACTIONS(2975), 1, + sym_identifier, + ACTIONS(2977), 1, + anon_sym_LPAREN, + ACTIONS(2981), 1, + anon_sym_STAR, + ACTIONS(2983), 1, + anon_sym_STAR_STAR, + ACTIONS(2985), 1, + anon_sym_SLASH, + STATE(2497), 1, + sym_tuple_pattern, + STATE(2555), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100886] = 6, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, + STATE(2498), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2602), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [103275] = 3, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3015), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3007), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100913] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 12, + ACTIONS(2991), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112048,88 +114004,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [100932] = 4, - ACTIONS(3013), 1, + [103296] = 6, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 10, + ACTIONS(2995), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100955] = 2, + [103323] = 5, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3005), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 12, + ACTIONS(3003), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [103348] = 6, + ACTIONS(2993), 1, anon_sym_and, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, anon_sym_or, - [100974] = 3, - ACTIONS(3013), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 11, + ACTIONS(3008), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [100995] = 6, - ACTIONS(3009), 1, + [103375] = 13, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3016), 1, + anon_sym_COLON, + ACTIONS(3018), 1, + anon_sym_async, + ACTIONS(3020), 1, + anon_sym_for, + ACTIONS(3022), 1, + anon_sym_RBRACE, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3026), 1, anon_sym_or, + STATE(1887), 1, + sym_for_in_clause, + STATE(2542), 1, + aux_sym__collection_elements_repeat1, + STATE(2689), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101022] = 2, + [103416] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 12, + ACTIONS(2991), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -112142,572 +114112,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101041] = 6, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3025), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [101068] = 13, - ACTIONS(2989), 1, + [103435] = 13, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3016), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2542), 1, aux_sym__collection_elements_repeat1, - STATE(2649), 1, + STATE(2843), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101109] = 13, - ACTIONS(2989), 1, + [103476] = 13, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3016), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2542), 1, aux_sym__collection_elements_repeat1, - STATE(2642), 1, + STATE(2686), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101150] = 13, - ACTIONS(2989), 1, + [103517] = 4, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3028), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2991), 1, anon_sym_as, - ACTIONS(2993), 1, anon_sym_if, - ACTIONS(2995), 1, anon_sym_COLON, - ACTIONS(2997), 1, + anon_sym_EQ, + anon_sym_PIPE, + [103540] = 13, + ACTIONS(3010), 1, + anon_sym_COMMA, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3014), 1, + anon_sym_if, + ACTIONS(3016), 1, + anon_sym_COLON, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2542), 1, aux_sym__collection_elements_repeat1, - STATE(2685), 1, + STATE(2774), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101191] = 13, - ACTIONS(2989), 1, + [103581] = 13, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3016), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2542), 1, aux_sym__collection_elements_repeat1, - STATE(2620), 1, + STATE(2782), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101232] = 13, - ACTIONS(2989), 1, + [103622] = 6, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3030), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103649] = 13, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3016), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2542), 1, aux_sym__collection_elements_repeat1, - STATE(2728), 1, + STATE(2670), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101273] = 13, - ACTIONS(2989), 1, + [103690] = 13, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3016), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2542), 1, aux_sym__collection_elements_repeat1, - STATE(2709), 1, + STATE(2716), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101314] = 13, - ACTIONS(2989), 1, + [103731] = 13, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(2991), 1, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(2995), 1, + ACTIONS(3016), 1, anon_sym_COLON, - ACTIONS(2997), 1, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3001), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2457), 1, + STATE(2542), 1, aux_sym__collection_elements_repeat1, - STATE(2615), 1, + STATE(2819), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101355] = 5, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, - anon_sym_or, - ACTIONS(3029), 1, - anon_sym_as, + [103772] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 9, + ACTIONS(3032), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [101380] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3038), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1698), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101410] = 12, - ACTIONS(3040), 1, - anon_sym_RPAREN, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, anon_sym_and, - ACTIONS(3054), 1, anon_sym_or, - STATE(1867), 1, - sym_for_in_clause, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - STATE(2771), 1, - sym__comprehension_clauses, + [103791] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101448] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3056), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1678), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101478] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3058), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1726), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101508] = 12, - ACTIONS(3042), 1, + ACTIONS(2104), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3060), 1, - anon_sym_RPAREN, - STATE(1867), 1, - sym_for_in_clause, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - STATE(2769), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101546] = 12, - ACTIONS(3044), 1, anon_sym_as, - ACTIONS(3046), 1, anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3054), 1, anon_sym_or, - ACTIONS(3062), 1, - anon_sym_RPAREN, - ACTIONS(3064), 1, + [103810] = 12, + ACTIONS(3022), 1, + anon_sym_RBRACK, + ACTIONS(3034), 1, anon_sym_COMMA, - STATE(1867), 1, - sym_for_in_clause, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - STATE(2707), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101584] = 12, - ACTIONS(3044), 1, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3040), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3042), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3046), 1, anon_sym_or, - ACTIONS(3067), 1, - anon_sym_RPAREN, - ACTIONS(3069), 1, - anon_sym_COMMA, - STATE(1867), 1, + STATE(1906), 1, sym_for_in_clause, - STATE(2427), 1, - aux_sym_argument_list_repeat1, - STATE(2769), 1, + STATE(2289), 1, + aux_sym__collection_elements_repeat1, + STATE(2768), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101622] = 8, + [103848] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3071), 1, + ACTIONS(3054), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1684), 3, + STATE(1723), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101652] = 12, - ACTIONS(2977), 1, + [103878] = 12, + ACTIONS(3056), 1, + anon_sym_RPAREN, + ACTIONS(3058), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1861), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, - STATE(2739), 1, + STATE(2762), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101690] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3075), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1726), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101720] = 12, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, + [103916] = 12, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3062), 1, + ACTIONS(3072), 1, anon_sym_RPAREN, - STATE(1867), 1, + ACTIONS(3074), 1, + anon_sym_COMMA, + STATE(1926), 1, sym_for_in_clause, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - STATE(2707), 1, + STATE(2394), 1, + aux_sym_argument_list_repeat1, + STATE(2762), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101758] = 12, - ACTIONS(3044), 1, + [103954] = 12, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3077), 1, + ACTIONS(3076), 1, anon_sym_RPAREN, - ACTIONS(3079), 1, + ACTIONS(3078), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2266), 1, + STATE(2359), 1, aux_sym_argument_list_repeat1, - STATE(2707), 1, + STATE(2675), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [103992] = 12, + ACTIONS(3022), 1, + anon_sym_RBRACK, + ACTIONS(3034), 1, + anon_sym_COMMA, + ACTIONS(3036), 1, + anon_sym_as, + ACTIONS(3038), 1, + anon_sym_if, + ACTIONS(3040), 1, + anon_sym_async, + ACTIONS(3042), 1, + anon_sym_for, + ACTIONS(3044), 1, + anon_sym_and, + ACTIONS(3046), 1, + anon_sym_or, + STATE(1906), 1, + sym_for_in_clause, + STATE(2289), 1, + aux_sym__collection_elements_repeat1, + STATE(2701), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101796] = 8, + [104030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3080), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3086), 1, anon_sym_BSLASH, - ACTIONS(3081), 1, + ACTIONS(3089), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3083), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1688), 3, + STATE(1723), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101826] = 8, + [104060] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3083), 1, + ACTIONS(3091), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, @@ -112715,1036 +114578,987 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101856] = 12, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3085), 1, - anon_sym_RPAREN, - STATE(1867), 1, - sym_for_in_clause, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - STATE(2598), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101894] = 12, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3087), 1, - anon_sym_RPAREN, - ACTIONS(3089), 1, - anon_sym_COMMA, - STATE(1867), 1, - sym_for_in_clause, - STATE(2308), 1, - aux_sym_argument_list_repeat1, - STATE(2598), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101932] = 8, + [104090] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3091), 1, + ACTIONS(3093), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1692), 3, + STATE(1723), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101962] = 8, + [104120] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3093), 1, + ACTIONS(3095), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1723), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101992] = 12, - ACTIONS(3042), 1, + [104150] = 12, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3095), 1, + ACTIONS(3097), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, - STATE(2721), 1, + STATE(2803), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102030] = 12, - ACTIONS(3044), 1, + [104188] = 12, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3097), 1, - anon_sym_RPAREN, ACTIONS(3099), 1, + anon_sym_RPAREN, + ACTIONS(3101), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2349), 1, + STATE(2420), 1, aux_sym_argument_list_repeat1, - STATE(2721), 1, + STATE(2803), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102068] = 6, - ACTIONS(2977), 1, + [104226] = 12, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(2985), 1, + ACTIONS(3064), 1, + anon_sym_async, + ACTIONS(3066), 1, + anon_sym_for, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3070), 1, anon_sym_or, + ACTIONS(3103), 1, + anon_sym_RPAREN, + ACTIONS(3105), 1, + anon_sym_COMMA, + STATE(1926), 1, + sym_for_in_clause, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, + STATE(2798), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102094] = 8, + [104264] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3101), 1, + ACTIONS(3108), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1713), 3, + STATE(1747), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102124] = 3, - ACTIONS(2114), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2100), 10, - anon_sym_DOT, + [104294] = 12, + ACTIONS(3022), 1, + anon_sym_RBRACK, + ACTIONS(3034), 1, anon_sym_COMMA, + ACTIONS(3036), 1, + anon_sym_as, + ACTIONS(3038), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(3040), 1, anon_sym_async, + ACTIONS(3042), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(3044), 1, anon_sym_and, + ACTIONS(3046), 1, anon_sym_or, - [102144] = 8, + STATE(1906), 1, + sym_for_in_clause, + STATE(2289), 1, + aux_sym__collection_elements_repeat1, + STATE(2808), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104332] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3103), 1, + ACTIONS(3110), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1743), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102174] = 12, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3105), 1, - anon_sym_RPAREN, - STATE(1867), 1, - sym_for_in_clause, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - STATE(2759), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102212] = 12, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3107), 1, - anon_sym_RPAREN, - ACTIONS(3109), 1, - anon_sym_COMMA, - STATE(1867), 1, - sym_for_in_clause, - STATE(2377), 1, - aux_sym_argument_list_repeat1, - STATE(2759), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102250] = 8, + [104362] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3111), 1, + ACTIONS(3112), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1702), 3, + STATE(1736), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102280] = 8, + [104392] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3113), 1, + ACTIONS(3114), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1739), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102310] = 12, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_for, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, - ACTIONS(3115), 1, - anon_sym_RPAREN, - STATE(1867), 1, - sym_for_in_clause, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - STATE(2693), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102348] = 12, - ACTIONS(3044), 1, + [104422] = 12, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3117), 1, + ACTIONS(3116), 1, anon_sym_RPAREN, - ACTIONS(3119), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2408), 1, aux_sym_argument_list_repeat1, - STATE(2693), 1, + STATE(2820), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102386] = 3, - ACTIONS(3121), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3017), 10, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [102406] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3123), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1707), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102436] = 8, + [104460] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3125), 1, + ACTIONS(3120), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1723), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102466] = 12, - ACTIONS(3042), 1, + [104490] = 12, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3044), 1, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3127), 1, + ACTIONS(3103), 1, anon_sym_RPAREN, - STATE(1867), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, - STATE(2611), 1, + STATE(2798), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102504] = 12, - ACTIONS(3044), 1, + [104528] = 12, + ACTIONS(3022), 1, + anon_sym_RBRACK, + ACTIONS(3034), 1, + anon_sym_COMMA, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3038), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3040), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3042), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3046), 1, anon_sym_or, - ACTIONS(3129), 1, - anon_sym_RPAREN, - ACTIONS(3131), 1, - anon_sym_COMMA, - STATE(1867), 1, + STATE(1906), 1, sym_for_in_clause, - STATE(2420), 1, - aux_sym_argument_list_repeat1, - STATE(2611), 1, + STATE(2289), 1, + aux_sym__collection_elements_repeat1, + STATE(2677), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102542] = 8, + [104566] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3133), 1, + ACTIONS(3122), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1711), 3, + STATE(1723), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102572] = 8, - ACTIONS(3), 1, + [104596] = 12, + ACTIONS(3060), 1, + anon_sym_as, + ACTIONS(3062), 1, + anon_sym_if, + ACTIONS(3064), 1, + anon_sym_async, + ACTIONS(3066), 1, + anon_sym_for, + ACTIONS(3068), 1, + anon_sym_and, + ACTIONS(3070), 1, + anon_sym_or, + ACTIONS(3124), 1, + anon_sym_RPAREN, + ACTIONS(3126), 1, + anon_sym_COMMA, + STATE(1926), 1, + sym_for_in_clause, + STATE(2486), 1, + aux_sym_argument_list_repeat1, + STATE(2756), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, - anon_sym_LBRACE, - ACTIONS(3036), 1, - anon_sym_BSLASH, - ACTIONS(3135), 1, - sym_string_end, - STATE(1807), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3034), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1726), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102602] = 12, - ACTIONS(2977), 1, + [104634] = 12, + ACTIONS(3058), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3001), 1, + ACTIONS(3128), 1, + anon_sym_RPAREN, + STATE(1926), 1, + sym_for_in_clause, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, + STATE(2767), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104672] = 12, + ACTIONS(3022), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3034), 1, anon_sym_COMMA, - STATE(1861), 1, + ACTIONS(3036), 1, + anon_sym_as, + ACTIONS(3038), 1, + anon_sym_if, + ACTIONS(3040), 1, + anon_sym_async, + ACTIONS(3042), 1, + anon_sym_for, + ACTIONS(3044), 1, + anon_sym_and, + ACTIONS(3046), 1, + anon_sym_or, + STATE(1906), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2289), 1, aux_sym__collection_elements_repeat1, - STATE(2637), 1, + STATE(2763), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102640] = 8, + [104710] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3137), 1, + ACTIONS(3130), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3034), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1723), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102670] = 12, - ACTIONS(2977), 1, + [104740] = 12, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3132), 1, + anon_sym_RPAREN, + ACTIONS(3134), 1, anon_sym_COMMA, - STATE(1861), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2451), 1, - aux_sym__collection_elements_repeat1, - STATE(2732), 1, + STATE(2446), 1, + aux_sym_argument_list_repeat1, + STATE(2767), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102708] = 6, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3025), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102734] = 12, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, - ACTIONS(2981), 1, - anon_sym_async, - ACTIONS(2983), 1, - anon_sym_for, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3001), 1, + [104778] = 12, + ACTIONS(3022), 1, anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(3034), 1, anon_sym_COMMA, - STATE(1861), 1, - sym_for_in_clause, - STATE(2451), 1, - aux_sym__collection_elements_repeat1, - STATE(2606), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [102772] = 5, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3139), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3027), 8, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102796] = 12, - ACTIONS(2977), 1, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3038), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(3040), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3042), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3046), 1, anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1861), 1, + STATE(1906), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2289), 1, aux_sym__collection_elements_repeat1, - STATE(2724), 1, + STATE(2804), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102834] = 12, - ACTIONS(2977), 1, + [104816] = 12, + ACTIONS(3058), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1861), 1, + ACTIONS(3136), 1, + anon_sym_RPAREN, + STATE(1926), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, - STATE(2761), 1, + STATE(2675), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102872] = 5, - ACTIONS(2985), 1, - anon_sym_and, - ACTIONS(2987), 1, - anon_sym_or, - ACTIONS(3142), 1, - anon_sym_as, - ACTIONS(3), 2, + [104854] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3019), 8, - anon_sym_DOT, + ACTIONS(3048), 1, + anon_sym_LBRACE, + ACTIONS(3052), 1, + anon_sym_BSLASH, + ACTIONS(3138), 1, + sym_string_end, + STATE(1825), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3050), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1723), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [104884] = 12, + ACTIONS(3058), 1, anon_sym_COMMA, + ACTIONS(3060), 1, + anon_sym_as, + ACTIONS(3062), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(3064), 1, anon_sym_async, + ACTIONS(3066), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102896] = 3, - ACTIONS(3144), 1, - anon_sym_as, + ACTIONS(3068), 1, + anon_sym_and, + ACTIONS(3070), 1, + anon_sym_or, + ACTIONS(3140), 1, + anon_sym_RPAREN, + STATE(1926), 1, + sym_for_in_clause, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, + STATE(2756), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 10, - anon_sym_DOT, + [104922] = 12, + ACTIONS(3022), 1, + anon_sym_RBRACK, + ACTIONS(3034), 1, anon_sym_COMMA, + ACTIONS(3036), 1, + anon_sym_as, + ACTIONS(3038), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(3040), 1, anon_sym_async, + ACTIONS(3042), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(3044), 1, anon_sym_and, + ACTIONS(3046), 1, anon_sym_or, - [102916] = 12, - ACTIONS(2977), 1, + STATE(1906), 1, + sym_for_in_clause, + STATE(2289), 1, + aux_sym__collection_elements_repeat1, + STATE(2839), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [104960] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3048), 1, + anon_sym_LBRACE, + ACTIONS(3052), 1, + anon_sym_BSLASH, + ACTIONS(3142), 1, + sym_string_end, + STATE(1825), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3050), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1753), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [104990] = 12, + ACTIONS(3022), 1, + anon_sym_RBRACK, + ACTIONS(3034), 1, + anon_sym_COMMA, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3038), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(3040), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3042), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3046), 1, anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1861), 1, + STATE(1906), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2289), 1, aux_sym__collection_elements_repeat1, - STATE(2698), 1, + STATE(2667), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102954] = 4, - ACTIONS(2985), 1, - anon_sym_and, + [105028] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3048), 1, + anon_sym_LBRACE, + ACTIONS(3052), 1, + anon_sym_BSLASH, ACTIONS(3144), 1, - anon_sym_as, - ACTIONS(3), 2, + sym_string_end, + STATE(1825), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3050), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1718), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105058] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3021), 9, - anon_sym_DOT, + ACTIONS(3048), 1, + anon_sym_LBRACE, + ACTIONS(3052), 1, + anon_sym_BSLASH, + ACTIONS(3146), 1, + sym_string_end, + STATE(1825), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3050), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1723), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105088] = 12, + ACTIONS(3058), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [102976] = 12, - ACTIONS(2977), 1, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(2985), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, - anon_sym_COMMA, - STATE(1861), 1, + ACTIONS(3148), 1, + anon_sym_RPAREN, + STATE(1926), 1, sym_for_in_clause, - STATE(2451), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, - STATE(2612), 1, + STATE(2666), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103014] = 12, - ACTIONS(3044), 1, + [105126] = 12, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3048), 1, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3146), 1, + ACTIONS(3150), 1, anon_sym_RPAREN, - ACTIONS(3148), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(1867), 1, + STATE(1926), 1, sym_for_in_clause, - STATE(2469), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, - STATE(2771), 1, + STATE(2666), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103052] = 8, + [105164] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3150), 1, + ACTIONS(3048), 1, anon_sym_LBRACE, - ACTIONS(3156), 1, + ACTIONS(3052), 1, anon_sym_BSLASH, - ACTIONS(3159), 1, + ACTIONS(3154), 1, sym_string_end, - STATE(1807), 2, + STATE(1825), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3153), 3, + ACTIONS(3050), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1726), 3, + STATE(1758), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [103082] = 6, - ACTIONS(2977), 1, + [105194] = 12, + ACTIONS(3058), 1, + anon_sym_COMMA, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(2985), 1, + ACTIONS(3064), 1, + anon_sym_async, + ACTIONS(3066), 1, + anon_sym_for, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3070), 1, anon_sym_or, + ACTIONS(3156), 1, + anon_sym_RPAREN, + STATE(1926), 1, + sym_for_in_clause, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, + STATE(2820), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, + [105232] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3048), 1, + anon_sym_LBRACE, + ACTIONS(3052), 1, + anon_sym_BSLASH, + ACTIONS(3158), 1, + sym_string_end, + STATE(1825), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3050), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1723), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105262] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3048), 1, + anon_sym_LBRACE, + ACTIONS(3052), 1, + anon_sym_BSLASH, + ACTIONS(3160), 1, + sym_string_end, + STATE(1825), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3050), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1725), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [105292] = 12, + ACTIONS(3060), 1, + anon_sym_as, + ACTIONS(3062), 1, + anon_sym_if, + ACTIONS(3064), 1, anon_sym_async, + ACTIONS(3066), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [103108] = 4, - ACTIONS(3161), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3070), 1, anon_sym_or, + ACTIONS(3162), 1, + anon_sym_RPAREN, + ACTIONS(3164), 1, + anon_sym_COMMA, + STATE(1926), 1, + sym_for_in_clause, + STATE(2316), 1, + aux_sym_argument_list_repeat1, + STATE(2798), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [103129] = 6, - ACTIONS(3009), 1, + [105330] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3172), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3030), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103154] = 2, + [105355] = 5, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, + ACTIONS(3174), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(3003), 7, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [105378] = 4, + ACTIONS(3170), 1, anon_sym_and, + ACTIONS(3172), 1, anon_sym_or, - [103171] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 6, + ACTIONS(3028), 8, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103196] = 5, - ACTIONS(3169), 1, - anon_sym_as, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, + [105399] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 7, + ACTIONS(2991), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103219] = 6, - ACTIONS(3172), 1, anon_sym_and, - ACTIONS(3174), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, + [105416] = 3, + ACTIONS(3170), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 6, + ACTIONS(2991), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103244] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, anon_sym_or, - ACTIONS(3165), 1, + [105435] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3168), 1, anon_sym_if, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 6, + ACTIONS(3008), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103269] = 2, + [105460] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 10, + ACTIONS(3032), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113755,151 +115569,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103286] = 3, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3021), 9, - anon_sym_DOT, - anon_sym_COMMA, + [105477] = 6, + ACTIONS(3166), 1, anon_sym_as, + ACTIONS(3168), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [103305] = 4, - ACTIONS(3172), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3172), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 8, + ACTIONS(2995), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103326] = 8, - ACTIONS(3180), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, + [105502] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3172), 1, anon_sym_or, - STATE(1898), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3186), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103355] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 10, + ACTIONS(3177), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103372] = 8, - ACTIONS(3009), 1, + [105527] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3194), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2975), 3, + ACTIONS(3030), 6, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, - [103401] = 3, - ACTIONS(3172), 1, + [105552] = 5, + ACTIONS(3183), 1, anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3187), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, + ACTIONS(3003), 7, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [103420] = 6, - ACTIONS(3172), 1, + [105575] = 4, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 6, + ACTIONS(3028), 8, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103445] = 2, + [105596] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 10, + ACTIONS(2991), 10, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103462] = 2, + [105613] = 3, + ACTIONS(3183), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 10, + ACTIONS(2991), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113908,311 +115691,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [103479] = 6, - ACTIONS(3172), 1, + [105632] = 8, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(2999), 1, anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3192), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, + ACTIONS(3190), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3177), 3, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [103504] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + [105661] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 6, + ACTIONS(3008), 6, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103529] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [105686] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 6, + ACTIONS(2995), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103554] = 5, - ACTIONS(3161), 1, + [105711] = 6, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3196), 1, + ACTIONS(2997), 1, anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 7, + ACTIONS(3177), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103577] = 8, - ACTIONS(3180), 1, + [105736] = 8, + ACTIONS(3194), 1, anon_sym_COMMA, - ACTIONS(3182), 1, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3204), 1, anon_sym_or, - STATE(1898), 1, + STATE(2018), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 4, + ACTIONS(3200), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103606] = 2, + [105765] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 10, + ACTIONS(3032), 10, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103623] = 4, - ACTIONS(3203), 1, - anon_sym_DOT, - STATE(1751), 1, - aux_sym_dotted_name_repeat1, + [105782] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(2104), 10, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, anon_sym_PIPE, - [103643] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, anon_sym_and, - ACTIONS(3212), 1, anon_sym_or, + [105799] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 5, + ACTIONS(2104), 10, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103667] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2100), 9, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [103683] = 3, - ACTIONS(3121), 1, + [105816] = 8, + ACTIONS(3194), 1, + anon_sym_COMMA, + ACTIONS(3196), 1, anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + STATE(2018), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 8, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(3206), 4, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, + sym_type_conversion, + [105845] = 4, + ACTIONS(3202), 1, anon_sym_and, + ACTIONS(3204), 1, anon_sym_or, - [103701] = 5, - ACTIONS(3188), 1, - anon_sym_and, - ACTIONS(3190), 1, - anon_sym_or, - ACTIONS(3214), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 6, + ACTIONS(3028), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103723] = 5, - ACTIONS(3210), 1, + [105865] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2104), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3212), 1, anon_sym_or, - ACTIONS(3217), 1, - anon_sym_as, + [105881] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 6, + ACTIONS(3032), 9, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103745] = 6, - ACTIONS(3161), 1, anon_sym_and, - ACTIONS(3163), 1, anon_sym_or, - ACTIONS(3165), 1, + [105897] = 6, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3210), 1, anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, + ACTIONS(3030), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [103769] = 6, - ACTIONS(2991), 1, + [105921] = 3, + ACTIONS(3216), 1, anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 5, + ACTIONS(3032), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103793] = 5, - ACTIONS(3003), 1, anon_sym_and, - ACTIONS(3005), 1, anon_sym_or, + [105939] = 4, ACTIONS(3220), 1, - anon_sym_as, + anon_sym_DOT, + STATE(1796), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 6, + ACTIONS(3218), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103815] = 4, - ACTIONS(3210), 1, - anon_sym_and, + anon_sym_COLON, + anon_sym_PIPE, + [105959] = 5, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, + ACTIONS(3222), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, + ACTIONS(3003), 6, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103835] = 9, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, + [105981] = 4, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3225), 1, - anon_sym_from, - ACTIONS(3227), 1, - anon_sym_COMMA, - STATE(2107), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3223), 2, - sym__newline, - anon_sym_SEMI, - [103865] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, + ACTIONS(3028), 7, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114220,98 +115983,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103881] = 6, - ACTIONS(3182), 1, + [106001] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3026), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 5, + ACTIONS(3030), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103905] = 4, - ACTIONS(3188), 1, + [106025] = 5, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3026), 1, anon_sym_or, + ACTIONS(3225), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 7, + ACTIONS(3003), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103925] = 3, - ACTIONS(2114), 1, + [106047] = 5, + ACTIONS(3024), 1, + anon_sym_and, + ACTIONS(3026), 1, + anon_sym_or, + ACTIONS(3228), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 8, + ACTIONS(3028), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103943] = 6, - ACTIONS(2991), 1, + [106069] = 3, + ACTIONS(3230), 1, anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 5, + ACTIONS(2991), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103967] = 6, - ACTIONS(3182), 1, + anon_sym_and, + anon_sym_or, + [106087] = 4, + ACTIONS(3220), 1, + anon_sym_DOT, + STATE(1806), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3232), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3184), 1, anon_sym_if, - ACTIONS(3188), 1, + anon_sym_COLON, + anon_sym_PIPE, + [106107] = 4, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3190), 1, - anon_sym_or, + ACTIONS(3230), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 5, + ACTIONS(2991), 7, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103991] = 2, + anon_sym_or, + [106127] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 9, + ACTIONS(2991), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -114321,589 +116096,781 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [104007] = 4, - ACTIONS(3003), 1, + [106143] = 3, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3144), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 7, + ACTIONS(2991), 8, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_or, - [104027] = 5, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_or, - ACTIONS(3142), 1, + [106161] = 3, + ACTIONS(2118), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 6, + ACTIONS(2104), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104049] = 6, - ACTIONS(2991), 1, + anon_sym_and, + anon_sym_or, + [106179] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(2993), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 5, + ACTIONS(2995), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [104073] = 3, - ACTIONS(3144), 1, - anon_sym_as, + [106203] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 8, + ACTIONS(2104), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [104091] = 2, + sym_type_conversion, + [106219] = 6, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(3177), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [104107] = 6, - ACTIONS(3182), 1, + [106243] = 6, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3214), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 5, + ACTIONS(3008), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104131] = 6, - ACTIONS(3206), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [106267] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3032), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3208), 1, anon_sym_if, - ACTIONS(3210), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3212), 1, anon_sym_or, + sym_type_conversion, + [106283] = 4, + ACTIONS(3236), 1, + anon_sym_DOT, + STATE(1806), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 5, - anon_sym_DOT, + ACTIONS(3234), 7, + anon_sym_import, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [104155] = 6, - ACTIONS(3182), 1, + [106303] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 5, + ACTIONS(3239), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [104179] = 2, + [106327] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 9, + ACTIONS(3030), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + sym_type_conversion, + [106351] = 5, + ACTIONS(3202), 1, anon_sym_and, + ACTIONS(3204), 1, anon_sym_or, - sym_type_conversion, - [104195] = 4, - ACTIONS(3233), 1, - anon_sym_DOT, - STATE(1751), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3241), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(3003), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [104215] = 6, - ACTIONS(3206), 1, - anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106373] = 6, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 5, + ACTIONS(2995), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [104239] = 6, - ACTIONS(3182), 1, - anon_sym_as, - ACTIONS(3184), 1, - anon_sym_if, - ACTIONS(3188), 1, - anon_sym_and, - ACTIONS(3190), 1, - anon_sym_or, + [106397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 5, + ACTIONS(2991), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, sym_type_conversion, - [104263] = 2, + [106413] = 3, + ACTIONS(3202), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 9, + ACTIONS(2991), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, anon_sym_or, sym_type_conversion, - [104279] = 3, - ACTIONS(3188), 1, + [106431] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3202), 1, anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 8, + ACTIONS(3008), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_or, sym_type_conversion, - [104297] = 4, - ACTIONS(3233), 1, - anon_sym_DOT, - STATE(1778), 1, - aux_sym_dotted_name_repeat1, + [106455] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, + anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(2995), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106479] = 6, + ACTIONS(3196), 1, anon_sym_as, + ACTIONS(3198), 1, anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3244), 5, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_PIPE, - [104317] = 5, - ACTIONS(3233), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [106503] = 5, + ACTIONS(3220), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3246), 1, anon_sym_EQ, - STATE(1778), 1, + STATE(1796), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 6, + ACTIONS(3218), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104339] = 6, - ACTIONS(3206), 1, + [106525] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, + ACTIONS(3177), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [104363] = 3, - ACTIONS(3210), 1, + [106549] = 9, + ACTIONS(2993), 1, anon_sym_and, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3250), 1, + anon_sym_from, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(2141), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 8, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3248), 2, + sym__newline, + anon_sym_SEMI, + [106579] = 6, + ACTIONS(3012), 1, anon_sym_as, + ACTIONS(3014), 1, anon_sym_if, + ACTIONS(3024), 1, + anon_sym_and, + ACTIONS(3026), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3008), 5, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106603] = 5, + ACTIONS(3060), 1, + anon_sym_as, + ACTIONS(3068), 1, + anon_sym_and, + ACTIONS(3070), 1, anon_sym_or, - [104381] = 9, - ACTIONS(3206), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3254), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106624] = 6, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3038), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3044), 1, + anon_sym_and, + ACTIONS(3046), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3008), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106647] = 5, + ACTIONS(3060), 1, + anon_sym_as, + ACTIONS(3068), 1, anon_sym_and, + ACTIONS(3070), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3254), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106668] = 9, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3241), 1, + ACTIONS(3256), 1, anon_sym_COMMA, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_COLON, - ACTIONS(3245), 1, + ACTIONS(3260), 1, anon_sym_RBRACK, - STATE(2429), 1, + STATE(2487), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104410] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3247), 1, - anon_sym_async, - ACTIONS(3249), 1, - anon_sym_def, - ACTIONS(3251), 1, - anon_sym_class, + [106697] = 8, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(2141), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(788), 2, - sym_function_definition, - sym_class_definition, - STATE(1967), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104435] = 4, - ACTIONS(308), 1, - sym_string_start, - ACTIONS(3), 2, + ACTIONS(3206), 2, + sym__newline, + anon_sym_SEMI, + [106724] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(1019), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 5, - anon_sym_COMMA, + ACTIONS(3266), 1, + anon_sym_BSLASH, + ACTIONS(3262), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1855), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3264), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [106747] = 3, + ACTIONS(3216), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [104454] = 5, - ACTIONS(3255), 1, - anon_sym_DOT, - ACTIONS(3257), 1, - anon_sym_EQ, - STATE(1855), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, + ACTIONS(3032), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [104475] = 8, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, anon_sym_if, - ACTIONS(3013), 1, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [106764] = 8, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3227), 1, + ACTIONS(3270), 1, anon_sym_COMMA, - STATE(2107), 1, + STATE(2256), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2940), 2, + ACTIONS(3268), 2, sym__newline, anon_sym_SEMI, - [104502] = 8, - ACTIONS(3009), 1, + [106791] = 8, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3261), 1, + ACTIONS(3274), 1, anon_sym_COMMA, - STATE(2121), 1, - aux_sym_assert_statement_repeat1, + STATE(2283), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3259), 2, + ACTIONS(3272), 2, sym__newline, anon_sym_SEMI, - [104529] = 5, - ACTIONS(2977), 1, + [106818] = 6, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(3038), 1, + anon_sym_if, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3046), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3030), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104550] = 5, - ACTIONS(2977), 1, + [106841] = 5, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3046), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3254), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [104571] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + [106862] = 5, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3046), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3265), 1, - anon_sym_COMMA, - ACTIONS(3267), 1, - anon_sym_RBRACK, - STATE(2378), 1, - aux_sym_subscript_repeat1, + ACTIONS(3276), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104600] = 8, - ACTIONS(3009), 1, + ACTIONS(3003), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106883] = 6, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3038), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3046), 1, anon_sym_or, - ACTIONS(3227), 1, - anon_sym_COMMA, - STATE(2107), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 2, - sym__newline, - anon_sym_SEMI, - [104627] = 6, - ACTIONS(3044), 1, + ACTIONS(2995), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106906] = 6, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3052), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3026), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3025), 4, - anon_sym_RPAREN, + ACTIONS(3279), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [104650] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3269), 1, - anon_sym_async, - ACTIONS(3271), 1, - anon_sym_def, - ACTIONS(3273), 1, - anon_sym_class, + anon_sym_RBRACE, + [106929] = 8, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3270), 1, + anon_sym_COMMA, + STATE(2167), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(793), 2, - sym_function_definition, - sym_class_definition, - STATE(1967), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [104675] = 9, - ACTIONS(3206), 1, - anon_sym_as, + ACTIONS(3281), 2, + sym__newline, + anon_sym_SEMI, + [106956] = 9, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_COLON, - ACTIONS(3275), 1, + ACTIONS(3283), 1, anon_sym_COMMA, - ACTIONS(3277), 1, + ACTIONS(3285), 1, anon_sym_RBRACK, - STATE(2432), 1, + STATE(2318), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104704] = 5, - ACTIONS(3044), 1, + [106985] = 5, + ACTIONS(3287), 1, + anon_sym_DOT, + ACTIONS(3289), 1, + anon_sym_EQ, + STATE(1877), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3218), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3052), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [107006] = 6, + ACTIONS(3060), 1, + anon_sym_as, + ACTIONS(3062), 1, + anon_sym_if, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3030), 4, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [107029] = 5, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3024), 1, + anon_sym_and, + ACTIONS(3026), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3254), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104725] = 5, - ACTIONS(3052), 1, + anon_sym_RBRACE, + [107050] = 5, + ACTIONS(3291), 1, + anon_sym_DOT, + ACTIONS(3293), 1, + anon_sym_EQ, + STATE(1918), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3218), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [107071] = 8, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(2141), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2958), 2, + sym__newline, + anon_sym_SEMI, + [107098] = 5, + ACTIONS(3068), 1, + anon_sym_and, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3279), 1, + ACTIONS(3295), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3027), 5, + ACTIONS(3003), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104746] = 5, - ACTIONS(3052), 1, + [107119] = 6, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, + anon_sym_as, + ACTIONS(2999), 1, + anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3239), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [107142] = 5, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, - ACTIONS(3142), 1, + ACTIONS(3228), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 5, + ACTIONS(3028), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104767] = 3, - ACTIONS(3144), 1, + [107163] = 3, + ACTIONS(3230), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 7, + ACTIONS(2991), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -114911,112 +116878,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [104784] = 4, - ACTIONS(3052), 1, + [107180] = 4, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3144), 1, + ACTIONS(3230), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3021), 6, + ACTIONS(2991), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_or, - [104803] = 6, - ACTIONS(3009), 1, + [107199] = 9, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3214), 1, anon_sym_or, + ACTIONS(3258), 1, + anon_sym_COLON, + ACTIONS(3298), 1, + anon_sym_COMMA, + ACTIONS(3300), 1, + anon_sym_RBRACK, + STATE(2360), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [104826] = 9, - ACTIONS(3206), 1, + [107228] = 8, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3282), 1, + ACTIONS(3252), 1, anon_sym_COMMA, - ACTIONS(3284), 1, - anon_sym_RBRACK, - STATE(2270), 1, - aux_sym_subscript_repeat1, + STATE(2141), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104855] = 6, - ACTIONS(3), 1, + ACTIONS(3302), 2, + sym__newline, + anon_sym_SEMI, + [107255] = 5, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3024), 1, + anon_sym_and, + ACTIONS(3026), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3290), 1, - anon_sym_BSLASH, - ACTIONS(3286), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1830), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3288), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104878] = 5, + ACTIONS(3254), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107276] = 5, ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3052), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3046), 1, anon_sym_or, + ACTIONS(3228), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, - anon_sym_RPAREN, + ACTIONS(3028), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104899] = 5, - ACTIONS(2991), 1, + anon_sym_RBRACK, + [107297] = 3, + ACTIONS(3230), 1, anon_sym_as, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(2991), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104920] = 2, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [107314] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 8, + ACTIONS(3234), 8, anon_sym_import, anon_sym_DOT, anon_sym_LPAREN, @@ -115025,326 +116991,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [104935] = 5, - ACTIONS(3292), 1, - anon_sym_DOT, - ACTIONS(3294), 1, - anon_sym_EQ, - STATE(1865), 1, - aux_sym_dotted_name_repeat1, + [107329] = 4, + ACTIONS(3044), 1, + anon_sym_and, + ACTIONS(3230), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, + ACTIONS(2991), 6, anon_sym_COMMA, - anon_sym_as, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_PIPE, - [104956] = 9, - ACTIONS(3206), 1, - anon_sym_as, + anon_sym_or, + [107348] = 9, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_COLON, - ACTIONS(3296), 1, + ACTIONS(3304), 1, anon_sym_COMMA, - ACTIONS(3298), 1, + ACTIONS(3306), 1, anon_sym_RBRACK, - STATE(2311), 1, + STATE(2395), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104985] = 5, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, + [107377] = 4, + ACTIONS(383), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + STATE(993), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3308), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105006] = 5, - ACTIONS(2991), 1, + anon_sym_COLON, + anon_sym_PIPE, + [107396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3315), 1, + anon_sym_BSLASH, + ACTIONS(3310), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1855), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3312), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [107419] = 5, + ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3003), 1, + ACTIONS(3024), 1, anon_sym_and, - ACTIONS(3005), 1, + ACTIONS(3026), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3254), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [105027] = 9, - ACTIONS(3206), 1, - anon_sym_as, + [107440] = 9, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_COLON, - ACTIONS(3300), 1, + ACTIONS(3318), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + ACTIONS(3320), 1, anon_sym_RBRACK, - STATE(2352), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105056] = 9, - ACTIONS(3206), 1, + [107469] = 6, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3068), 1, anon_sym_and, + ACTIONS(3070), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3008), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [107492] = 9, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_COLON, - ACTIONS(3304), 1, + ACTIONS(3322), 1, anon_sym_COMMA, - ACTIONS(3306), 1, + ACTIONS(3324), 1, anon_sym_RBRACK, - STATE(2380), 1, + STATE(2448), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105085] = 8, - ACTIONS(3009), 1, + [107521] = 9, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3310), 1, + ACTIONS(3258), 1, + anon_sym_COLON, + ACTIONS(3326), 1, anon_sym_COMMA, - STATE(2127), 1, - aux_sym_print_statement_repeat1, + ACTIONS(3328), 1, + anon_sym_RBRACK, + STATE(2475), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3308), 2, - sym__newline, - anon_sym_SEMI, - [105112] = 8, - ACTIONS(3009), 1, + [107550] = 9, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3314), 1, + ACTIONS(3258), 1, + anon_sym_COLON, + ACTIONS(3330), 1, anon_sym_COMMA, - STATE(2210), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3332), 1, + anon_sym_RBRACK, + STATE(2483), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3312), 2, - sym__newline, - anon_sym_SEMI, - [105139] = 8, - ACTIONS(3009), 1, + [107579] = 8, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3227), 1, + ACTIONS(3252), 1, anon_sym_COMMA, - STATE(2107), 1, + STATE(2141), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3316), 2, + ACTIONS(3334), 2, sym__newline, anon_sym_SEMI, - [105166] = 8, - ACTIONS(3009), 1, + [107606] = 5, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3046), 1, anon_sym_or, - ACTIONS(3227), 1, - anon_sym_COMMA, - STATE(2107), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, - sym__newline, - anon_sym_SEMI, - [105193] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3254), 5, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107627] = 9, + ACTIONS(3208), 1, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3258), 1, anon_sym_COLON, - ACTIONS(3320), 1, + ACTIONS(3336), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_RBRACK, - STATE(2401), 1, + STATE(2490), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105222] = 6, - ACTIONS(3044), 1, + [107656] = 3, + ACTIONS(2118), 1, anon_sym_as, - ACTIONS(3046), 1, - anon_sym_if, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3007), 4, - anon_sym_RPAREN, + ACTIONS(2104), 7, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [105245] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, + anon_sym_RBRACK, anon_sym_and, - ACTIONS(3212), 1, anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RBRACK, - STATE(2422), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105274] = 8, - ACTIONS(3009), 1, + [107673] = 8, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3314), 1, + ACTIONS(3342), 1, anon_sym_COMMA, - STATE(2185), 1, + STATE(2243), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3328), 2, + ACTIONS(3340), 2, sym__newline, anon_sym_SEMI, - [105301] = 9, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3330), 1, - anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACK, - STATE(2436), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105330] = 6, - ACTIONS(3044), 1, + [107700] = 6, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3046), 1, + ACTIONS(3062), 1, anon_sym_if, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3023), 4, + ACTIONS(2995), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [105353] = 5, - ACTIONS(3044), 1, + [107723] = 5, + ACTIONS(3060), 1, anon_sym_as, - ACTIONS(3052), 1, + ACTIONS(3068), 1, anon_sym_and, - ACTIONS(3054), 1, + ACTIONS(3070), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3254), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [105374] = 3, - ACTIONS(2114), 1, + [107744] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3344), 1, + anon_sym_async, + ACTIONS(3346), 1, + anon_sym_def, + ACTIONS(3348), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(827), 2, + sym_function_definition, + sym_class_definition, + STATE(1950), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [107769] = 3, + ACTIONS(2118), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2100), 7, + ACTIONS(2104), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -115352,12018 +117324,12223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [105391] = 5, - ACTIONS(2977), 1, + [107786] = 5, + ACTIONS(3036), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(3044), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3046), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 5, + ACTIONS(3254), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [105412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3339), 1, - anon_sym_BSLASH, - ACTIONS(3334), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1830), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3336), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [105435] = 6, - ACTIONS(2991), 1, - anon_sym_as, - ACTIONS(2993), 1, - anon_sym_if, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, + [107807] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3350), 1, + anon_sym_async, + ACTIONS(3352), 1, + anon_sym_def, + ACTIONS(3354), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3342), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105458] = 5, - ACTIONS(3344), 1, + STATE(745), 2, + sym_function_definition, + sym_class_definition, + STATE(1950), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [107832] = 5, + ACTIONS(3356), 1, anon_sym_DOT, - ACTIONS(3346), 1, + ACTIONS(3358), 1, anon_sym_EQ, - STATE(1888), 1, + STATE(1915), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, + ACTIONS(3218), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105479] = 3, - ACTIONS(3121), 1, + [107853] = 3, + ACTIONS(3216), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3017), 7, - anon_sym_RPAREN, + ACTIONS(3032), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [105496] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3348), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 5, - anon_sym_COMMA, + [107870] = 9, + ACTIONS(3208), 1, anon_sym_as, + ACTIONS(3210), 1, anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, + ACTIONS(3258), 1, anon_sym_COLON, - anon_sym_PIPE, - [105512] = 7, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(3350), 1, - anon_sym_DOT, - ACTIONS(3352), 1, - anon_sym___future__, - STATE(2146), 1, - aux_sym_import_prefix_repeat1, - STATE(2293), 1, - sym_import_prefix, + ACTIONS(3360), 1, + anon_sym_COMMA, + ACTIONS(3362), 1, + anon_sym_RBRACK, + STATE(2441), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2613), 2, - sym_relative_import, - sym_dotted_name, - [105536] = 7, - ACTIONS(3009), 1, - anon_sym_as, - ACTIONS(3011), 1, - anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, - anon_sym_or, - ACTIONS(3194), 1, - anon_sym_COMMA, + [107899] = 4, + ACTIONS(3364), 1, + anon_sym_DOT, + STATE(1876), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 2, - sym__newline, - anon_sym_SEMI, - [105560] = 5, - ACTIONS(2991), 1, + ACTIONS(3234), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3003), 1, - anon_sym_and, - ACTIONS(3005), 1, - anon_sym_or, + anon_sym_PIPE, + anon_sym_RBRACE, + [107917] = 4, + ACTIONS(3287), 1, + anon_sym_DOT, + STATE(1876), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3354), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3232), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [105580] = 6, - ACTIONS(3356), 1, - anon_sym_if, - ACTIONS(3359), 1, + [107935] = 8, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(3362), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3365), 1, + ACTIONS(3367), 1, + anon_sym_COMMA, + ACTIONS(3369), 1, anon_sym_RBRACE, + STATE(1887), 1, + sym_for_in_clause, + STATE(2411), 1, + aux_sym_dictionary_repeat1, + STATE(2821), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1838), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105602] = 5, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3052), 1, - anon_sym_and, - ACTIONS(3054), 1, - anon_sym_or, + [107961] = 4, + ACTIONS(787), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3354), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [105622] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, + STATE(1131), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3308), 4, anon_sym_COMMA, - ACTIONS(3369), 1, anon_sym_as, - ACTIONS(3371), 1, - anon_sym_COLON, - STATE(2343), 1, - aux_sym_except_clause_repeat1, + anon_sym_RBRACK, + anon_sym_PIPE, + [107979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105648] = 6, - ACTIONS(3009), 1, + ACTIONS(3373), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3371), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [107995] = 7, + ACTIONS(1387), 1, + anon_sym_COLON, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3214), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3373), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1385), 2, anon_sym_COMMA, - [105670] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + anon_sym_RBRACK, + [108019] = 8, + ACTIONS(3162), 1, + anon_sym_RPAREN, + ACTIONS(3164), 1, + anon_sym_COMMA, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3168), 1, anon_sym_if, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, + STATE(2316), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108045] = 8, ACTIONS(3375), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(3377), 1, - anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, + anon_sym_LPAREN, + ACTIONS(3379), 1, + anon_sym_STAR, + STATE(2048), 1, + sym_dotted_name, + STATE(2276), 1, + sym_aliased_import, + STATE(2591), 1, + sym__import_list, + STATE(2619), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105696] = 4, - ACTIONS(799), 1, - sym_string_start, + [108071] = 8, + ACTIONS(3018), 1, + anon_sym_async, + ACTIONS(3020), 1, + anon_sym_for, + ACTIONS(3381), 1, + anon_sym_COMMA, + ACTIONS(3383), 1, + anon_sym_RBRACE, + STATE(1887), 1, + sym_for_in_clause, + STATE(2390), 1, + aux_sym_dictionary_repeat1, + STATE(2710), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1079), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 4, + [108097] = 8, + ACTIONS(3018), 1, + anon_sym_async, + ACTIONS(3020), 1, + anon_sym_for, + ACTIONS(3385), 1, + anon_sym_COMMA, + ACTIONS(3387), 1, + anon_sym_RBRACE, + STATE(1887), 1, + sym_for_in_clause, + STATE(2435), 1, + aux_sym_dictionary_repeat1, + STATE(2785), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108123] = 4, + ACTIONS(3389), 1, + anon_sym_DOT, + STATE(1886), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3234), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [105714] = 8, - ACTIONS(2997), 1, + [108141] = 6, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3379), 1, - anon_sym_COMMA, - ACTIONS(3381), 1, + ACTIONS(3392), 1, + anon_sym_if, + ACTIONS(3394), 1, anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2302), 1, - aux_sym_dictionary_repeat1, - STATE(2624), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105740] = 4, - ACTIONS(3383), 1, + STATE(1903), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [108163] = 4, + ACTIONS(3287), 1, anon_sym_DOT, - STATE(1845), 1, + STATE(1877), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, + ACTIONS(3218), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [105758] = 4, - ACTIONS(3344), 1, + [108181] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3396), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108197] = 4, + ACTIONS(3398), 1, anon_sym_DOT, - STATE(1888), 1, + STATE(1890), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, + ACTIONS(3234), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [105776] = 8, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3386), 1, - anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2337), 1, - aux_sym_dictionary_repeat1, - STATE(2702), 1, - sym__comprehension_clauses, + [108215] = 5, + ACTIONS(3036), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_and, + ACTIONS(3046), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105802] = 6, - ACTIONS(2981), 1, + ACTIONS(3401), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2983), 1, anon_sym_for, - ACTIONS(3390), 1, + anon_sym_RBRACK, + [108235] = 6, + ACTIONS(3403), 1, anon_sym_if, - ACTIONS(3392), 1, + ACTIONS(3406), 1, + anon_sym_async, + ACTIONS(3409), 1, + anon_sym_for, + ACTIONS(3412), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, + STATE(1892), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105824] = 8, - ACTIONS(2997), 1, + [108257] = 8, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3394), 1, + ACTIONS(3414), 1, anon_sym_COMMA, - ACTIONS(3396), 1, + ACTIONS(3416), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2344), 1, + STATE(2465), 1, aux_sym_dictionary_repeat1, - STATE(2729), 1, + STATE(2671), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105850] = 6, - ACTIONS(3365), 1, + [108283] = 4, + ACTIONS(675), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(972), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3308), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [108301] = 5, + ACTIONS(3060), 1, + anon_sym_as, + ACTIONS(3068), 1, + anon_sym_and, + ACTIONS(3070), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3401), 4, anon_sym_RPAREN, - ACTIONS(3398), 1, anon_sym_if, - ACTIONS(3401), 1, anon_sym_async, - ACTIONS(3404), 1, + anon_sym_for, + [108321] = 6, + ACTIONS(3412), 1, + anon_sym_RPAREN, + ACTIONS(3418), 1, + anon_sym_if, + ACTIONS(3421), 1, + anon_sym_async, + ACTIONS(3424), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1850), 3, + STATE(1896), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [105872] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, + [108343] = 6, + ACTIONS(3412), 1, + anon_sym_RBRACE, + ACTIONS(3427), 1, anon_sym_if, - ACTIONS(3375), 1, - anon_sym_COMMA, - ACTIONS(3407), 1, - anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105898] = 8, - ACTIONS(2997), 1, + ACTIONS(3430), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3433), 1, anon_sym_for, - ACTIONS(3409), 1, - anon_sym_COMMA, - ACTIONS(3411), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2370), 1, - aux_sym_dictionary_repeat1, - STATE(2767), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105924] = 4, - ACTIONS(3292), 1, - anon_sym_DOT, - STATE(1865), 1, - aux_sym_dotted_name_repeat1, + STATE(1897), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [108365] = 7, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, + ACTIONS(3258), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, + ACTIONS(3436), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [105942] = 8, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3413), 1, + [108389] = 8, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3415), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2384), 1, - aux_sym_dictionary_repeat1, - STATE(2662), 1, - sym__comprehension_clauses, + ACTIONS(3440), 1, + anon_sym_COLON, + STATE(2292), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105968] = 4, - ACTIONS(3255), 1, - anon_sym_DOT, - STATE(1845), 1, - aux_sym_dotted_name_repeat1, + [108415] = 5, + ACTIONS(3012), 1, + anon_sym_as, + ACTIONS(3024), 1, + anon_sym_and, + ACTIONS(3026), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(3401), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [105986] = 8, - ACTIONS(3199), 1, - anon_sym_RBRACK, - ACTIONS(3206), 1, - anon_sym_as, + [108435] = 7, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3417), 1, - anon_sym_COMMA, - STATE(2438), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3442), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106012] = 8, - ACTIONS(3161), 1, + ACTIONS(1425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108459] = 8, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, + ACTIONS(3444), 1, anon_sym_COMMA, - ACTIONS(3419), 1, - anon_sym_as, - ACTIONS(3421), 1, + ACTIONS(3446), 1, anon_sym_COLON, - STATE(2442), 1, - aux_sym_except_clause_repeat1, + STATE(2421), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106038] = 3, + [108485] = 6, + ACTIONS(3018), 1, + anon_sym_async, + ACTIONS(3020), 1, + anon_sym_for, + ACTIONS(3392), 1, + anon_sym_if, + ACTIONS(3448), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3425), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3423), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [106054] = 8, - ACTIONS(2997), 1, + STATE(1897), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [108507] = 8, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3427), 1, + ACTIONS(3450), 1, anon_sym_COMMA, - ACTIONS(3429), 1, + ACTIONS(3452), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2391), 1, + STATE(2305), 1, aux_sym_dictionary_repeat1, - STATE(2711), 1, + STATE(2827), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106080] = 6, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3431), 1, + [108533] = 8, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3433), 1, - anon_sym_RBRACE, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3454), 1, + anon_sym_COLON, + STATE(2292), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1887), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106102] = 6, - ACTIONS(2981), 1, + [108559] = 6, + ACTIONS(3040), 1, anon_sym_async, - ACTIONS(2983), 1, + ACTIONS(3042), 1, anon_sym_for, - ACTIONS(3390), 1, - anon_sym_if, - ACTIONS(3433), 1, + ACTIONS(3394), 1, anon_sym_RBRACK, + ACTIONS(3456), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1848), 3, + STATE(1927), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106124] = 8, - ACTIONS(2997), 1, - anon_sym_async, - ACTIONS(2999), 1, - anon_sym_for, - ACTIONS(3435), 1, + [108581] = 8, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3437), 1, - anon_sym_RBRACE, - STATE(1860), 1, - sym_for_in_clause, - STATE(2413), 1, - aux_sym_dictionary_repeat1, - STATE(2616), 1, - sym__comprehension_clauses, + ACTIONS(3458), 1, + anon_sym_COLON, + STATE(2292), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106150] = 4, - ACTIONS(684), 1, - sym_string_start, + [108607] = 8, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3460), 1, + anon_sym_COMMA, + ACTIONS(3462), 1, + anon_sym_as, + ACTIONS(3464), 1, + anon_sym_COLON, + STATE(2509), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(968), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106168] = 8, - ACTIONS(3161), 1, + [108633] = 8, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3439), 1, + ACTIONS(3460), 1, anon_sym_COMMA, - ACTIONS(3441), 1, + ACTIONS(3466), 1, + anon_sym_as, + ACTIONS(3468), 1, anon_sym_COLON, - STATE(2250), 1, - aux_sym_match_statement_repeat1, + STATE(2512), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106194] = 4, - ACTIONS(3292), 1, + [108659] = 4, + ACTIONS(3291), 1, anon_sym_DOT, - STATE(1885), 1, + STATE(1918), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 5, + ACTIONS(3218), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [106212] = 8, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, - ACTIONS(3199), 1, - anon_sym_RPAREN, - ACTIONS(3443), 1, - anon_sym_COMMA, - STATE(2464), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106238] = 6, - ACTIONS(3048), 1, + [108677] = 6, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3433), 1, + ACTIONS(3448), 1, anon_sym_RPAREN, - ACTIONS(3445), 1, + ACTIONS(3470), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1878), 3, + STATE(1896), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106260] = 8, - ACTIONS(3161), 1, + [108699] = 7, + ACTIONS(2752), 1, + sym_identifier, + ACTIONS(3472), 1, + anon_sym_DOT, + ACTIONS(3474), 1, + anon_sym___future__, + STATE(2242), 1, + aux_sym_import_prefix_repeat1, + STATE(2530), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2813), 2, + sym_relative_import, + sym_dotted_name, + [108723] = 6, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3447), 1, - anon_sym_COMMA, - ACTIONS(3449), 1, - anon_sym_COLON, - STATE(2376), 1, - aux_sym_match_statement_repeat1, + ACTIONS(3001), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106286] = 8, - ACTIONS(3161), 1, + ACTIONS(3476), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [108745] = 7, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3375), 1, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3192), 1, anon_sym_COMMA, - ACTIONS(3451), 1, - anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106312] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3190), 2, + sym__newline, + anon_sym_SEMI, + [108769] = 4, + ACTIONS(3356), 1, + anon_sym_DOT, + STATE(1890), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3232), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3167), 1, + anon_sym_PIPE, + [108787] = 8, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3375), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3460), 1, anon_sym_COMMA, - ACTIONS(3453), 1, + ACTIONS(3466), 1, + anon_sym_as, + ACTIONS(3478), 1, anon_sym_COLON, - STATE(2480), 1, - aux_sym_assert_statement_repeat1, + STATE(2373), 1, + aux_sym_except_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108813] = 4, + ACTIONS(3356), 1, + anon_sym_DOT, + STATE(1915), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106338] = 8, - ACTIONS(3077), 1, + ACTIONS(3218), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3079), 1, anon_sym_COMMA, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, - STATE(2266), 1, - aux_sym_argument_list_repeat1, + anon_sym_PIPE, + [108831] = 4, + ACTIONS(3291), 1, + anon_sym_DOT, + STATE(1886), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106364] = 8, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, + ACTIONS(3232), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(3419), 1, anon_sym_as, - ACTIONS(3455), 1, - anon_sym_COLON, - STATE(2453), 1, - aux_sym_except_clause_repeat1, + anon_sym_RBRACK, + anon_sym_PIPE, + [108849] = 8, + ACTIONS(3018), 1, + anon_sym_async, + ACTIONS(3020), 1, + anon_sym_for, + ACTIONS(3480), 1, + anon_sym_COMMA, + ACTIONS(3482), 1, + anon_sym_RBRACE, + STATE(1887), 1, + sym_for_in_clause, + STATE(2428), 1, + aux_sym_dictionary_repeat1, + STATE(2721), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106390] = 5, - ACTIONS(2977), 1, + [108875] = 8, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(2985), 1, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(2987), 1, + ACTIONS(3172), 1, anon_sym_or, + ACTIONS(3206), 1, + anon_sym_RPAREN, + ACTIONS(3484), 1, + anon_sym_COMMA, + STATE(2304), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3354), 4, - anon_sym_if, + [108901] = 8, + ACTIONS(3018), 1, anon_sym_async, + ACTIONS(3020), 1, anon_sym_for, + ACTIONS(3486), 1, + anon_sym_COMMA, + ACTIONS(3488), 1, + anon_sym_RBRACE, + STATE(1887), 1, + sym_for_in_clause, + STATE(2386), 1, + aux_sym_dictionary_repeat1, + STATE(2776), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108927] = 8, + ACTIONS(3206), 1, anon_sym_RBRACK, - [106410] = 8, - ACTIONS(3161), 1, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3367), 1, + ACTIONS(3490), 1, anon_sym_COMMA, - ACTIONS(3369), 1, - anon_sym_as, - ACTIONS(3457), 1, - anon_sym_COLON, - STATE(2456), 1, - aux_sym_except_clause_repeat1, + STATE(2355), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106436] = 6, - ACTIONS(3365), 1, - anon_sym_RBRACK, - ACTIONS(3459), 1, - anon_sym_if, - ACTIONS(3462), 1, - anon_sym_async, - ACTIONS(3465), 1, - anon_sym_for, + [108953] = 4, + ACTIONS(721), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106458] = 7, - ACTIONS(3206), 1, + STATE(996), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3308), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3208), 1, + anon_sym_PIPE, + [108971] = 8, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3243), 1, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3492), 1, anon_sym_COLON, + STATE(2292), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106482] = 7, - ACTIONS(3206), 1, + [108997] = 8, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3470), 1, + ACTIONS(3494), 1, + anon_sym_COMMA, + ACTIONS(3496), 1, anon_sym_COLON, + STATE(2309), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1441), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106506] = 6, - ACTIONS(3048), 1, + [109023] = 6, + ACTIONS(3064), 1, anon_sym_async, - ACTIONS(3050), 1, + ACTIONS(3066), 1, anon_sym_for, - ACTIONS(3392), 1, + ACTIONS(3394), 1, anon_sym_RPAREN, - ACTIONS(3445), 1, + ACTIONS(3470), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1850), 3, + STATE(1911), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106528] = 8, - ACTIONS(3472), 1, - sym_identifier, - ACTIONS(3474), 1, - anon_sym_LPAREN, - ACTIONS(3476), 1, - anon_sym_STAR, - STATE(2099), 1, - sym_dotted_name, - STATE(2141), 1, - sym_aliased_import, - STATE(2534), 1, - sym__import_list, - STATE(2545), 1, - sym_wildcard_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106554] = 4, - ACTIONS(3255), 1, - anon_sym_DOT, - STATE(1855), 1, - aux_sym_dotted_name_repeat1, + [109045] = 6, + ACTIONS(3040), 1, + anon_sym_async, + ACTIONS(3042), 1, + anon_sym_for, + ACTIONS(3448), 1, + anon_sym_RBRACK, + ACTIONS(3456), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3237), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106572] = 6, - ACTIONS(3009), 1, + STATE(1892), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [109067] = 6, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3001), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3478), 3, + ACTIONS(3498), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [106594] = 7, - ACTIONS(1401), 1, - anon_sym_COLON, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, + [109089] = 8, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1399), 2, + ACTIONS(3460), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [106618] = 4, - ACTIONS(3480), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3462), 1, + anon_sym_as, + ACTIONS(3500), 1, + anon_sym_COLON, + STATE(2339), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [106636] = 8, - ACTIONS(2997), 1, + [109115] = 8, + ACTIONS(3018), 1, anon_sym_async, - ACTIONS(2999), 1, + ACTIONS(3020), 1, anon_sym_for, - ACTIONS(3483), 1, + ACTIONS(3502), 1, anon_sym_COMMA, - ACTIONS(3485), 1, + ACTIONS(3504), 1, anon_sym_RBRACE, - STATE(1860), 1, + STATE(1887), 1, sym_for_in_clause, - STATE(2257), 1, + STATE(2351), 1, aux_sym_dictionary_repeat1, - STATE(2643), 1, + STATE(2690), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106662] = 4, - ACTIONS(3487), 1, + [109141] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3506), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - STATE(1885), 1, - aux_sym_dotted_name_repeat1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109154] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, + ACTIONS(3508), 6, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [106680] = 4, - ACTIONS(709), 1, - sym_string_start, + [109167] = 4, + ACTIONS(3510), 1, + anon_sym_COMMA, + STATE(1945), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1009), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3253), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [106698] = 6, - ACTIONS(2997), 1, + ACTIONS(3512), 4, + anon_sym_if, anon_sym_async, - ACTIONS(2999), 1, anon_sym_for, - ACTIONS(3392), 1, anon_sym_RBRACE, - ACTIONS(3431), 1, + [109184] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1838), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106720] = 4, - ACTIONS(3344), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3231), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3514), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [106738] = 4, - ACTIONS(3492), 1, + anon_sym_COLON, + [109205] = 4, + ACTIONS(3516), 1, anon_sym_COMMA, - STATE(1902), 1, + STATE(1952), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 4, - anon_sym_RPAREN, + ACTIONS(3518), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [106755] = 6, - ACTIONS(3182), 1, + anon_sym_RBRACE, + [109222] = 4, + ACTIONS(3522), 1, + anon_sym_PIPE, + STATE(1964), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3520), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [109239] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3524), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3371), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [109254] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(3526), 2, anon_sym_COMMA, anon_sym_RBRACE, - [106776] = 6, - ACTIONS(3009), 1, + [109275] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3172), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3496), 2, - sym__newline, - anon_sym_SEMI, - [106797] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3239), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [109296] = 3, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3308), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3178), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109311] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106818] = 7, - ACTIONS(3500), 1, + ACTIONS(3530), 6, anon_sym_DOT, - ACTIONS(3502), 1, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3504), 1, anon_sym_COLON, - ACTIONS(3506), 1, - anon_sym_RBRACK, - ACTIONS(3508), 1, + anon_sym_EQ, anon_sym_PIPE, - STATE(2272), 1, - aux_sym_type_parameter_repeat1, + [109324] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106841] = 4, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, + ACTIONS(3177), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109337] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 4, + ACTIONS(3532), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - [106858] = 6, - ACTIONS(3206), 1, - anon_sym_as, + anon_sym_EQ, + anon_sym_PIPE, + [109350] = 6, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1443), 2, + ACTIONS(1425), 2, anon_sym_COMMA, anon_sym_RBRACK, - [106879] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, + [109371] = 4, + ACTIONS(3534), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3536), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109388] = 7, + ACTIONS(3538), 1, + anon_sym_DOT, + ACTIONS(3540), 1, + anon_sym_COMMA, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(3544), 1, + anon_sym_RBRACK, + ACTIONS(3546), 1, + anon_sym_PIPE, + STATE(2362), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 2, - anon_sym_RPAREN, + [109411] = 4, + ACTIONS(3548), 1, anon_sym_COMMA, - [106900] = 6, - ACTIONS(3009), 1, + STATE(1947), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2911), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109428] = 6, + ACTIONS(2993), 1, + anon_sym_and, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3013), 1, - anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3001), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3510), 2, + ACTIONS(3551), 2, sym__newline, anon_sym_SEMI, - [106921] = 4, - ACTIONS(3512), 1, - anon_sym_COMMA, - STATE(1926), 1, - aux_sym_assert_statement_repeat1, + [109449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 4, + ACTIONS(1624), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [106938] = 6, - ACTIONS(3161), 1, + anon_sym_PIPE, + [109462] = 4, + ACTIONS(3555), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1950), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3553), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [109479] = 6, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(2999), 1, anon_sym_if, + ACTIONS(3001), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3514), 2, + ACTIONS(3558), 2, + sym__newline, + anon_sym_SEMI, + [109500] = 4, + ACTIONS(3560), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3563), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [109517] = 4, + ACTIONS(3522), 1, + anon_sym_PIPE, + STATE(1936), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3565), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - [106959] = 4, + [109534] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3518), 1, + ACTIONS(3569), 1, anon_sym_BSLASH, - ACTIONS(3516), 5, + ACTIONS(3567), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106976] = 4, - ACTIONS(3522), 1, - anon_sym_COMMA, - STATE(1956), 1, - aux_sym_for_in_clause_repeat1, + [109551] = 6, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106993] = 4, - ACTIONS(3526), 1, + ACTIONS(3571), 2, anon_sym_COMMA, - STATE(1962), 1, + anon_sym_RBRACK, + [109572] = 4, + ACTIONS(3573), 1, + anon_sym_COMMA, + STATE(2000), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3536), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [107010] = 2, + [109589] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3506), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3530), 1, - anon_sym_BSLASH, - ACTIONS(3528), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107040] = 3, - ACTIONS(3532), 1, - anon_sym_LPAREN, + [109602] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 5, + ACTIONS(3575), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107055] = 4, - ACTIONS(3534), 1, - anon_sym_COMMA, - STATE(1914), 1, - aux_sym_for_in_clause_repeat1, + [109615] = 6, + ACTIONS(3208), 1, + anon_sym_as, + ACTIONS(3210), 1, + anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107072] = 4, - ACTIONS(3538), 1, - anon_sym_PIPE, - STATE(1983), 1, + ACTIONS(3577), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109636] = 3, + STATE(1936), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 4, + ACTIONS(3579), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [107089] = 3, + anon_sym_PIPE, + [109651] = 4, + ACTIONS(3581), 1, + anon_sym_DOT, + STATE(1961), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3540), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3253), 4, + ACTIONS(3234), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + [109668] = 5, + ACTIONS(3584), 1, + anon_sym_DOT, + ACTIONS(3588), 1, + anon_sym_COLON, + ACTIONS(3590), 1, anon_sym_PIPE, - [107104] = 4, - ACTIONS(3542), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3586), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_EQ, + [109687] = 4, + ACTIONS(3592), 1, + anon_sym_COMMA, + STATE(1963), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, + ACTIONS(3239), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109704] = 4, + ACTIONS(3595), 1, + anon_sym_PIPE, + STATE(1964), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3579), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107121] = 6, - ACTIONS(3009), 1, + anon_sym_COLON, + [109721] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3172), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, - sym__newline, - anon_sym_SEMI, - [107142] = 2, + ACTIONS(3598), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [109742] = 4, + ACTIONS(3600), 1, + anon_sym_DOT, + STATE(1961), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3544), 6, + ACTIONS(3232), 4, sym__newline, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [109759] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3602), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107155] = 4, + [109772] = 7, + ACTIONS(3538), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_COLON, ACTIONS(3546), 1, + anon_sym_PIPE, + ACTIONS(3604), 1, anon_sym_COMMA, - STATE(1918), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3606), 1, + anon_sym_RBRACK, + STATE(2503), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3520), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107172] = 2, + [109795] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3608), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107185] = 4, - ACTIONS(3550), 1, - anon_sym_COMMA, - STATE(1920), 1, - aux_sym_for_in_clause_repeat1, + [109808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, + ACTIONS(3602), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109821] = 6, + ACTIONS(3196), 1, + anon_sym_as, + ACTIONS(3198), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107202] = 4, - ACTIONS(3552), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3524), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [107219] = 7, - ACTIONS(3500), 1, + ACTIONS(3279), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [109842] = 6, + ACTIONS(3584), 1, anon_sym_DOT, - ACTIONS(3504), 1, + ACTIONS(3588), 1, anon_sym_COLON, - ACTIONS(3508), 1, + ACTIONS(3590), 1, anon_sym_PIPE, - ACTIONS(3554), 1, - anon_sym_COMMA, - ACTIONS(3556), 1, - anon_sym_RBRACK, - STATE(2314), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(3612), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107242] = 3, + ACTIONS(3610), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [109863] = 6, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3558), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3423), 4, + ACTIONS(3614), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + [109884] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3532), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [107257] = 4, - ACTIONS(3560), 1, + [109897] = 7, + ACTIONS(3538), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(3546), 1, + anon_sym_PIPE, + ACTIONS(3616), 1, anon_sym_COMMA, - STATE(1920), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3618), 1, + anon_sym_RBRACK, + STATE(2288), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107274] = 7, - ACTIONS(3564), 1, + [109920] = 4, + ACTIONS(3620), 1, anon_sym_COMMA, - ACTIONS(3566), 1, - anon_sym_as, - ACTIONS(3568), 1, - anon_sym_if, - ACTIONS(3570), 1, + STATE(1947), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(927), 4, anon_sym_COLON, - STATE(2000), 1, - aux_sym_case_clause_repeat1, - STATE(2692), 1, - sym_if_clause, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109937] = 4, + ACTIONS(3600), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107297] = 4, - ACTIONS(3572), 1, + ACTIONS(3218), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1920), 1, + anon_sym_as, + [109954] = 4, + ACTIONS(3622), 1, + anon_sym_COMMA, + STATE(1992), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 4, + ACTIONS(3518), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [107314] = 6, - ACTIONS(3206), 1, + anon_sym_RBRACK, + [109971] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3494), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107335] = 6, ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3577), 2, + ACTIONS(3624), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107356] = 4, - ACTIONS(3579), 1, - anon_sym_DOT, - STATE(1995), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3237), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [107373] = 2, + [109992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3626), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3308), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [107386] = 4, - ACTIONS(3538), 1, - anon_sym_PIPE, - STATE(1907), 1, - aux_sym_union_pattern_repeat1, + [110007] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 4, + ACTIONS(3575), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [110020] = 7, + ACTIONS(3628), 1, anon_sym_COMMA, + ACTIONS(3630), 1, anon_sym_as, + ACTIONS(3632), 1, anon_sym_if, + ACTIONS(3634), 1, anon_sym_COLON, - [107403] = 4, - ACTIONS(3583), 1, - anon_sym_COMMA, - STATE(1926), 1, - aux_sym_assert_statement_repeat1, + STATE(2104), 1, + aux_sym_case_clause_repeat1, + STATE(2738), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [107420] = 3, + [110043] = 4, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3423), 4, - anon_sym_RPAREN, + ACTIONS(3028), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [107435] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + anon_sym_if, + anon_sym_COLON, + [110060] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3198), 1, anon_sym_if, + ACTIONS(3202), 1, + anon_sym_and, + ACTIONS(3204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 2, + ACTIONS(3636), 2, anon_sym_COMMA, - anon_sym_COLON, - [107456] = 2, + anon_sym_RBRACE, + [110081] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, + ACTIONS(3638), 6, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107469] = 6, - ACTIONS(3182), 1, + [110094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3642), 1, + anon_sym_BSLASH, + ACTIONS(3640), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [110111] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3172), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3577), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107490] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3590), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3423), 4, + ACTIONS(3244), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [107505] = 2, + [110132] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, + ACTIONS(3508), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107518] = 4, + [110145] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3594), 1, + ACTIONS(3646), 1, anon_sym_BSLASH, - ACTIONS(3592), 5, + ACTIONS(3644), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107535] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [110162] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3168), 1, anon_sym_if, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3596), 2, + ACTIONS(3648), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [107556] = 4, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3), 2, + [110183] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3019), 4, + ACTIONS(3652), 1, + anon_sym_BSLASH, + ACTIONS(3650), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [110200] = 4, + ACTIONS(3654), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107573] = 2, + STATE(1992), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107586] = 5, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(3604), 1, - anon_sym_COLON, - ACTIONS(3606), 1, - anon_sym_PIPE, + ACTIONS(3563), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [110217] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [107605] = 4, - ACTIONS(3608), 1, + ACTIONS(3234), 6, anon_sym_DOT, - STATE(1938), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110230] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3201), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(3659), 1, + anon_sym_BSLASH, + ACTIONS(3657), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [110247] = 6, + ACTIONS(3208), 1, anon_sym_as, - [107622] = 2, + ACTIONS(3210), 1, + anon_sym_if, + ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107635] = 2, + ACTIONS(3244), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [110268] = 4, + ACTIONS(3661), 1, + anon_sym_COMMA, + STATE(1992), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107648] = 2, + ACTIONS(3536), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [110285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3663), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3371), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [107661] = 2, + anon_sym_RBRACE, + [110300] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 6, + ACTIONS(3530), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107674] = 6, - ACTIONS(3182), 1, + [110313] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3172), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3342), 2, + ACTIONS(3526), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [107695] = 6, - ACTIONS(3617), 1, - anon_sym_DOT, - ACTIONS(3621), 1, - anon_sym_COLON, - ACTIONS(3623), 1, - anon_sym_EQ, - ACTIONS(3625), 1, - anon_sym_PIPE, + [110334] = 4, + ACTIONS(3665), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3619), 2, + ACTIONS(3563), 4, anon_sym_RPAREN, - anon_sym_COMMA, - [107716] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [110351] = 6, + ACTIONS(3208), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3210), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_COLON, - [107737] = 6, - ACTIONS(3161), 1, + ACTIONS(3212), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3214), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3498), 2, + ACTIONS(1449), 2, anon_sym_COMMA, - anon_sym_COLON, - [107758] = 2, - ACTIONS(3), 2, + anon_sym_RBRACK, + [110372] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3615), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107771] = 6, - ACTIONS(3206), 1, - anon_sym_as, + ACTIONS(3670), 1, + anon_sym_BSLASH, + ACTIONS(3668), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [110389] = 6, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3629), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [107792] = 7, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, - ACTIONS(3631), 1, + ACTIONS(3526), 2, anon_sym_COMMA, - ACTIONS(3633), 1, anon_sym_RBRACK, - STATE(2324), 1, - aux_sym_type_parameter_repeat1, + [110410] = 6, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107815] = 6, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(3604), 1, - anon_sym_COLON, - ACTIONS(3606), 1, - anon_sym_PIPE, - ACTIONS(3637), 1, - anon_sym_EQ, + ACTIONS(3672), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110431] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3635), 2, - sym__newline, - anon_sym_SEMI, - [107836] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3234), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, + anon_sym_PIPE, + anon_sym_RBRACE, + [110444] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, + ACTIONS(3532), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [107857] = 7, - ACTIONS(3500), 1, + anon_sym_EQ, + anon_sym_PIPE, + [110457] = 5, + ACTIONS(3674), 1, anon_sym_DOT, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym_COLON, - ACTIONS(3508), 1, + ACTIONS(3678), 1, anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_COMMA, - ACTIONS(3643), 1, - anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107880] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3586), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [110476] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, - anon_sym_RPAREN, + ACTIONS(3239), 2, anon_sym_COMMA, - [107901] = 6, - ACTIONS(3206), 1, - anon_sym_as, + anon_sym_COLON, + [110497] = 6, ACTIONS(3208), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3210), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3212), 1, + anon_sym_and, + ACTIONS(3214), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 2, + ACTIONS(3239), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107922] = 6, - ACTIONS(3172), 1, + [110518] = 6, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3647), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107943] = 4, - ACTIONS(3649), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3562), 4, - anon_sym_RPAREN, + ACTIONS(2999), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [107960] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3001), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3651), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [107981] = 2, + ACTIONS(3244), 2, + sym__newline, + anon_sym_SEMI, + [110539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 6, - anon_sym_DOT, + ACTIONS(3680), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3371), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, + [110554] = 4, + ACTIONS(3522), 1, anon_sym_PIPE, - [107994] = 2, + STATE(1936), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3544), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3682), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108007] = 2, + [110571] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3684), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108020] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + [110592] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3629), 2, - anon_sym_RPAREN, + ACTIONS(3686), 2, anon_sym_COMMA, - [108041] = 4, - ACTIONS(3653), 1, + anon_sym_COLON, + [110613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3690), 1, + anon_sym_BSLASH, + ACTIONS(3688), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [110630] = 4, + ACTIONS(3694), 1, anon_sym_COMMA, - STATE(1962), 1, + STATE(2029), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 4, + ACTIONS(3692), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [108058] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3494), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [108079] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3611), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108092] = 6, - ACTIONS(3182), 1, + [110647] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3184), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3190), 1, + ACTIONS(3185), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3629), 2, + ACTIONS(3598), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [108113] = 4, - ACTIONS(3656), 1, + anon_sym_COLON, + [110668] = 4, + ACTIONS(3696), 1, anon_sym_COMMA, - STATE(1975), 1, - aux_sym__patterns_repeat1, + STATE(1963), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(971), 4, + ACTIONS(1255), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108130] = 4, - ACTIONS(3660), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1967), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3658), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [108147] = 4, + [110685] = 7, ACTIONS(3538), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(3546), 1, anon_sym_PIPE, - STATE(1907), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3698), 1, + anon_sym_COMMA, + ACTIONS(3700), 1, + anon_sym_RBRACK, + STATE(2321), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 4, - anon_sym_COMMA, + [110708] = 6, + ACTIONS(3179), 1, anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - anon_sym_COLON, - [108164] = 6, - ACTIONS(3172), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3174), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3176), 1, - anon_sym_as, - ACTIONS(3178), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, - anon_sym_RPAREN, + ACTIONS(3614), 2, anon_sym_COMMA, - [108185] = 6, - ACTIONS(3206), 1, + anon_sym_COLON, + [110729] = 4, + ACTIONS(3702), 1, + anon_sym_COMMA, + STATE(1956), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3512), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [110746] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3168), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3170), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3172), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1441), 2, + ACTIONS(3514), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [108206] = 2, + [110767] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 6, + ACTIONS(3508), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108219] = 6, - ACTIONS(3206), 1, - anon_sym_as, - ACTIONS(3208), 1, - anon_sym_if, - ACTIONS(3210), 1, - anon_sym_and, - ACTIONS(3212), 1, - anon_sym_or, + [110780] = 4, + ACTIONS(3704), 1, + anon_sym_COMMA, + STATE(1978), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3229), 2, - anon_sym_COMMA, + ACTIONS(3692), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - [108240] = 2, + [110797] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 6, + ACTIONS(3608), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108253] = 2, + [110810] = 6, + ACTIONS(3674), 1, + anon_sym_DOT, + ACTIONS(3676), 1, + anon_sym_COLON, + ACTIONS(3678), 1, + anon_sym_PIPE, + ACTIONS(3708), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3588), 6, + ACTIONS(3706), 2, sym__newline, anon_sym_SEMI, + [110831] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3530), 6, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108266] = 4, - ACTIONS(3667), 1, + [110844] = 4, + ACTIONS(3710), 1, anon_sym_COMMA, - STATE(1975), 1, - aux_sym__patterns_repeat1, + STATE(1935), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3692), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [108283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3672), 1, - anon_sym_BSLASH, - ACTIONS(3670), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3676), 1, - anon_sym_BSLASH, - ACTIONS(3674), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3680), 1, - anon_sym_BSLASH, - ACTIONS(3678), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108334] = 4, - ACTIONS(3), 1, + [110861] = 4, + ACTIONS(3712), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3684), 1, - anon_sym_BSLASH, - ACTIONS(3682), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108351] = 3, + ACTIONS(3518), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [110878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3686), 2, + ACTIONS(3714), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 4, + ACTIONS(3308), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [108366] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + [110893] = 6, + ACTIONS(3166), 1, anon_sym_as, - ACTIONS(3178), 1, + ACTIONS(3168), 1, anon_sym_if, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3627), 2, + ACTIONS(3636), 2, anon_sym_RPAREN, anon_sym_COMMA, - [108387] = 3, - STATE(1907), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3688), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108402] = 4, - ACTIONS(3690), 1, - anon_sym_PIPE, - STATE(1983), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3688), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [108419] = 4, - ACTIONS(3693), 1, + [110914] = 4, + ACTIONS(3716), 1, anon_sym_COMMA, - STATE(1915), 1, + STATE(1996), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3490), 4, + ACTIONS(3512), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [108436] = 4, - ACTIONS(3695), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_for_in_clause_repeat1, + [110931] = 4, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 4, + ACTIONS(3028), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108453] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + [110948] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3699), 1, - anon_sym_BSLASH, - ACTIONS(3697), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [108470] = 3, + ACTIONS(3638), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [110961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 2, + ACTIONS(3718), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3253), 4, - anon_sym_RPAREN, + ACTIONS(3308), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [108485] = 2, + [110976] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 6, + ACTIONS(3234), 6, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [108498] = 2, + [110989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 6, + ACTIONS(1624), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108511] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3201), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [108524] = 6, - ACTIONS(3206), 1, + [111002] = 6, + ACTIONS(3196), 1, anon_sym_as, - ACTIONS(3208), 1, + ACTIONS(3198), 1, anon_sym_if, - ACTIONS(3210), 1, + ACTIONS(3202), 1, anon_sym_and, - ACTIONS(3212), 1, + ACTIONS(3204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 2, + ACTIONS(3577), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [108545] = 2, + anon_sym_RBRACE, + [111023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3722), 1, + anon_sym_BSLASH, + ACTIONS(3720), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [111040] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 6, + ACTIONS(3177), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108558] = 5, - ACTIONS(3617), 1, + [111053] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3638), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3621), 1, anon_sym_COLON, - ACTIONS(3625), 1, + anon_sym_EQ, anon_sym_PIPE, + [111066] = 6, + ACTIONS(3166), 1, + anon_sym_as, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3170), 1, + anon_sym_and, + ACTIONS(3172), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 3, + ACTIONS(3577), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [108577] = 2, + [111087] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3724), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [108590] = 4, - ACTIONS(3579), 1, - anon_sym_DOT, - STATE(1938), 1, - aux_sym_dotted_name_repeat1, + [111099] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(2920), 5, anon_sym_COMMA, - anon_sym_as, - [108607] = 4, - ACTIONS(3703), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [111111] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3177), 5, + anon_sym_DOT, anon_sym_COMMA, - STATE(1996), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [111123] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [108624] = 6, - ACTIONS(3172), 1, - anon_sym_and, - ACTIONS(3174), 1, - anon_sym_or, - ACTIONS(3176), 1, + ACTIONS(3726), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3178), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [111135] = 4, + ACTIONS(3728), 1, + anon_sym_PIPE, + STATE(2144), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, + ACTIONS(3565), 3, anon_sym_RPAREN, anon_sym_COMMA, - [108645] = 6, - ACTIONS(3706), 1, - anon_sym_LBRACE, - ACTIONS(3709), 1, - anon_sym_RBRACE, - ACTIONS(3711), 1, - aux_sym_format_specifier_token1, - STATE(1998), 1, - aux_sym_format_specifier_repeat1, - STATE(2244), 1, - sym_interpolation, - ACTIONS(5), 2, + anon_sym_as, + [111151] = 5, + ACTIONS(3732), 1, + anon_sym_COMMA, + ACTIONS(3734), 1, + anon_sym_as, + STATE(2266), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108665] = 5, - ACTIONS(3714), 1, - anon_sym_COMMA, - ACTIONS(3716), 1, - anon_sym_RBRACE, - STATE(2463), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(3730), 2, + sym__newline, + anon_sym_SEMI, + [111169] = 3, + ACTIONS(3736), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, - anon_sym_COLON, - anon_sym_PIPE, - [108683] = 6, - ACTIONS(2602), 1, - anon_sym_COLON, - ACTIONS(3568), 1, - anon_sym_if, - ACTIONS(3718), 1, + ACTIONS(3308), 4, anon_sym_COMMA, - STATE(2215), 1, - aux_sym_case_clause_repeat1, - STATE(2740), 1, - sym_if_clause, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111183] = 4, + ACTIONS(3738), 1, + anon_sym_PIPE, + STATE(2066), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108703] = 2, + ACTIONS(3682), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [111199] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 5, + ACTIONS(3638), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108715] = 5, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, + [111211] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3401), 1, anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 2, + [111231] = 5, + ACTIONS(3740), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [108733] = 2, + ACTIONS(3742), 1, + anon_sym_RBRACE, + STATE(2338), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3308), 2, + anon_sym_COLON, + anon_sym_PIPE, + [111249] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 5, + ACTIONS(3508), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108745] = 6, - ACTIONS(3720), 1, + [111261] = 6, + ACTIONS(3744), 1, anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3747), 1, anon_sym_RBRACE, - ACTIONS(3724), 1, + ACTIONS(3749), 1, aux_sym_format_specifier_token1, - STATE(1998), 1, + STATE(2055), 1, aux_sym_format_specifier_repeat1, - STATE(2244), 1, + STATE(2444), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [108765] = 6, - ACTIONS(3161), 1, + [111281] = 6, + ACTIONS(2993), 1, anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(2997), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(2999), 1, anon_sym_if, - ACTIONS(3726), 1, - anon_sym_else, + ACTIONS(3001), 1, + anon_sym_or, + ACTIONS(3752), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108785] = 5, - ACTIONS(3728), 1, - anon_sym_COMMA, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(2283), 1, - aux_sym_dict_pattern_repeat1, + [111301] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, + ACTIONS(3754), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108803] = 3, - ACTIONS(3732), 1, - anon_sym_LPAREN, + [111313] = 5, + ACTIONS(3538), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(3546), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, + ACTIONS(3756), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [108817] = 2, + anon_sym_RBRACK, + [111331] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 5, + ACTIONS(3758), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [108829] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3588), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108841] = 2, + [111343] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3736), 5, - anon_sym_RPAREN, + ACTIONS(3563), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [108853] = 2, + anon_sym_RBRACK, + [111355] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 5, + ACTIONS(3177), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [108865] = 4, - ACTIONS(3738), 1, anon_sym_PIPE, - STATE(2056), 1, - aux_sym_union_pattern_repeat1, + [111367] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, - anon_sym_RPAREN, + ACTIONS(3760), 5, anon_sym_COMMA, anon_sym_as, - [108881] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, anon_sym_if, - ACTIONS(3354), 1, anon_sym_COLON, + anon_sym_PIPE, + [111379] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108901] = 4, - ACTIONS(3740), 1, + ACTIONS(3762), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2054), 1, - aux_sym_union_pattern_repeat1, + [111391] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, + ACTIONS(3764), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [108917] = 3, - ACTIONS(3742), 1, - anon_sym_LPAREN, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [111403] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, + ACTIONS(2918), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [108931] = 4, - ACTIONS(3744), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [111415] = 4, + ACTIONS(3738), 1, anon_sym_PIPE, - STATE(2025), 1, + STATE(2098), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, + ACTIONS(3520), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [108947] = 2, + [111431] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 5, + ACTIONS(3532), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [108959] = 4, - ACTIONS(3740), 1, - anon_sym_PIPE, - STATE(2054), 1, - aux_sym_union_pattern_repeat1, + [111443] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3766), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 3, + [111463] = 4, + ACTIONS(3768), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [108975] = 2, + STATE(2069), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108987] = 2, + ACTIONS(3239), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [111479] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 5, + ACTIONS(3771), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108999] = 6, - ACTIONS(3720), 1, - anon_sym_LBRACE, - ACTIONS(3750), 1, - anon_sym_RBRACE, - ACTIONS(3752), 1, - aux_sym_format_specifier_token1, - STATE(2004), 1, - aux_sym_format_specifier_repeat1, - STATE(2244), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [109019] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3754), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109039] = 6, - ACTIONS(3472), 1, - sym_identifier, - ACTIONS(3756), 1, - anon_sym_LPAREN, - STATE(2099), 1, - sym_dotted_name, - STATE(2141), 1, - sym_aliased_import, - STATE(2527), 1, - sym__import_list, + [111491] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109059] = 2, + ACTIONS(3773), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [111503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 5, + ACTIONS(3775), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109071] = 4, - ACTIONS(3744), 1, - anon_sym_PIPE, - STATE(2034), 1, + [111515] = 3, + STATE(2144), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3536), 3, + ACTIONS(3579), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109087] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3615), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109099] = 2, + [111529] = 4, + ACTIONS(3777), 1, + anon_sym_PIPE, + STATE(2074), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 5, + ACTIONS(3579), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + [111545] = 6, + ACTIONS(1399), 1, + anon_sym_LBRACK, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_COLON, - anon_sym_PIPE, - [109111] = 2, + STATE(2327), 1, + sym_type_parameters, + STATE(2713), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109123] = 2, + [111565] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 5, + ACTIONS(3563), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [109135] = 5, - ACTIONS(3762), 1, - anon_sym_COMMA, - ACTIONS(3764), 1, - anon_sym_RBRACE, - STATE(2323), 1, - aux_sym_dict_pattern_repeat1, + [111577] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, + ACTIONS(3784), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109153] = 2, + [111589] = 6, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(3788), 1, + anon_sym_EQ, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(3792), 1, + sym_type_conversion, + STATE(2766), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 5, + [111609] = 5, + ACTIONS(3794), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3796), 1, anon_sym_RBRACE, - [109165] = 4, - ACTIONS(3744), 1, - anon_sym_PIPE, - STATE(2025), 1, - aux_sym_union_pattern_repeat1, + STATE(2372), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [109181] = 3, - STATE(2025), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3308), 2, + anon_sym_COLON, + anon_sym_PIPE, + [111627] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 4, + ACTIONS(3798), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [109195] = 4, - ACTIONS(3768), 1, + [111639] = 4, + ACTIONS(3738), 1, anon_sym_PIPE, - STATE(2034), 1, + STATE(2066), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 3, + ACTIONS(3565), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - [109211] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3736), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + [111655] = 6, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3802), 1, anon_sym_RBRACE, - [109223] = 2, - ACTIONS(3), 2, + ACTIONS(3804), 1, + aux_sym_format_specifier_token1, + STATE(2112), 1, + aux_sym_format_specifier_repeat1, + STATE(2444), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3201), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - [109235] = 3, - STATE(2054), 1, - aux_sym_union_pattern_repeat1, + [111675] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 4, + ACTIONS(3806), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, + [111687] = 5, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3810), 1, anon_sym_RBRACE, - [109249] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3771), 1, - anon_sym_else, + STATE(2380), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109269] = 6, - ACTIONS(3773), 1, + ACTIONS(3308), 2, + anon_sym_COLON, + anon_sym_PIPE, + [111705] = 6, + ACTIONS(3786), 1, anon_sym_COLON, - ACTIONS(3775), 1, + ACTIONS(3812), 1, anon_sym_EQ, - ACTIONS(3777), 1, + ACTIONS(3814), 1, anon_sym_RBRACE, - ACTIONS(3779), 1, + ACTIONS(3816), 1, sym_type_conversion, - STATE(2594), 1, + STATE(2842), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109289] = 2, + [111725] = 5, + ACTIONS(3375), 1, + sym_identifier, + STATE(2241), 1, + sym_dotted_name, + STATE(2306), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109301] = 4, - ACTIONS(3783), 1, - anon_sym_PIPE, - STATE(2041), 1, + ACTIONS(3818), 2, + sym__newline, + anon_sym_SEMI, + [111743] = 3, + STATE(2066), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 3, + ACTIONS(3579), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109317] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [111757] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3820), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109329] = 2, + [111777] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, + ACTIONS(3506), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109341] = 2, + [111789] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 5, + ACTIONS(3608), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109353] = 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [111801] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 5, + ACTIONS(3822), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109365] = 2, + [111813] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2975), 5, + ACTIONS(3234), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109377] = 2, + anon_sym_as, + [111825] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 5, + ACTIONS(3824), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109389] = 4, - ACTIONS(3738), 1, - anon_sym_PIPE, - STATE(2012), 1, - aux_sym_union_pattern_repeat1, + [111837] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 3, + ACTIONS(3773), 5, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - [109405] = 5, - ACTIONS(3472), 1, - sym_identifier, - STATE(2241), 1, - sym_dotted_name, - STATE(2359), 1, - sym_aliased_import, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [111849] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 2, - sym__newline, - anon_sym_SEMI, - [109423] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3826), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3167), 1, anon_sym_if, - ACTIONS(3794), 1, + anon_sym_COLON, + anon_sym_PIPE, + [111861] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3828), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109443] = 5, - ACTIONS(3472), 1, + [111881] = 5, + ACTIONS(3375), 1, sym_identifier, STATE(2241), 1, sym_dotted_name, - STATE(2359), 1, + STATE(2306), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 2, + ACTIONS(3830), 2, sym__newline, anon_sym_SEMI, - [109461] = 6, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_COLON, - STATE(2265), 1, - sym_type_parameter, - STATE(2639), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109481] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3800), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109501] = 4, - ACTIONS(3740), 1, + [111899] = 4, + ACTIONS(3832), 1, anon_sym_PIPE, - STATE(2041), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3536), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [109517] = 3, - STATE(2012), 1, + STATE(2098), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 4, - anon_sym_RPAREN, + ACTIONS(3579), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [109531] = 4, - ACTIONS(3802), 1, - anon_sym_PIPE, - STATE(2056), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACK, + [111915] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3688), 3, - anon_sym_RPAREN, + ACTIONS(3758), 5, anon_sym_COMMA, - anon_sym_as, - [109547] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, anon_sym_if, - ACTIONS(3805), 1, - anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [111927] = 6, + ACTIONS(3375), 1, + sym_identifier, + ACTIONS(3835), 1, + anon_sym_LPAREN, + STATE(2048), 1, + sym_dotted_name, + STATE(2276), 1, + sym_aliased_import, + STATE(2581), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109567] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [111947] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3807), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3837), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109587] = 2, + [111967] = 3, + ACTIONS(3839), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 5, + ACTIONS(3308), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111981] = 6, + ACTIONS(3610), 1, anon_sym_COMMA, + ACTIONS(3841), 1, + anon_sym_DOT, + ACTIONS(3843), 1, anon_sym_COLON, + ACTIONS(3845), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109599] = 2, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112001] = 6, + ACTIONS(2618), 1, + anon_sym_COLON, + ACTIONS(3632), 1, + anon_sym_if, + ACTIONS(3849), 1, + anon_sym_COMMA, + STATE(2236), 1, + aux_sym_case_clause_repeat1, + STATE(2733), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112021] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 5, + ACTIONS(3851), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109611] = 5, - ACTIONS(3617), 1, + [112033] = 5, + ACTIONS(3584), 1, anon_sym_DOT, - ACTIONS(3621), 1, + ACTIONS(3588), 1, anon_sym_COLON, - ACTIONS(3625), 1, + ACTIONS(3590), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3619), 2, + ACTIONS(3610), 2, anon_sym_RPAREN, anon_sym_COMMA, - [109629] = 2, + [112051] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 5, + ACTIONS(3773), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109641] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [112063] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 5, + ACTIONS(1624), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [109653] = 2, + [112075] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3815), 5, + ACTIONS(1624), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109665] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [112087] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3817), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3853), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109685] = 2, + [112107] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 5, - anon_sym_RPAREN, + ACTIONS(3855), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [109697] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [112119] = 6, + ACTIONS(3800), 1, + anon_sym_LBRACE, + ACTIONS(3857), 1, + anon_sym_RBRACE, + ACTIONS(3859), 1, + aux_sym_format_specifier_token1, + STATE(2055), 1, + aux_sym_format_specifier_repeat1, + STATE(2444), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [112139] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 5, + ACTIONS(3861), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109709] = 5, - ACTIONS(3500), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_PIPE, + [112151] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3863), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3821), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109727] = 2, + [112171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 5, - anon_sym_RPAREN, + ACTIONS(3865), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [109739] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [112183] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 5, + ACTIONS(3563), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_async, + anon_sym_for, + [112195] = 5, + ACTIONS(3674), 1, + anon_sym_DOT, + ACTIONS(3676), 1, anon_sym_COLON, + ACTIONS(3678), 1, anon_sym_PIPE, - [109751] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 5, - anon_sym_DOT, + ACTIONS(3867), 2, + sym__newline, + anon_sym_SEMI, + [112213] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3754), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [109763] = 2, + anon_sym_RBRACE, + [112225] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2902), 5, + ACTIONS(2911), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [109775] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3825), 1, - anon_sym_COLON, + [112237] = 5, + ACTIONS(3869), 1, + anon_sym_COMMA, + ACTIONS(3871), 1, + anon_sym_RBRACE, + STATE(2531), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109795] = 5, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3829), 1, + ACTIONS(3308), 2, anon_sym_COLON, - ACTIONS(3831), 1, anon_sym_PIPE, + [112255] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 2, - anon_sym_COMMA, - anon_sym_EQ, - [109813] = 5, - ACTIONS(3602), 1, + ACTIONS(3530), 5, anon_sym_DOT, - ACTIONS(3604), 1, - anon_sym_COLON, - ACTIONS(3606), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3833), 2, - sym__newline, - anon_sym_SEMI, - [109831] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3835), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109843] = 2, + [112267] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 5, + ACTIONS(1575), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [112279] = 6, + ACTIONS(3179), 1, anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109855] = 6, - ACTIONS(3161), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3163), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3165), 1, - anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3839), 1, + ACTIONS(3873), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109875] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [112299] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3841), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3875), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109895] = 6, - ACTIONS(1569), 1, + [112319] = 6, + ACTIONS(1399), 1, anon_sym_LBRACK, - ACTIONS(3796), 1, + ACTIONS(3780), 1, anon_sym_LPAREN, - ACTIONS(3843), 1, + ACTIONS(3877), 1, anon_sym_COLON, - STATE(2444), 1, - sym_type_parameter, - STATE(2678), 1, + STATE(2501), 1, + sym_type_parameters, + STATE(2735), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109915] = 2, + [112339] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 5, + ACTIONS(3575), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [112351] = 5, + ACTIONS(3538), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_COLON, + ACTIONS(3546), 1, anon_sym_PIPE, - [109927] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 5, + ACTIONS(3586), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109939] = 2, + anon_sym_RBRACK, + [112369] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3849), 5, + ACTIONS(3602), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [112381] = 4, + ACTIONS(3879), 1, anon_sym_PIPE, - [109951] = 2, + STATE(2150), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 5, + ACTIONS(3520), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109963] = 2, + anon_sym_RBRACE, + [112397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 5, + ACTIONS(3575), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [109975] = 2, + [112409] = 5, + ACTIONS(3841), 1, + anon_sym_DOT, + ACTIONS(3843), 1, + anon_sym_COLON, + ACTIONS(3847), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3736), 5, + ACTIONS(3586), 2, anon_sym_COMMA, + anon_sym_EQ, + [112427] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109987] = 2, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3881), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109999] = 2, + [112447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 5, - anon_sym_DOT, + ACTIONS(3758), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [110011] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [112459] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3855), 1, - anon_sym_COLON, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3883), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110031] = 2, + [112479] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 5, + ACTIONS(3602), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [110043] = 5, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_RBRACE, - STATE(2478), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_PIPE, + [112491] = 5, + ACTIONS(3375), 1, + sym_identifier, + STATE(2241), 1, + sym_dotted_name, + STATE(2306), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, - anon_sym_COLON, - anon_sym_PIPE, - [110061] = 2, + ACTIONS(3818), 2, + sym__newline, + anon_sym_SEMI, + [112509] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3544), 5, - anon_sym_DOT, + ACTIONS(3885), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [110073] = 2, + [112521] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 5, + ACTIONS(3506), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [110085] = 2, + [112533] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, + ACTIONS(3887), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [110097] = 2, + [112545] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3544), 5, + ACTIONS(3608), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [110109] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3548), 5, - anon_sym_DOT, + [112557] = 4, + ACTIONS(3889), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [110121] = 2, + STATE(2069), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [110133] = 6, - ACTIONS(3009), 1, + ACTIONS(1255), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [112573] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3011), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3013), 1, + ACTIONS(3183), 1, anon_sym_and, - ACTIONS(3015), 1, + ACTIONS(3185), 1, anon_sym_or, - ACTIONS(3861), 1, - sym__newline, + ACTIONS(3891), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110153] = 5, - ACTIONS(3865), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_as, - STATE(2172), 1, - aux_sym__import_list_repeat1, + [112593] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 2, - sym__newline, - anon_sym_SEMI, - [110171] = 4, - ACTIONS(3738), 1, + ACTIONS(3893), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [112605] = 4, + ACTIONS(3728), 1, anon_sym_PIPE, - STATE(2012), 1, + STATE(2074), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, + ACTIONS(3520), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [110187] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3766), 5, - anon_sym_COMMA, + [112621] = 6, + ACTIONS(3179), 1, anon_sym_as, + ACTIONS(3181), 1, anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3895), 1, anon_sym_COLON, - anon_sym_PIPE, - [110199] = 5, - ACTIONS(3472), 1, - sym_identifier, - STATE(2241), 1, - sym_dotted_name, - STATE(2359), 1, - sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3869), 2, - sym__newline, - anon_sym_SEMI, - [110217] = 6, - ACTIONS(3773), 1, + [112641] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3206), 5, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3871), 1, anon_sym_EQ, - ACTIONS(3873), 1, anon_sym_RBRACE, - ACTIONS(3875), 1, sym_type_conversion, - STATE(2742), 1, - sym_format_specifier, + [112653] = 4, + ACTIONS(3879), 1, + anon_sym_PIPE, + STATE(2129), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110237] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3565), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3167), 1, - anon_sym_if, - ACTIONS(3877), 1, - anon_sym_COLON, + anon_sym_RBRACE, + [112669] = 3, + STATE(2129), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110257] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + ACTIONS(3579), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [112683] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3879), 1, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3897), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110277] = 2, + [112703] = 4, + ACTIONS(3899), 1, + anon_sym_PIPE, + STATE(2150), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 5, + ACTIONS(3579), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [110289] = 4, - ACTIONS(3883), 1, - anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + [112719] = 3, + ACTIONS(3902), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [110305] = 4, - ACTIONS(3885), 1, + ACTIONS(3308), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [112733] = 4, + ACTIONS(3728), 1, + anon_sym_PIPE, + STATE(2144), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3235), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [110321] = 2, + ACTIONS(3682), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [112749] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 5, + ACTIONS(3904), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [110333] = 6, - ACTIONS(3619), 1, - anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3829), 1, + [112761] = 6, + ACTIONS(3179), 1, + anon_sym_as, + ACTIONS(3181), 1, + anon_sym_if, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3906), 1, anon_sym_COLON, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(3890), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110353] = 3, - ACTIONS(3892), 1, - anon_sym_LPAREN, + [112781] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 4, - anon_sym_RPAREN, + ACTIONS(3908), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [110367] = 6, - ACTIONS(3161), 1, - anon_sym_and, - ACTIONS(3163), 1, - anon_sym_or, - ACTIONS(3165), 1, + [112793] = 6, + ACTIONS(3179), 1, anon_sym_as, - ACTIONS(3167), 1, + ACTIONS(3181), 1, anon_sym_if, - ACTIONS(3894), 1, - anon_sym_COLON, + ACTIONS(3183), 1, + anon_sym_and, + ACTIONS(3185), 1, + anon_sym_or, + ACTIONS(3910), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110387] = 5, - ACTIONS(3863), 1, - anon_sym_RPAREN, - ACTIONS(3896), 1, + [112813] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3912), 5, anon_sym_COMMA, - ACTIONS(3898), 1, anon_sym_as, - STATE(2395), 1, - aux_sym__import_list_repeat1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [112825] = 4, + ACTIONS(3879), 1, + anon_sym_PIPE, + STATE(2129), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110404] = 4, - ACTIONS(3902), 1, + ACTIONS(3682), 3, anon_sym_COMMA, - STATE(2195), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [112841] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3900), 2, - sym__newline, - anon_sym_SEMI, - [110419] = 2, + ACTIONS(3726), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [112852] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 4, + ACTIONS(3724), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110430] = 5, - ACTIONS(3904), 1, - anon_sym_RPAREN, - ACTIONS(3906), 1, - anon_sym_COMMA, - ACTIONS(3908), 1, - anon_sym_as, - STATE(2288), 1, - aux_sym_case_clause_repeat1, + [112863] = 5, + ACTIONS(3914), 1, + anon_sym_case, + ACTIONS(3916), 1, + sym__dedent, + STATE(2186), 1, + aux_sym__match_block_repeat1, + STATE(2598), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110447] = 2, + [112880] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 4, + ACTIONS(3904), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110458] = 2, + [112891] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, + ACTIONS(3912), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110469] = 4, - ACTIONS(3912), 1, + [112902] = 4, + ACTIONS(3920), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + STATE(2245), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, + ACTIONS(3918), 2, sym__newline, anon_sym_SEMI, - [110484] = 2, + [112917] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, + ACTIONS(3908), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110495] = 4, - ACTIONS(3915), 1, + [112928] = 5, + ACTIONS(3922), 1, + anon_sym_RPAREN, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3926), 1, + anon_sym_as, + STATE(2332), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112945] = 4, + ACTIONS(3270), 1, anon_sym_COMMA, - STATE(2108), 1, + STATE(2069), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1433), 2, + ACTIONS(3928), 2, sym__newline, anon_sym_SEMI, - [110510] = 2, + [112960] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 4, + ACTIONS(3726), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110521] = 5, - ACTIONS(3917), 1, - sym_identifier, - STATE(2113), 1, - sym_dotted_name, - STATE(2482), 1, - sym_aliased_import, - STATE(2619), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110538] = 2, + [112971] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 4, + ACTIONS(3885), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110549] = 2, + [112982] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, + ACTIONS(3764), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110560] = 2, + [112993] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + ACTIONS(3822), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [110571] = 4, - ACTIONS(3921), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3919), 2, - sym__newline, - anon_sym_SEMI, - [110586] = 2, + [113004] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3865), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110597] = 2, + [113015] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3893), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110608] = 5, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2493), 1, - sym_type_parameter, - STATE(2589), 1, - sym_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110625] = 2, + [113026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 4, + ACTIONS(3912), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110636] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - STATE(2139), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3925), 2, - sym__newline, - anon_sym_SEMI, - [110651] = 5, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(3929), 1, - anon_sym_RBRACE, - ACTIONS(3931), 1, - sym_type_conversion, - STATE(2654), 1, - sym_format_specifier, + [113037] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110668] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3815), 4, - anon_sym_RPAREN, + ACTIONS(3771), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110679] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3851), 4, - anon_sym_COMMA, + [113048] = 5, + ACTIONS(3926), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110690] = 4, - ACTIONS(3927), 1, - anon_sym_COMMA, - STATE(2163), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3933), 2, - sym__newline, - anon_sym_SEMI, - [110705] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3937), 1, - sym__dedent, - STATE(2162), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + ACTIONS(3930), 1, + anon_sym_RPAREN, + ACTIONS(3932), 1, + anon_sym_COMMA, + STATE(2369), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110722] = 5, - ACTIONS(3917), 1, - sym_identifier, - STATE(2113), 1, - sym_dotted_name, - STATE(2482), 1, - sym_aliased_import, - STATE(2656), 1, - sym__import_list, + [113065] = 4, + ACTIONS(3936), 1, + anon_sym_DOT, + STATE(2177), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110739] = 4, - ACTIONS(3927), 1, + ACTIONS(3934), 2, + anon_sym_import, + sym_identifier, + [113080] = 5, + ACTIONS(3939), 1, anon_sym_COMMA, - STATE(2163), 1, - aux_sym_global_statement_repeat1, + ACTIONS(3941), 1, + anon_sym_as, + ACTIONS(3943), 1, + anon_sym_RBRACK, + STATE(2370), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3939), 2, - sym__newline, - anon_sym_SEMI, - [110754] = 2, + [113097] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 4, + ACTIONS(3908), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110765] = 4, - ACTIONS(3865), 1, + [113108] = 5, + ACTIONS(3941), 1, + anon_sym_as, + ACTIONS(3945), 1, anon_sym_COMMA, - STATE(2212), 1, - aux_sym__import_list_repeat1, + ACTIONS(3947), 1, + anon_sym_RBRACK, + STATE(2334), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3863), 2, - sym__newline, - anon_sym_SEMI, - [110780] = 2, + [113125] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3726), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110791] = 2, + [113136] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 4, + ACTIONS(3885), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110802] = 5, - ACTIONS(3472), 1, - sym_identifier, - STATE(2099), 1, - sym_dotted_name, - STATE(2141), 1, - sym_aliased_import, - STATE(2509), 1, - sym__import_list, + anon_sym_PIPE, + [113147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110819] = 5, - ACTIONS(3619), 1, + ACTIONS(3764), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3829), 1, - anon_sym_COLON, - ACTIONS(3831), 1, + anon_sym_as, anon_sym_PIPE, + [113158] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110836] = 4, - ACTIONS(3943), 1, - anon_sym_DOT, - STATE(2219), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(3784), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [113169] = 4, + ACTIONS(3951), 1, + anon_sym_COLON, + ACTIONS(3953), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3941), 2, - anon_sym_import, - sym_identifier, - [110851] = 2, + ACTIONS(3949), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [113184] = 5, + ACTIONS(3914), 1, + anon_sym_case, + ACTIONS(3955), 1, + sym__dedent, + STATE(2247), 1, + aux_sym__match_block_repeat1, + STATE(2598), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110862] = 5, - ACTIONS(3869), 1, - anon_sym_RPAREN, - ACTIONS(3917), 1, - sym_identifier, - STATE(2286), 1, - sym_dotted_name, - STATE(2553), 1, - sym_aliased_import, + [113201] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110879] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(3945), 1, + ACTIONS(3824), 4, anon_sym_RPAREN, - ACTIONS(3947), 1, anon_sym_COMMA, - STATE(2319), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [113212] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110896] = 5, - ACTIONS(3949), 1, + ACTIONS(3760), 4, anon_sym_COMMA, - ACTIONS(3951), 1, anon_sym_as, - ACTIONS(3953), 1, anon_sym_RBRACK, - STATE(2321), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [113223] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110913] = 5, - ACTIONS(3955), 1, + ACTIONS(3893), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [113234] = 5, + ACTIONS(3914), 1, anon_sym_case, - ACTIONS(3958), 1, + ACTIONS(3957), 1, sym__dedent, - STATE(2151), 1, + STATE(2254), 1, aux_sym__match_block_repeat1, - STATE(2503), 1, + STATE(2598), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110930] = 2, + [113251] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 4, - anon_sym_RPAREN, + ACTIONS(3826), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110941] = 2, + [113262] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 4, - anon_sym_RPAREN, + ACTIONS(3855), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110952] = 2, + [113273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3822), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [110963] = 2, + [113284] = 4, + ACTIONS(3961), 1, + anon_sym_COMMA, + STATE(2194), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110974] = 2, + ACTIONS(3959), 2, + sym__newline, + anon_sym_SEMI, + [113299] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 4, + ACTIONS(3775), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110985] = 2, + [113310] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 4, + ACTIONS(3861), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110996] = 2, + [113321] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3849), 4, + ACTIONS(3798), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [111007] = 2, + [113332] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, + ACTIONS(3861), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111018] = 2, + [113343] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 4, + ACTIONS(3865), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111029] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3960), 1, - sym__dedent, - STATE(2151), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + [113354] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111046] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3962), 1, - sym__dedent, - STATE(2151), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + ACTIONS(3760), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [113365] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111063] = 4, - ACTIONS(3966), 1, + ACTIONS(3824), 4, anon_sym_COMMA, - STATE(2163), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [113376] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - sym__newline, - anon_sym_SEMI, - [111078] = 5, - ACTIONS(3908), 1, + ACTIONS(3851), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [113387] = 5, + ACTIONS(3926), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(3964), 1, anon_sym_RPAREN, - ACTIONS(3971), 1, + ACTIONS(3966), 1, anon_sym_COMMA, - STATE(2330), 1, + STATE(2377), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111095] = 2, + [113404] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 4, + ACTIONS(3826), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111106] = 2, + [113415] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 4, - anon_sym_RPAREN, + ACTIONS(3762), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111117] = 2, + anon_sym_RBRACE, + [113426] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 4, + ACTIONS(3865), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111128] = 2, + anon_sym_RBRACE, + [113437] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, + ACTIONS(3771), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111139] = 5, - ACTIONS(3935), 1, - anon_sym_case, - ACTIONS(3973), 1, - sym__dedent, - STATE(2161), 1, - aux_sym__match_block_repeat1, - STATE(2503), 1, - sym_case_clause, + [113448] = 5, + ACTIONS(3926), 1, + anon_sym_as, + ACTIONS(3968), 1, + anon_sym_RPAREN, + ACTIONS(3970), 1, + anon_sym_COMMA, + STATE(2526), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111156] = 5, - ACTIONS(3908), 1, + [113465] = 5, + ACTIONS(3941), 1, anon_sym_as, - ACTIONS(3975), 1, - anon_sym_RPAREN, - ACTIONS(3977), 1, + ACTIONS(3972), 1, anon_sym_COMMA, - STATE(2279), 1, + ACTIONS(3974), 1, + anon_sym_RBRACK, + STATE(2528), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111173] = 3, + [113482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3253), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3979), 2, + ACTIONS(3806), 4, anon_sym_COMMA, - anon_sym_RBRACE, - [111186] = 4, - ACTIONS(3983), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [113493] = 5, + ACTIONS(3610), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + ACTIONS(3841), 1, + anon_sym_DOT, + ACTIONS(3843), 1, + anon_sym_COLON, + ACTIONS(3847), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3981), 2, - sym__newline, - anon_sym_SEMI, - [111201] = 2, + [113510] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3845), 4, + ACTIONS(3754), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111212] = 5, - ACTIONS(3951), 1, + [113521] = 5, + ACTIONS(3926), 1, anon_sym_as, - ACTIONS(3985), 1, + ACTIONS(3976), 1, + anon_sym_RPAREN, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(3987), 1, - anon_sym_RBRACK, - STATE(2280), 1, + STATE(2346), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111229] = 2, + [113538] = 4, + ACTIONS(3982), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111240] = 2, + ACTIONS(3980), 2, + sym__newline, + anon_sym_SEMI, + [113553] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3815), 4, + ACTIONS(3682), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111251] = 2, + anon_sym_if, + anon_sym_COLON, + [113564] = 3, + ACTIONS(3630), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 4, + ACTIONS(3985), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [113577] = 5, + ACTIONS(3730), 1, anon_sym_RPAREN, + ACTIONS(3987), 1, anon_sym_COMMA, + ACTIONS(3989), 1, anon_sym_as, - anon_sym_PIPE, - [111262] = 2, + STATE(2541), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3849), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111273] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(3989), 1, - anon_sym_RPAREN, - ACTIONS(3991), 1, + [113594] = 4, + ACTIONS(3993), 1, anon_sym_COMMA, - STATE(2441), 1, - aux_sym_case_clause_repeat1, + STATE(2282), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111290] = 2, + ACTIONS(3991), 2, + sym__newline, + anon_sym_SEMI, + [113609] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, + ACTIONS(3851), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111301] = 2, + [113620] = 5, + ACTIONS(1399), 1, + anon_sym_LBRACK, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2601), 1, + sym_parameters, + STATE(2632), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113637] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3855), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111312] = 2, + [113648] = 5, + ACTIONS(3818), 1, + anon_sym_RPAREN, + ACTIONS(3997), 1, + sym_identifier, + STATE(2381), 1, + sym_dotted_name, + STATE(2595), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111323] = 2, + [113665] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 4, + ACTIONS(3855), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111334] = 2, + anon_sym_RBRACE, + [113676] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, + ACTIONS(3851), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111345] = 4, - ACTIONS(3314), 1, + anon_sym_RBRACE, + [113687] = 5, + ACTIONS(3941), 1, + anon_sym_as, + ACTIONS(3999), 1, anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4001), 1, + anon_sym_RBRACK, + STATE(2325), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 2, - sym__newline, - anon_sym_SEMI, - [111360] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(3995), 1, + [113704] = 5, + ACTIONS(3818), 1, anon_sym_RPAREN, ACTIONS(3997), 1, - anon_sym_COMMA, - STATE(2473), 1, - aux_sym_case_clause_repeat1, + sym_identifier, + STATE(2381), 1, + sym_dotted_name, + STATE(2595), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111377] = 2, + [113721] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + ACTIONS(3762), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111388] = 5, - ACTIONS(3951), 1, + [113732] = 4, + ACTIONS(4005), 1, + anon_sym_COMMA, + STATE(2228), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4003), 2, + sym__newline, + anon_sym_SEMI, + [113747] = 5, + ACTIONS(3926), 1, anon_sym_as, - ACTIONS(3999), 1, + ACTIONS(4008), 1, + anon_sym_RPAREN, + ACTIONS(4010), 1, anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_RBRACK, - STATE(2475), 1, + STATE(2538), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111405] = 2, + [113764] = 5, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4012), 1, + anon_sym_RBRACE, + ACTIONS(4014), 1, + sym_type_conversion, + STATE(2657), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113781] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, + ACTIONS(3885), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111416] = 2, + anon_sym_RBRACE, + [113792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 4, + ACTIONS(3893), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111427] = 2, + [113803] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 4, + ACTIONS(3771), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111438] = 5, - ACTIONS(3792), 1, + [113814] = 5, + ACTIONS(3830), 1, anon_sym_RPAREN, - ACTIONS(3917), 1, + ACTIONS(3997), 1, sym_identifier, - STATE(2286), 1, + STATE(2381), 1, sym_dotted_name, - STATE(2553), 1, + STATE(2595), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111455] = 2, + [113831] = 5, + ACTIONS(3926), 1, + anon_sym_as, + ACTIONS(4016), 1, + anon_sym_RPAREN, + ACTIONS(4018), 1, + anon_sym_COMMA, + STATE(2323), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113848] = 4, + ACTIONS(4020), 1, + anon_sym_COMMA, + STATE(2236), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3985), 2, + anon_sym_if, + anon_sym_COLON, + [113863] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 4, + ACTIONS(3760), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111466] = 2, + [113874] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, + ACTIONS(3784), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111477] = 4, - ACTIONS(4005), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym_print_statement_repeat1, + [113885] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4003), 2, - sym__newline, - anon_sym_SEMI, - [111492] = 2, + ACTIONS(3775), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [113896] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3809), 4, + ACTIONS(3798), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111503] = 5, - ACTIONS(3908), 1, + anon_sym_RBRACE, + [113907] = 3, + ACTIONS(3734), 1, anon_sym_as, - ACTIONS(4007), 1, - anon_sym_RPAREN, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(2365), 1, - aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111520] = 2, + ACTIONS(4023), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [113920] = 4, + ACTIONS(4027), 1, + anon_sym_DOT, + STATE(2177), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 4, + ACTIONS(4025), 2, + anon_sym_import, + sym_identifier, + [113935] = 4, + ACTIONS(4029), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111531] = 3, - ACTIONS(3566), 1, - anon_sym_as, + STATE(2069), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 3, + ACTIONS(1451), 2, + sym__newline, + anon_sym_SEMI, + [113950] = 5, + ACTIONS(3926), 1, + anon_sym_as, + ACTIONS(4031), 1, + anon_sym_RPAREN, + ACTIONS(4033), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [111544] = 2, + STATE(2340), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 4, + [113967] = 4, + ACTIONS(3920), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111555] = 5, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2519), 1, - sym_parameters, - STATE(2524), 1, - sym_type_parameter, + STATE(2194), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111572] = 2, + ACTIONS(4035), 2, + sym__newline, + anon_sym_SEMI, + [113982] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, + ACTIONS(3861), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111583] = 2, + [113993] = 5, + ACTIONS(4037), 1, + anon_sym_case, + ACTIONS(4040), 1, + sym__dedent, + STATE(2247), 1, + aux_sym__match_block_repeat1, + STATE(2598), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111594] = 2, + [114010] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3815), 4, + ACTIONS(3806), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111605] = 5, - ACTIONS(3908), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_RPAREN, - ACTIONS(4017), 1, + [114021] = 4, + ACTIONS(3920), 1, anon_sym_COMMA, - STATE(2484), 1, - aux_sym_case_clause_repeat1, + STATE(2194), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4042), 2, + sym__newline, + anon_sym_SEMI, + [114036] = 5, + ACTIONS(3997), 1, + sym_identifier, + STATE(2217), 1, + sym_dotted_name, + STATE(2401), 1, + sym_aliased_import, + STATE(2685), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111622] = 2, + [114053] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 4, + ACTIONS(3724), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111633] = 2, + [114064] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3819), 4, + ACTIONS(3798), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [111644] = 2, + [114075] = 4, + ACTIONS(4046), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3835), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [111655] = 2, + ACTIONS(4044), 2, + sym__newline, + anon_sym_SEMI, + [114090] = 5, + ACTIONS(3914), 1, + anon_sym_case, + ACTIONS(4048), 1, + sym__dedent, + STATE(2247), 1, + aux_sym__match_block_repeat1, + STATE(2598), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114107] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3849), 4, + ACTIONS(3806), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111666] = 4, - ACTIONS(3314), 1, + [114118] = 4, + ACTIONS(3270), 1, anon_sym_COMMA, - STATE(2108), 1, + STATE(2069), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4019), 2, + ACTIONS(4050), 2, sym__newline, anon_sym_SEMI, - [111681] = 2, + [114133] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111692] = 4, - ACTIONS(4021), 1, - anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + ACTIONS(4052), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [114144] = 5, + ACTIONS(3997), 1, + sym_identifier, + STATE(2217), 1, + sym_dotted_name, + STATE(2401), 1, + sym_aliased_import, + STATE(2688), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3981), 2, - sym__newline, - anon_sym_SEMI, - [111707] = 2, + [114161] = 5, + ACTIONS(1399), 1, + anon_sym_LBRACK, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2630), 1, + sym_parameters, + STATE(2633), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3748), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111718] = 2, + [114178] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3758), 4, + ACTIONS(3775), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111729] = 4, - ACTIONS(4023), 1, - anon_sym_COMMA, - STATE(2215), 1, - aux_sym_case_clause_repeat1, + [114189] = 5, + ACTIONS(3375), 1, + sym_identifier, + STATE(2048), 1, + sym_dotted_name, + STATE(2276), 1, + sym_aliased_import, + STATE(2600), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_if, - anon_sym_COLON, - [111744] = 2, + [114206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3811), 4, - anon_sym_RPAREN, + ACTIONS(3887), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111755] = 2, + anon_sym_RBRACE, + [114217] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3823), 4, + ACTIONS(3724), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111766] = 4, - ACTIONS(4028), 1, - anon_sym_COLON, - ACTIONS(4030), 1, - anon_sym_EQ, + [114228] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_RPAREN, + ACTIONS(3904), 4, anon_sym_COMMA, - [111781] = 4, - ACTIONS(4034), 1, - anon_sym_DOT, - STATE(2219), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4032), 2, - anon_sym_import, - sym_identifier, - [111796] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [114239] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 4, - anon_sym_RPAREN, + ACTIONS(3912), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111807] = 2, + anon_sym_RBRACE, + [114250] = 4, + ACTIONS(4054), 1, + anon_sym_COMMA, + STATE(2214), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3781), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111818] = 2, + ACTIONS(4044), 2, + sym__newline, + anon_sym_SEMI, + [114265] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3786), 4, + ACTIONS(3904), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111829] = 2, + [114276] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4037), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [111840] = 5, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4039), 1, - anon_sym_RBRACE, - ACTIONS(4041), 1, - sym_type_conversion, - STATE(2677), 1, - sym_format_specifier, + ACTIONS(3824), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [114287] = 4, + ACTIONS(3920), 1, + anon_sym_COMMA, + STATE(2249), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111857] = 2, + ACTIONS(4056), 2, + sym__newline, + anon_sym_SEMI, + [114302] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3788), 4, - anon_sym_RPAREN, + ACTIONS(3908), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111868] = 2, + anon_sym_RBRACE, + [114313] = 5, + ACTIONS(1399), 1, + anon_sym_LBRACK, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2606), 1, + sym_parameters, + STATE(2638), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114330] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 4, + ACTIONS(3754), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111879] = 5, - ACTIONS(1569), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2558), 1, - sym_parameters, - STATE(2585), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111896] = 5, - ACTIONS(1569), 1, + [114341] = 5, + ACTIONS(1399), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(3995), 1, anon_sym_LPAREN, - STATE(2559), 1, + STATE(2607), 1, sym_parameters, - STATE(2586), 1, - sym_type_parameter, + STATE(2640), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111913] = 2, + [114358] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3762), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, + [114369] = 5, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4058), 1, anon_sym_RBRACE, - [111924] = 4, - ACTIONS(4045), 1, - anon_sym_COMMA, - STATE(2230), 1, - aux_sym_print_statement_repeat1, + ACTIONS(4060), 1, + sym_type_conversion, + STATE(2719), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4043), 2, - sym__newline, - anon_sym_SEMI, - [111939] = 4, - ACTIONS(3927), 1, + [114386] = 4, + ACTIONS(3732), 1, anon_sym_COMMA, - STATE(2136), 1, - aux_sym_global_statement_repeat1, + STATE(2253), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4048), 2, + ACTIONS(3730), 2, sym__newline, anon_sym_SEMI, - [111954] = 2, + [114401] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3847), 4, + ACTIONS(3764), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111965] = 2, + [114412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 4, + ACTIONS(3887), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111976] = 2, + [114423] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, - anon_sym_RPAREN, + ACTIONS(3822), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111987] = 2, + anon_sym_RBRACE, + [114434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3813), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111998] = 5, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3829), 1, + ACTIONS(3308), 2, anon_sym_COLON, - ACTIONS(3831), 1, anon_sym_PIPE, - ACTIONS(4050), 1, - anon_sym_EQ, + ACTIONS(4062), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [114447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112015] = 5, - ACTIONS(3951), 1, - anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(3887), 4, anon_sym_COMMA, - ACTIONS(4054), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2447), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [114458] = 4, + ACTIONS(4066), 1, + anon_sym_COMMA, + STATE(2228), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112032] = 2, + ACTIONS(4064), 2, + sym__newline, + anon_sym_SEMI, + [114473] = 4, + ACTIONS(4070), 1, + anon_sym_COMMA, + STATE(2228), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3888), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [112043] = 5, - ACTIONS(3792), 1, - anon_sym_RPAREN, - ACTIONS(3917), 1, - sym_identifier, - STATE(2286), 1, - sym_dotted_name, - STATE(2553), 1, - sym_aliased_import, + ACTIONS(4068), 2, + sym__newline, + anon_sym_SEMI, + [114488] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112060] = 2, + ACTIONS(3784), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [114499] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3881), 4, + ACTIONS(3826), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [112071] = 3, - ACTIONS(3867), 1, - anon_sym_as, + [114510] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [112084] = 4, - ACTIONS(3001), 1, - anon_sym_RBRACK, - ACTIONS(3073), 1, + ACTIONS(4072), 4, anon_sym_COMMA, - STATE(2451), 1, - aux_sym__collection_elements_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [114521] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112098] = 4, - ACTIONS(4058), 1, + ACTIONS(3682), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4060), 1, + anon_sym_as, + [114531] = 4, + ACTIONS(4074), 1, + anon_sym_COMMA, + ACTIONS(4076), 1, anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + STATE(2400), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112112] = 3, - ACTIONS(4064), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4062), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112124] = 3, - ACTIONS(4068), 1, - anon_sym_in, + [114545] = 4, + ACTIONS(1291), 1, + anon_sym_RBRACK, + ACTIONS(4078), 1, + anon_sym_COMMA, + STATE(2391), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4066), 2, - sym__newline, - anon_sym_SEMI, - [112136] = 4, - ACTIONS(4070), 1, + [114559] = 4, + ACTIONS(4080), 1, anon_sym_SEMI, - ACTIONS(4072), 1, + ACTIONS(4082), 1, sym__newline, - STATE(2254), 1, + STATE(2300), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112150] = 4, - ACTIONS(4074), 1, + [114573] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2920), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4077), 1, + anon_sym_EQ, + [114583] = 4, + ACTIONS(1255), 1, anon_sym_COLON, - STATE(2247), 1, - aux_sym__parameters_repeat1, + ACTIONS(4084), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112164] = 4, - ACTIONS(3042), 1, + [114597] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3062), 1, + ACTIONS(3103), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112178] = 4, - ACTIONS(4079), 1, - sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(784), 1, - sym__match_block, + [114611] = 4, + ACTIONS(4086), 1, + anon_sym_COMMA, + ACTIONS(4089), 1, + anon_sym_RBRACE, + STATE(2294), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112192] = 4, - ACTIONS(4083), 1, + [114625] = 4, + ACTIONS(1928), 1, + anon_sym_RBRACK, + ACTIONS(4091), 1, anon_sym_COMMA, - ACTIONS(4085), 1, - anon_sym_COLON, - STATE(2285), 1, - aux_sym_match_statement_repeat1, + STATE(2331), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112206] = 4, - ACTIONS(4087), 1, + [114639] = 4, + ACTIONS(3010), 1, anon_sym_COMMA, - ACTIONS(4089), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + ACTIONS(3022), 1, + anon_sym_RBRACE, + STATE(2542), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112220] = 4, - ACTIONS(3483), 1, + [114653] = 4, + ACTIONS(3450), 1, anon_sym_COMMA, - ACTIONS(3485), 1, + ACTIONS(3452), 1, anon_sym_RBRACE, - STATE(2257), 1, + STATE(2305), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112234] = 3, - ACTIONS(3908), 1, - anon_sym_as, + [114667] = 4, + ACTIONS(1399), 1, + anon_sym_LBRACK, + ACTIONS(4093), 1, + anon_sym_EQ, + STATE(2140), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112246] = 4, - ACTIONS(617), 1, + [114681] = 4, + ACTIONS(3841), 1, + anon_sym_DOT, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(4095), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114695] = 4, + ACTIONS(613), 1, sym__newline, - ACTIONS(4091), 1, + ACTIONS(4097), 1, anon_sym_SEMI, - STATE(2446), 1, + STATE(2347), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112260] = 4, - ACTIONS(3042), 1, + [114709] = 4, + ACTIONS(1447), 1, + anon_sym_COLON, + ACTIONS(4099), 1, anon_sym_COMMA, - ACTIONS(4093), 1, + STATE(2499), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114723] = 4, + ACTIONS(3058), 1, + anon_sym_COMMA, + ACTIONS(4101), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112274] = 4, - ACTIONS(3042), 1, + [114737] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(4095), 1, + ACTIONS(4103), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112288] = 4, - ACTIONS(1293), 1, + [114751] = 4, + ACTIONS(1255), 1, + anon_sym_RPAREN, + ACTIONS(4105), 1, + anon_sym_COMMA, + STATE(2399), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114765] = 4, + ACTIONS(1295), 1, anon_sym_RBRACE, - ACTIONS(4097), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2294), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112302] = 2, + [114779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 3, - anon_sym_RPAREN, + ACTIONS(4023), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - [112312] = 4, - ACTIONS(4011), 1, + [114789] = 4, + ACTIONS(3162), 1, anon_sym_RPAREN, - ACTIONS(4099), 1, + ACTIONS(3164), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + STATE(2314), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112326] = 4, - ACTIONS(3077), 1, + [114803] = 4, + ACTIONS(4109), 1, anon_sym_RPAREN, - ACTIONS(3079), 1, + ACTIONS(4111), 1, anon_sym_COMMA, - STATE(2266), 1, + STATE(2315), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112340] = 4, - ACTIONS(4102), 1, - anon_sym_RPAREN, - ACTIONS(4104), 1, + [114817] = 4, + ACTIONS(4113), 1, anon_sym_COMMA, - STATE(2268), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4115), 1, + anon_sym_COLON, + STATE(2505), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112354] = 4, - ACTIONS(4106), 1, + [114831] = 4, + ACTIONS(4117), 1, anon_sym_COMMA, - ACTIONS(4109), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + ACTIONS(4119), 1, + anon_sym_in, + STATE(2404), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112368] = 4, - ACTIONS(3282), 1, + [114845] = 4, + ACTIONS(3283), 1, anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3285), 1, anon_sym_RBRACK, - STATE(2271), 1, + STATE(2319), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112382] = 4, - ACTIONS(3494), 1, - anon_sym_RBRACE, - ACTIONS(4111), 1, - anon_sym_COMMA, - STATE(2264), 1, - aux_sym__collection_elements_repeat1, + [114859] = 4, + ACTIONS(3841), 1, + anon_sym_DOT, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(4121), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112396] = 4, - ACTIONS(3796), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_COLON, - STATE(2730), 1, - sym_argument_list, + [114873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112410] = 4, - ACTIONS(1225), 1, + ACTIONS(3682), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [114883] = 4, + ACTIONS(4123), 1, anon_sym_RPAREN, - ACTIONS(4116), 1, + ACTIONS(4125), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112424] = 4, - ACTIONS(3235), 1, + [114897] = 4, + ACTIONS(4127), 1, anon_sym_RPAREN, - ACTIONS(4118), 1, + ACTIONS(4129), 1, anon_sym_COMMA, - STATE(2267), 1, - aux_sym_assert_statement_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112438] = 4, - ACTIONS(1227), 1, + [114911] = 4, + ACTIONS(4131), 1, anon_sym_RPAREN, - ACTIONS(4121), 1, + ACTIONS(4133), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112452] = 4, - ACTIONS(3001), 1, - anon_sym_RPAREN, - ACTIONS(3042), 1, - anon_sym_COMMA, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + [114925] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112466] = 4, - ACTIONS(4123), 1, + ACTIONS(3682), 3, anon_sym_COMMA, - ACTIONS(4125), 1, + anon_sym_as, + anon_sym_RBRACE, + [114935] = 4, + ACTIONS(4135), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112480] = 4, - ACTIONS(4127), 1, + [114949] = 4, + ACTIONS(4139), 1, anon_sym_COMMA, - ACTIONS(4129), 1, + ACTIONS(4141), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112494] = 4, - ACTIONS(1021), 1, - anon_sym_RBRACK, - ACTIONS(4131), 1, + [114963] = 4, + ACTIONS(2987), 1, + anon_sym_COLON, + ACTIONS(4143), 1, anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, + STATE(2343), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112508] = 3, - ACTIONS(4133), 1, - anon_sym_EQ, + [114977] = 4, + ACTIONS(4145), 1, + anon_sym_COMMA, + ACTIONS(4147), 1, + anon_sym_RBRACK, + STATE(2400), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_COMMA, - anon_sym_COLON, - [112520] = 4, - ACTIONS(4079), 1, - sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(822), 1, - sym__match_block, + [114991] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112534] = 4, - ACTIONS(3146), 1, + ACTIONS(1678), 3, anon_sym_RPAREN, - ACTIONS(3148), 1, anon_sym_COMMA, - STATE(2469), 1, - aux_sym_argument_list_repeat1, + anon_sym_EQ, + [115001] = 4, + ACTIONS(2680), 1, + anon_sym_RPAREN, + ACTIONS(4149), 1, + anon_sym_COMMA, + STATE(2537), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112548] = 4, - ACTIONS(4135), 1, - anon_sym_RPAREN, - ACTIONS(4137), 1, + [115015] = 3, + ACTIONS(4153), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4151), 2, + sym__newline, + anon_sym_SEMI, + [115027] = 4, + ACTIONS(2716), 1, + anon_sym_RBRACK, + ACTIONS(4155), 1, anon_sym_COMMA, - STATE(2405), 1, - aux_sym_argument_list_repeat1, + STATE(2376), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112562] = 4, - ACTIONS(4139), 1, + [115041] = 4, + ACTIONS(4157), 1, anon_sym_COMMA, - ACTIONS(4141), 1, - anon_sym_RBRACE, - STATE(2281), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4160), 1, + anon_sym_RBRACK, + STATE(2326), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112576] = 3, - ACTIONS(3592), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [115055] = 4, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(4162), 1, + anon_sym_COLON, + STATE(2784), 1, + sym_argument_list, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3594), 2, - anon_sym_LBRACE, + [115069] = 4, + ACTIONS(3239), 1, + anon_sym_COLON, + ACTIONS(4164), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115083] = 4, + ACTIONS(4167), 1, + anon_sym_COMMA, + ACTIONS(4169), 1, anon_sym_RBRACE, - [112588] = 4, - ACTIONS(2706), 1, + STATE(2336), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115097] = 4, + ACTIONS(2987), 1, anon_sym_RPAREN, - ACTIONS(4143), 1, + ACTIONS(4171), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + STATE(2429), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112602] = 4, - ACTIONS(2708), 1, + [115111] = 4, + ACTIONS(2911), 1, anon_sym_RBRACK, - ACTIONS(4145), 1, + ACTIONS(4173), 1, anon_sym_COMMA, STATE(2331), 1, - aux_sym_case_clause_repeat1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112616] = 4, - ACTIONS(4147), 1, + [115125] = 4, + ACTIONS(2666), 1, + anon_sym_RPAREN, + ACTIONS(4176), 1, anon_sym_COMMA, - ACTIONS(4149), 1, - anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, + STATE(2537), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112630] = 4, - ACTIONS(4079), 1, - sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(731), 1, - sym__match_block, + [115139] = 4, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_COLON, + STATE(1936), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112644] = 4, - ACTIONS(4151), 1, + [115153] = 4, + ACTIONS(2668), 1, + anon_sym_RBRACK, + ACTIONS(4180), 1, anon_sym_COMMA, - ACTIONS(4153), 1, - anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, + STATE(2376), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112658] = 4, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4155), 1, + [115167] = 4, + ACTIONS(4182), 1, + anon_sym_COMMA, + ACTIONS(4184), 1, anon_sym_RBRACE, - STATE(2749), 1, - sym_format_specifier, + STATE(2364), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112672] = 4, - ACTIONS(4157), 1, + [115181] = 4, + ACTIONS(4186), 1, anon_sym_COMMA, - ACTIONS(4160), 1, - anon_sym_COLON, - STATE(2285), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4188), 1, + anon_sym_RBRACE, + STATE(2341), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112686] = 3, - ACTIONS(3898), 1, + [115195] = 3, + ACTIONS(4192), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 2, - anon_sym_RPAREN, + ACTIONS(4190), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115207] = 4, + ACTIONS(4194), 1, anon_sym_COMMA, - [112698] = 2, + ACTIONS(4196), 1, + anon_sym_RBRACE, + STATE(2341), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 3, + [115221] = 4, + ACTIONS(3460), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [112708] = 4, - ACTIONS(2650), 1, + ACTIONS(4198), 1, + anon_sym_COLON, + STATE(2450), 1, + aux_sym_except_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115235] = 4, + ACTIONS(2674), 1, anon_sym_RPAREN, - ACTIONS(4162), 1, + ACTIONS(4200), 1, anon_sym_COMMA, - STATE(2259), 1, + STATE(2537), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112722] = 3, - ACTIONS(3670), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3672), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112734] = 3, - ACTIONS(3674), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3676), 2, - anon_sym_LBRACE, + [115249] = 4, + ACTIONS(4202), 1, + anon_sym_COMMA, + ACTIONS(4205), 1, anon_sym_RBRACE, - [112746] = 3, - ACTIONS(3678), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + STATE(2341), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3680), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112758] = 4, - ACTIONS(3910), 1, + [115263] = 4, + ACTIONS(4207), 1, anon_sym_RPAREN, - ACTIONS(4164), 1, + ACTIONS(4209), 1, anon_sym_COMMA, - STATE(2292), 1, - aux_sym__import_list_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112772] = 4, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(4167), 1, - anon_sym_import, - STATE(2757), 1, - sym_dotted_name, + [115277] = 4, + ACTIONS(4212), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_COLON, + STATE(2343), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112786] = 2, + [115291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [112796] = 4, - ACTIONS(3538), 1, - anon_sym_PIPE, - ACTIONS(4169), 1, - anon_sym_COLON, - STATE(1907), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(2487), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [115301] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112810] = 4, - ACTIONS(4171), 1, + ACTIONS(4072), 3, anon_sym_COMMA, - ACTIONS(4173), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2458), 1, - aux_sym_dict_pattern_repeat1, + [115311] = 4, + ACTIONS(2700), 1, + anon_sym_RPAREN, + ACTIONS(4217), 1, + anon_sym_COMMA, + STATE(2537), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112824] = 4, - ACTIONS(4079), 1, + [115325] = 4, + ACTIONS(4219), 1, + anon_sym_SEMI, + ACTIONS(4222), 1, sym__newline, - ACTIONS(4081), 1, - sym__indent, - STATE(769), 1, - sym__match_block, + STATE(2347), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112838] = 4, - ACTIONS(3042), 1, + [115339] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3085), 1, + ACTIONS(3136), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112852] = 4, - ACTIONS(4175), 1, + [115353] = 4, + ACTIONS(2911), 1, + anon_sym_RPAREN, + ACTIONS(4224), 1, anon_sym_COMMA, - ACTIONS(4177), 1, - anon_sym_COLON, - STATE(2389), 1, - aux_sym__parameters_repeat1, + STATE(2349), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112866] = 4, - ACTIONS(3379), 1, + [115367] = 4, + ACTIONS(3502), 1, anon_sym_COMMA, - ACTIONS(3381), 1, + ACTIONS(3504), 1, anon_sym_RBRACE, - STATE(2302), 1, + STATE(2351), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112880] = 3, - ACTIONS(4133), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_COMMA, - anon_sym_COLON, - [112892] = 4, - ACTIONS(1331), 1, + [115381] = 4, + ACTIONS(1339), 1, anon_sym_RBRACE, - ACTIONS(4179), 1, + ACTIONS(4227), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2294), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112906] = 4, - ACTIONS(3087), 1, + [115395] = 4, + ACTIONS(3076), 1, anon_sym_RPAREN, - ACTIONS(3089), 1, + ACTIONS(3078), 1, anon_sym_COMMA, - STATE(2308), 1, + STATE(2356), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112920] = 4, - ACTIONS(4181), 1, + [115409] = 4, + ACTIONS(4229), 1, anon_sym_RPAREN, - ACTIONS(4183), 1, + ACTIONS(4231), 1, anon_sym_COMMA, - STATE(2310), 1, + STATE(2358), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112934] = 4, - ACTIONS(3296), 1, - anon_sym_COMMA, + [115423] = 4, ACTIONS(3298), 1, + anon_sym_COMMA, + ACTIONS(3300), 1, anon_sym_RBRACK, - STATE(2312), 1, + STATE(2361), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112948] = 4, - ACTIONS(4177), 1, - anon_sym_RPAREN, - ACTIONS(4185), 1, + [115437] = 4, + ACTIONS(1255), 1, + anon_sym_RBRACK, + ACTIONS(4233), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112962] = 2, + STATE(2507), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [112972] = 4, - ACTIONS(1157), 1, + [115451] = 4, + ACTIONS(4235), 1, anon_sym_RPAREN, - ACTIONS(4187), 1, + ACTIONS(4237), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112986] = 4, - ACTIONS(3494), 1, - anon_sym_RBRACK, - ACTIONS(4189), 1, + [115465] = 3, + ACTIONS(3688), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3690), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115477] = 4, + ACTIONS(4239), 1, + anon_sym_RPAREN, + ACTIONS(4241), 1, anon_sym_COMMA, - STATE(2309), 1, - aux_sym__collection_elements_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113000] = 4, - ACTIONS(1159), 1, + [115491] = 4, + ACTIONS(4243), 1, anon_sym_RPAREN, - ACTIONS(4192), 1, + ACTIONS(4245), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113014] = 4, - ACTIONS(4194), 1, + [115505] = 4, + ACTIONS(4247), 1, anon_sym_COMMA, - ACTIONS(4196), 1, + ACTIONS(4249), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113028] = 4, - ACTIONS(4198), 1, + [115519] = 4, + ACTIONS(4251), 1, anon_sym_COMMA, - ACTIONS(4200), 1, + ACTIONS(4253), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113042] = 3, - ACTIONS(4204), 1, - anon_sym_as, + [115533] = 4, + ACTIONS(4255), 1, + anon_sym_COMMA, + ACTIONS(4257), 1, + anon_sym_RBRACK, + STATE(2400), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4202), 2, + [115547] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [113054] = 4, - ACTIONS(1001), 1, - anon_sym_RBRACK, - ACTIONS(4206), 1, + ACTIONS(3156), 1, + anon_sym_RPAREN, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115561] = 4, + ACTIONS(4259), 1, anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4261), 1, + anon_sym_RBRACE, + STATE(2341), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113068] = 4, - ACTIONS(3265), 1, + [115575] = 4, + ACTIONS(3360), 1, anon_sym_COMMA, - ACTIONS(3267), 1, + ACTIONS(3362), 1, anon_sym_RBRACK, - STATE(2243), 1, + STATE(2442), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113082] = 4, - ACTIONS(3472), 1, - sym_identifier, - STATE(2241), 1, - sym_dotted_name, - STATE(2359), 1, - sym_aliased_import, + [115589] = 3, + ACTIONS(3941), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113096] = 4, - ACTIONS(4208), 1, + ACTIONS(3985), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115601] = 4, + ACTIONS(4263), 1, anon_sym_COMMA, - ACTIONS(4210), 1, + ACTIONS(4265), 1, anon_sym_RBRACE, - STATE(2322), 1, + STATE(2371), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113110] = 4, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4212), 1, - anon_sym_COLON, + [115615] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113124] = 4, - ACTIONS(2676), 1, - anon_sym_RPAREN, - ACTIONS(4214), 1, + ACTIONS(4072), 3, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113138] = 4, - ACTIONS(4216), 1, + anon_sym_as, + anon_sym_RBRACK, + [115625] = 4, + ACTIONS(2688), 1, anon_sym_RPAREN, - ACTIONS(4218), 1, + ACTIONS(4267), 1, anon_sym_COMMA, - STATE(2417), 1, - aux_sym__patterns_repeat1, + STATE(2537), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113152] = 4, - ACTIONS(2678), 1, + [115639] = 4, + ACTIONS(2690), 1, anon_sym_RBRACK, - ACTIONS(4220), 1, + ACTIONS(4269), 1, anon_sym_COMMA, - STATE(2331), 1, + STATE(2376), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113166] = 4, - ACTIONS(4222), 1, + [115653] = 4, + ACTIONS(4271), 1, anon_sym_COMMA, - ACTIONS(4224), 1, + ACTIONS(4273), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2341), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113180] = 4, - ACTIONS(4226), 1, + [115667] = 4, + ACTIONS(4275), 1, anon_sym_COMMA, - ACTIONS(4228), 1, + ACTIONS(4277), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2341), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113194] = 4, - ACTIONS(993), 1, - anon_sym_RBRACK, - ACTIONS(4230), 1, - anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113208] = 4, - ACTIONS(4232), 1, - anon_sym_RPAREN, - ACTIONS(4234), 1, + [115681] = 4, + ACTIONS(3460), 1, anon_sym_COMMA, - STATE(2398), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4279), 1, + anon_sym_COLON, + STATE(2450), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113222] = 4, - ACTIONS(4236), 1, + [115695] = 4, + ACTIONS(4281), 1, sym__newline, - ACTIONS(4238), 1, + ACTIONS(4283), 1, sym__indent, - STATE(743), 1, + STATE(802), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113236] = 4, - ACTIONS(3040), 1, - anon_sym_RPAREN, - ACTIONS(3042), 1, - anon_sym_COMMA, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113250] = 3, - ACTIONS(3951), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4011), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [113262] = 2, + [115709] = 4, + ACTIONS(4285), 1, + anon_sym_SEMI, + ACTIONS(4287), 1, + sym__newline, + STATE(2403), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4013), 3, - anon_sym_COMMA, - anon_sym_as, + [115723] = 4, + ACTIONS(3985), 1, anon_sym_RBRACK, - [113272] = 4, - ACTIONS(2686), 1, - anon_sym_RPAREN, - ACTIONS(4240), 1, + ACTIONS(4289), 1, anon_sym_COMMA, - STATE(2259), 1, + STATE(2376), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113286] = 4, - ACTIONS(4011), 1, - anon_sym_RBRACK, - ACTIONS(4242), 1, + [115737] = 4, + ACTIONS(2696), 1, + anon_sym_RPAREN, + ACTIONS(4292), 1, anon_sym_COMMA, - STATE(2331), 1, + STATE(2537), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113300] = 4, - ACTIONS(625), 1, - sym__newline, - ACTIONS(4245), 1, - anon_sym_SEMI, - STATE(2446), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113314] = 4, - ACTIONS(2989), 1, - anon_sym_COMMA, - ACTIONS(3001), 1, + [115751] = 4, + ACTIONS(3577), 1, anon_sym_RBRACE, - STATE(2457), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113328] = 4, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4247), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113342] = 4, - ACTIONS(1247), 1, - anon_sym_RPAREN, - ACTIONS(4249), 1, + ACTIONS(4294), 1, anon_sym_COMMA, - STATE(2449), 1, + STATE(2378), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113356] = 4, - ACTIONS(4251), 1, - anon_sym_SEMI, - ACTIONS(4253), 1, - sym__newline, - STATE(2361), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, + [115765] = 3, + ACTIONS(3567), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [113370] = 4, - ACTIONS(1291), 1, + ACTIONS(3569), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4255), 1, + [115777] = 4, + ACTIONS(4297), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4299), 1, + anon_sym_RBRACE, + STATE(2341), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113384] = 4, - ACTIONS(4087), 1, - anon_sym_COMMA, - ACTIONS(4257), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + [115791] = 3, + ACTIONS(3989), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113398] = 4, - ACTIONS(3042), 1, + ACTIONS(4023), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3095), 1, + [115803] = 4, + ACTIONS(3058), 1, + anon_sym_COMMA, + ACTIONS(3140), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113412] = 4, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4259), 1, - anon_sym_RBRACE, - STATE(2671), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113426] = 4, - ACTIONS(3394), 1, + [115817] = 4, + ACTIONS(3980), 1, + anon_sym_RPAREN, + ACTIONS(4301), 1, anon_sym_COMMA, - ACTIONS(3396), 1, - anon_sym_RBRACE, - STATE(2344), 1, - aux_sym_dictionary_repeat1, + STATE(2383), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113440] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, + [115831] = 4, + ACTIONS(3056), 1, anon_sym_RPAREN, - STATE(2335), 1, + ACTIONS(3058), 1, + anon_sym_COMMA, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113454] = 4, - ACTIONS(3367), 1, + [115845] = 4, + ACTIONS(3486), 1, anon_sym_COMMA, - ACTIONS(4261), 1, - anon_sym_COLON, - STATE(2357), 1, - aux_sym_except_clause_repeat1, + ACTIONS(3488), 1, + anon_sym_RBRACE, + STATE(2386), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113468] = 4, - ACTIONS(1317), 1, + [115859] = 4, + ACTIONS(1319), 1, anon_sym_RBRACE, - ACTIONS(4263), 1, + ACTIONS(4304), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2294), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113482] = 4, - ACTIONS(3097), 1, + [115873] = 4, + ACTIONS(3072), 1, anon_sym_RPAREN, - ACTIONS(3099), 1, + ACTIONS(3074), 1, anon_sym_COMMA, - STATE(2349), 1, + STATE(2392), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113496] = 4, - ACTIONS(4265), 1, + [115887] = 4, + ACTIONS(4306), 1, anon_sym_RPAREN, - ACTIONS(4267), 1, + ACTIONS(4308), 1, anon_sym_COMMA, - STATE(2351), 1, + STATE(2393), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113510] = 4, - ACTIONS(1449), 1, - anon_sym_COLON, - ACTIONS(4269), 1, + [115901] = 4, + ACTIONS(3304), 1, anon_sym_COMMA, - STATE(2407), 1, - aux_sym_with_clause_repeat1, + ACTIONS(3306), 1, + anon_sym_RBRACK, + STATE(2396), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113524] = 4, - ACTIONS(3300), 1, + [115915] = 4, + ACTIONS(1335), 1, + anon_sym_RBRACE, + ACTIONS(4310), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + STATE(2294), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115929] = 4, + ACTIONS(3577), 1, anon_sym_RBRACK, - STATE(2353), 1, - aux_sym_subscript_repeat1, + ACTIONS(4312), 1, + anon_sym_COMMA, + STATE(2391), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113538] = 4, - ACTIONS(1175), 1, + [115943] = 4, + ACTIONS(4315), 1, anon_sym_RPAREN, - ACTIONS(4271), 1, + ACTIONS(4317), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113552] = 4, - ACTIONS(4273), 1, + [115957] = 4, + ACTIONS(4319), 1, + anon_sym_RPAREN, + ACTIONS(4321), 1, anon_sym_COMMA, - ACTIONS(4275), 1, - anon_sym_COLON, - STATE(2347), 1, - aux_sym_with_clause_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113566] = 4, - ACTIONS(1177), 1, + [115971] = 4, + ACTIONS(4323), 1, anon_sym_RPAREN, - ACTIONS(4277), 1, + ACTIONS(4325), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113580] = 4, - ACTIONS(4279), 1, + [115985] = 4, + ACTIONS(4327), 1, anon_sym_COMMA, - ACTIONS(4281), 1, + ACTIONS(4329), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113594] = 4, - ACTIONS(4283), 1, + [115999] = 4, + ACTIONS(4331), 1, anon_sym_COMMA, - ACTIONS(4285), 1, + ACTIONS(4333), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113608] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1688), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [113618] = 4, - ACTIONS(3413), 1, + [116013] = 4, + ACTIONS(3480), 1, anon_sym_COMMA, - ACTIONS(3415), 1, + ACTIONS(3482), 1, anon_sym_RBRACE, - STATE(2384), 1, + STATE(2428), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113632] = 4, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4287), 1, - anon_sym_COLON, + [116027] = 4, + ACTIONS(605), 1, + sym__newline, + ACTIONS(4335), 1, + anon_sym_SEMI, + STATE(2347), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113646] = 4, - ACTIONS(4289), 1, + [116041] = 4, + ACTIONS(3239), 1, + anon_sym_RPAREN, + ACTIONS(4337), 1, anon_sym_COMMA, - ACTIONS(4292), 1, - anon_sym_COLON, - STATE(2357), 1, - aux_sym_except_clause_repeat1, + STATE(2399), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113660] = 4, - ACTIONS(4294), 1, + [116055] = 4, + ACTIONS(4340), 1, anon_sym_COMMA, - ACTIONS(4297), 1, - anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4343), 1, + anon_sym_RBRACK, + STATE(2400), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113674] = 2, + [116069] = 4, + ACTIONS(3730), 1, + anon_sym_RPAREN, + ACTIONS(3987), 1, + anon_sym_COMMA, + STATE(2540), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 3, + [116083] = 4, + ACTIONS(4345), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [113684] = 3, - ACTIONS(4030), 1, - anon_sym_EQ, + ACTIONS(4347), 1, + sym__indent, + STATE(848), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [113696] = 4, - ACTIONS(623), 1, + [116097] = 4, + ACTIONS(607), 1, sym__newline, - ACTIONS(4299), 1, + ACTIONS(4349), 1, anon_sym_SEMI, - STATE(2446), 1, + STATE(2347), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113710] = 4, - ACTIONS(971), 1, + [116111] = 4, + ACTIONS(927), 1, anon_sym_in, - ACTIONS(4301), 1, + ACTIONS(4351), 1, anon_sym_COMMA, - STATE(2390), 1, + STATE(2434), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113724] = 4, - ACTIONS(3235), 1, - anon_sym_COLON, - ACTIONS(4303), 1, + [116125] = 4, + ACTIONS(4353), 1, + anon_sym_RPAREN, + ACTIONS(4355), 1, anon_sym_COMMA, - STATE(2363), 1, - aux_sym_assert_statement_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113738] = 4, - ACTIONS(3042), 1, + [116139] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3105), 1, + ACTIONS(3097), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113752] = 4, - ACTIONS(2696), 1, + [116153] = 4, + ACTIONS(4357), 1, anon_sym_RPAREN, - ACTIONS(4306), 1, + ACTIONS(4359), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113766] = 2, + [116167] = 4, + ACTIONS(4361), 1, + anon_sym_RPAREN, + ACTIONS(4363), 1, + anon_sym_COMMA, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2472), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [113776] = 4, - ACTIONS(3409), 1, + [116181] = 4, + ACTIONS(3367), 1, anon_sym_COMMA, - ACTIONS(3411), 1, + ACTIONS(3369), 1, anon_sym_RBRACE, - STATE(2370), 1, + STATE(2411), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113790] = 4, - ACTIONS(3042), 1, + [116195] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(4308), 1, + ACTIONS(4365), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113804] = 4, - ACTIONS(3042), 1, + [116209] = 4, + ACTIONS(1331), 1, + anon_sym_RBRACE, + ACTIONS(4367), 1, anon_sym_COMMA, - ACTIONS(4310), 1, - anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + STATE(2294), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113818] = 4, - ACTIONS(1295), 1, - anon_sym_RBRACE, - ACTIONS(4312), 1, + [116223] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4369), 1, + anon_sym_RPAREN, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113832] = 4, - ACTIONS(3107), 1, + [116237] = 4, + ACTIONS(3099), 1, anon_sym_RPAREN, - ACTIONS(3109), 1, + ACTIONS(3101), 1, anon_sym_COMMA, - STATE(2377), 1, + STATE(2418), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113846] = 4, - ACTIONS(4314), 1, + [116251] = 4, + ACTIONS(4371), 1, anon_sym_RPAREN, - ACTIONS(4316), 1, + ACTIONS(4373), 1, anon_sym_COMMA, - STATE(2379), 1, + STATE(2419), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113860] = 4, - ACTIONS(4318), 1, + [116265] = 4, + ACTIONS(3318), 1, + anon_sym_COMMA, + ACTIONS(3320), 1, + anon_sym_RBRACK, + STATE(2423), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116279] = 4, + ACTIONS(4375), 1, anon_sym_RPAREN, - ACTIONS(4320), 1, + ACTIONS(4377), 1, anon_sym_COMMA, - STATE(2373), 1, + STATE(2416), 1, aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113874] = 4, - ACTIONS(4236), 1, + [116293] = 4, + ACTIONS(4345), 1, sym__newline, - ACTIONS(4238), 1, + ACTIONS(4347), 1, sym__indent, - STATE(832), 1, + STATE(833), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113888] = 4, - ACTIONS(3304), 1, + [116307] = 4, + ACTIONS(4380), 1, + anon_sym_RPAREN, + ACTIONS(4382), 1, anon_sym_COMMA, - ACTIONS(3306), 1, - anon_sym_RBRACK, - STATE(2381), 1, - aux_sym_subscript_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113902] = 4, - ACTIONS(4323), 1, + [116321] = 4, + ACTIONS(4384), 1, + anon_sym_RPAREN, + ACTIONS(4386), 1, anon_sym_COMMA, - ACTIONS(4325), 1, - anon_sym_COLON, - STATE(2285), 1, - aux_sym_match_statement_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113916] = 4, - ACTIONS(1147), 1, + [116335] = 4, + ACTIONS(4388), 1, anon_sym_RPAREN, - ACTIONS(4327), 1, + ACTIONS(4390), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113930] = 4, - ACTIONS(4329), 1, + [116349] = 4, + ACTIONS(4392), 1, anon_sym_COMMA, - ACTIONS(4331), 1, - anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + ACTIONS(4394), 1, + anon_sym_COLON, + STATE(2505), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113944] = 4, - ACTIONS(1239), 1, - anon_sym_RPAREN, - ACTIONS(4333), 1, + [116363] = 4, + ACTIONS(4396), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4398), 1, + anon_sym_RBRACK, + STATE(2326), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113958] = 4, - ACTIONS(4335), 1, + [116377] = 4, + ACTIONS(4400), 1, anon_sym_COMMA, - ACTIONS(4337), 1, + ACTIONS(4402), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113972] = 4, - ACTIONS(4339), 1, + [116391] = 4, + ACTIONS(3841), 1, + anon_sym_DOT, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(4404), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116405] = 4, + ACTIONS(3022), 1, + anon_sym_RBRACK, + ACTIONS(3034), 1, + anon_sym_COMMA, + STATE(2289), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116419] = 4, + ACTIONS(4406), 1, anon_sym_COMMA, - ACTIONS(4341), 1, + ACTIONS(4408), 1, anon_sym_RBRACK, - STATE(2262), 1, - aux_sym_subscript_repeat1, + STATE(2295), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113986] = 4, - ACTIONS(3386), 1, + [116433] = 4, + ACTIONS(3381), 1, anon_sym_COMMA, - ACTIONS(3388), 1, + ACTIONS(3383), 1, anon_sym_RBRACE, - STATE(2337), 1, + STATE(2390), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114000] = 2, + [116447] = 4, + ACTIONS(1329), 1, + anon_sym_RBRACE, + ACTIONS(4410), 1, + anon_sym_COMMA, + STATE(2294), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4343), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [114010] = 4, - ACTIONS(1335), 1, - anon_sym_RBRACE, - ACTIONS(4345), 1, + [116461] = 4, + ACTIONS(4215), 1, + anon_sym_RPAREN, + ACTIONS(4412), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + STATE(2429), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116475] = 4, + ACTIONS(4415), 1, + anon_sym_SEMI, + ACTIONS(4417), 1, + sym__newline, + STATE(2398), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114024] = 3, - ACTIONS(4347), 1, + [116489] = 4, + ACTIONS(4419), 1, + anon_sym_COMMA, + ACTIONS(4421), 1, anon_sym_COLON, + STATE(2301), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, + [116503] = 4, + ACTIONS(3116), 1, anon_sym_RPAREN, + ACTIONS(3118), 1, anon_sym_COMMA, - [114036] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(3115), 1, - anon_sym_RPAREN, - STATE(2335), 1, - aux_sym__collection_elements_repeat1, + STATE(2405), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114050] = 4, - ACTIONS(3427), 1, + [116517] = 4, + ACTIONS(3385), 1, anon_sym_COMMA, - ACTIONS(3429), 1, + ACTIONS(3387), 1, anon_sym_RBRACE, - STATE(2391), 1, + STATE(2435), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114064] = 4, - ACTIONS(3981), 1, - anon_sym_RPAREN, - ACTIONS(4349), 1, + [116531] = 4, + ACTIONS(2911), 1, + anon_sym_in, + ACTIONS(4423), 1, anon_sym_COMMA, - STATE(2292), 1, - aux_sym__import_list_repeat1, + STATE(2434), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114078] = 4, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(4351), 1, + [116545] = 4, + ACTIONS(1303), 1, + anon_sym_RBRACE, + ACTIONS(4426), 1, anon_sym_COMMA, - STATE(2247), 1, - aux_sym__parameters_repeat1, + STATE(2294), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114092] = 4, - ACTIONS(2893), 1, - anon_sym_in, - ACTIONS(4353), 1, + [116559] = 4, + ACTIONS(3132), 1, + anon_sym_RPAREN, + ACTIONS(3134), 1, anon_sym_COMMA, - STATE(2390), 1, - aux_sym__patterns_repeat1, + STATE(2443), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114106] = 4, - ACTIONS(1309), 1, - anon_sym_RBRACE, - ACTIONS(4356), 1, + [116573] = 4, + ACTIONS(4428), 1, + anon_sym_RPAREN, + ACTIONS(4430), 1, anon_sym_COMMA, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + STATE(2445), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114120] = 3, - ACTIONS(3516), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [116587] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3518), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114132] = 4, - ACTIONS(3117), 1, + ACTIONS(4432), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [116597] = 4, + ACTIONS(3124), 1, anon_sym_RPAREN, - ACTIONS(3119), 1, + ACTIONS(3126), 1, anon_sym_COMMA, - STATE(2397), 1, + STATE(2481), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114146] = 4, - ACTIONS(4358), 1, - anon_sym_RPAREN, - ACTIONS(4360), 1, + [116611] = 4, + ACTIONS(3322), 1, anon_sym_COMMA, - STATE(2399), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3324), 1, + anon_sym_RBRACK, + STATE(2449), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114160] = 4, - ACTIONS(3981), 1, - anon_sym_RPAREN, - ACTIONS(4362), 1, + [116625] = 4, + ACTIONS(4434), 1, anon_sym_COMMA, - STATE(2292), 1, - aux_sym__import_list_repeat1, + ACTIONS(4436), 1, + anon_sym_RBRACK, + STATE(2326), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114174] = 4, - ACTIONS(3320), 1, + [116639] = 4, + ACTIONS(4438), 1, anon_sym_COMMA, - ACTIONS(3322), 1, + ACTIONS(4440), 1, anon_sym_RBRACK, - STATE(2402), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114188] = 4, - ACTIONS(1205), 1, + [116653] = 4, + ACTIONS(4442), 1, anon_sym_RPAREN, - ACTIONS(4364), 1, + ACTIONS(4444), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114202] = 4, - ACTIONS(1429), 1, + [116667] = 3, + ACTIONS(4448), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4446), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116679] = 4, + ACTIONS(4450), 1, anon_sym_RPAREN, - ACTIONS(4366), 1, + ACTIONS(4452), 1, anon_sym_COMMA, - STATE(2373), 1, - aux_sym_with_clause_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114216] = 4, - ACTIONS(1207), 1, + [116693] = 4, + ACTIONS(4454), 1, anon_sym_RPAREN, - ACTIONS(4368), 1, + ACTIONS(4456), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114230] = 3, - ACTIONS(3225), 1, - anon_sym_from, + [116707] = 4, + ACTIONS(4458), 1, + anon_sym_RPAREN, + ACTIONS(4460), 1, + anon_sym_COMMA, + STATE(2485), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3223), 2, - sym__newline, - anon_sym_SEMI, - [114242] = 4, - ACTIONS(4370), 1, + [116721] = 4, + ACTIONS(4462), 1, anon_sym_COMMA, - ACTIONS(4372), 1, + ACTIONS(4464), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114256] = 4, - ACTIONS(4374), 1, + [116735] = 4, + ACTIONS(4466), 1, anon_sym_COMMA, - ACTIONS(4376), 1, + ACTIONS(4468), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114270] = 4, - ACTIONS(3067), 1, - anon_sym_RPAREN, - ACTIONS(3069), 1, - anon_sym_COMMA, - STATE(2427), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114284] = 4, - ACTIONS(4378), 1, - anon_sym_RPAREN, - ACTIONS(4380), 1, + [116749] = 4, + ACTIONS(4470), 1, anon_sym_COMMA, - STATE(2431), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4473), 1, + anon_sym_COLON, + STATE(2450), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114298] = 4, - ACTIONS(1155), 1, + [116763] = 4, + ACTIONS(4475), 1, anon_sym_RPAREN, - ACTIONS(4382), 1, + ACTIONS(4477), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2407), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114312] = 4, - ACTIONS(3275), 1, + [116777] = 4, + ACTIONS(3256), 1, anon_sym_COMMA, - ACTIONS(3277), 1, + ACTIONS(3260), 1, anon_sym_RBRACK, - STATE(2433), 1, + STATE(2493), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114326] = 4, - ACTIONS(4318), 1, + [116791] = 3, + ACTIONS(3640), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3642), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116803] = 3, + ACTIONS(3644), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3646), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116815] = 4, + ACTIONS(3841), 1, + anon_sym_DOT, + ACTIONS(3847), 1, + anon_sym_PIPE, + ACTIONS(4479), 1, anon_sym_COLON, - ACTIONS(4384), 1, - anon_sym_COMMA, - STATE(2407), 1, - aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114340] = 4, - ACTIONS(3773), 1, + [116829] = 3, + ACTIONS(3650), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3652), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116841] = 4, + ACTIONS(3997), 1, + sym_identifier, + STATE(2381), 1, + sym_dotted_name, + STATE(2595), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116855] = 4, + ACTIONS(3786), 1, anon_sym_COLON, - ACTIONS(4387), 1, + ACTIONS(4481), 1, anon_sym_RBRACE, - STATE(2657), 1, + STATE(2720), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114354] = 4, - ACTIONS(4236), 1, + [116869] = 4, + ACTIONS(4345), 1, sym__newline, - ACTIONS(4238), 1, + ACTIONS(4347), 1, sym__indent, - STATE(830), 1, + STATE(846), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114368] = 4, - ACTIONS(3042), 1, + [116883] = 3, + ACTIONS(4483), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3949), 2, + anon_sym_COMMA, + anon_sym_COLON, + [116895] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3148), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114382] = 4, - ACTIONS(3435), 1, + [116909] = 4, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4485), 1, + anon_sym_RBRACE, + STATE(2680), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116923] = 4, + ACTIONS(3414), 1, anon_sym_COMMA, - ACTIONS(3437), 1, + ACTIONS(3416), 1, anon_sym_RBRACE, - STATE(2413), 1, + STATE(2465), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114396] = 4, - ACTIONS(4087), 1, + [116937] = 4, + ACTIONS(1431), 1, + anon_sym_RPAREN, + ACTIONS(4487), 1, anon_sym_COMMA, - ACTIONS(4389), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + STATE(2416), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114410] = 4, - ACTIONS(1319), 1, + [116951] = 4, + ACTIONS(1299), 1, anon_sym_RBRACE, - ACTIONS(4391), 1, + ACTIONS(4489), 1, anon_sym_COMMA, - STATE(2481), 1, + STATE(2294), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114424] = 4, - ACTIONS(3129), 1, + [116965] = 4, + ACTIONS(3150), 1, anon_sym_RPAREN, - ACTIONS(3131), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - STATE(2420), 1, + STATE(2471), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114438] = 4, - ACTIONS(4393), 1, + [116979] = 4, + ACTIONS(4491), 1, anon_sym_RPAREN, - ACTIONS(4395), 1, + ACTIONS(4493), 1, anon_sym_COMMA, - STATE(2421), 1, + STATE(2473), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114452] = 2, + [116993] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 3, + ACTIONS(1678), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [114462] = 4, - ACTIONS(2028), 1, - anon_sym_RPAREN, - ACTIONS(4397), 1, + anon_sym_COLON, + anon_sym_EQ, + [117003] = 4, + ACTIONS(3326), 1, anon_sym_COMMA, - STATE(2465), 1, - aux_sym__patterns_repeat1, + ACTIONS(3328), 1, + anon_sym_RBRACK, + STATE(2476), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114476] = 4, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, - anon_sym_RBRACK, - STATE(2423), 1, - aux_sym_subscript_repeat1, + [117017] = 4, + ACTIONS(4345), 1, + sym__newline, + ACTIONS(4347), 1, + sym__indent, + STATE(765), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114490] = 4, - ACTIONS(2971), 1, + [117031] = 4, + ACTIONS(4495), 1, anon_sym_RPAREN, - ACTIONS(4399), 1, + ACTIONS(4497), 1, anon_sym_COMMA, - STATE(2440), 1, - aux_sym__parameters_repeat1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114504] = 4, - ACTIONS(1217), 1, + [117045] = 4, + ACTIONS(3375), 1, + sym_identifier, + STATE(2241), 1, + sym_dotted_name, + STATE(2306), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117059] = 4, + ACTIONS(4499), 1, anon_sym_RPAREN, - ACTIONS(4401), 1, + ACTIONS(4501), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114518] = 4, - ACTIONS(1219), 1, + [117073] = 4, + ACTIONS(4503), 1, anon_sym_RPAREN, - ACTIONS(4403), 1, + ACTIONS(4505), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114532] = 4, - ACTIONS(4405), 1, + [117087] = 4, + ACTIONS(4507), 1, anon_sym_COMMA, - ACTIONS(4407), 1, + ACTIONS(4509), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114546] = 4, - ACTIONS(4409), 1, + [117101] = 4, + ACTIONS(4511), 1, anon_sym_COMMA, - ACTIONS(4411), 1, + ACTIONS(4513), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114560] = 4, - ACTIONS(3042), 1, + [117115] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - ACTIONS(4413), 1, + ACTIONS(4515), 1, anon_sym_RPAREN, - STATE(2335), 1, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114574] = 2, + [117129] = 4, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4517), 1, + anon_sym_in, + STATE(2404), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 3, - sym__newline, - anon_sym_SEMI, + [117143] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - [114584] = 2, + ACTIONS(4519), 1, + anon_sym_RPAREN, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 3, - sym__newline, - anon_sym_SEMI, + [117157] = 4, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4521), 1, anon_sym_in, - [114594] = 4, - ACTIONS(1173), 1, + STATE(2404), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117171] = 4, + ACTIONS(4523), 1, anon_sym_RPAREN, - ACTIONS(4415), 1, + ACTIONS(4525), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114608] = 4, - ACTIONS(3241), 1, + [117185] = 4, + ACTIONS(3330), 1, anon_sym_COMMA, - ACTIONS(3245), 1, + ACTIONS(3332), 1, anon_sym_RBRACK, - STATE(2430), 1, + STATE(2484), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114622] = 4, - ACTIONS(4417), 1, + [117199] = 4, + ACTIONS(4527), 1, anon_sym_COMMA, - ACTIONS(4419), 1, + ACTIONS(4529), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114636] = 4, - ACTIONS(4421), 1, + [117213] = 4, + ACTIONS(4531), 1, anon_sym_COMMA, - ACTIONS(4423), 1, + ACTIONS(4533), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114650] = 4, - ACTIONS(1183), 1, + [117227] = 4, + ACTIONS(4535), 1, anon_sym_RPAREN, - ACTIONS(4425), 1, + ACTIONS(4537), 1, anon_sym_COMMA, - STATE(2487), 1, + STATE(2342), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117241] = 4, + ACTIONS(4539), 1, + anon_sym_RPAREN, + ACTIONS(4541), 1, + anon_sym_COMMA, + STATE(2342), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114664] = 4, - ACTIONS(4427), 1, + [117255] = 4, + ACTIONS(4543), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4545), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114678] = 4, - ACTIONS(4431), 1, + [117269] = 4, + ACTIONS(3336), 1, anon_sym_COMMA, - ACTIONS(4433), 1, + ACTIONS(3338), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2491), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114692] = 4, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4435), 1, - anon_sym_RBRACE, - STATE(2700), 1, - sym_format_specifier, + [117283] = 3, + ACTIONS(3250), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114706] = 4, - ACTIONS(3330), 1, + ACTIONS(3248), 2, + sym__newline, + anon_sym_SEMI, + [117295] = 4, + ACTIONS(4547), 1, anon_sym_COMMA, - ACTIONS(3332), 1, + ACTIONS(4549), 1, anon_sym_RBRACK, - STATE(2437), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114720] = 4, - ACTIONS(4437), 1, + [117309] = 4, + ACTIONS(4551), 1, anon_sym_COMMA, - ACTIONS(4439), 1, + ACTIONS(4553), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114734] = 4, - ACTIONS(4441), 1, + [117323] = 4, + ACTIONS(1291), 1, + anon_sym_RPAREN, + ACTIONS(4555), 1, + anon_sym_COMMA, + STATE(2533), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117337] = 4, + ACTIONS(4557), 1, anon_sym_COMMA, - ACTIONS(4443), 1, + ACTIONS(4559), 1, anon_sym_RBRACK, - STATE(2262), 1, + STATE(2326), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114748] = 4, - ACTIONS(1273), 1, - anon_sym_RBRACK, - ACTIONS(4445), 1, - anon_sym_COMMA, - STATE(2485), 1, - aux_sym_assert_statement_repeat1, + [117351] = 4, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4561), 1, + anon_sym_RBRACE, + STATE(2764), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114762] = 4, - ACTIONS(3042), 1, - anon_sym_COMMA, - ACTIONS(4447), 1, + [117365] = 4, + ACTIONS(3022), 1, anon_sym_RPAREN, - STATE(2335), 1, + ACTIONS(3058), 1, + anon_sym_COMMA, + STATE(2492), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114776] = 4, - ACTIONS(4077), 1, + [117379] = 4, + ACTIONS(4563), 1, anon_sym_RPAREN, - ACTIONS(4449), 1, + ACTIONS(4565), 1, anon_sym_COMMA, - STATE(2440), 1, + STATE(2330), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114790] = 4, - ACTIONS(2652), 1, + [117393] = 3, + ACTIONS(3953), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3949), 2, anon_sym_RPAREN, - ACTIONS(4452), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + [117405] = 3, + ACTIONS(4567), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114804] = 4, - ACTIONS(3367), 1, + ACTIONS(3949), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4454), 1, + [117417] = 4, + ACTIONS(4375), 1, anon_sym_COLON, - STATE(2357), 1, - aux_sym_except_clause_repeat1, + ACTIONS(4569), 1, + anon_sym_COMMA, + STATE(2499), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114818] = 4, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, + [117431] = 4, + ACTIONS(4281), 1, + sym__newline, + ACTIONS(4283), 1, + sym__indent, + STATE(817), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114832] = 4, - ACTIONS(3796), 1, + [117445] = 4, + ACTIONS(3780), 1, anon_sym_LPAREN, - ACTIONS(4458), 1, + ACTIONS(4572), 1, anon_sym_COLON, - STATE(2688), 1, + STATE(2745), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114846] = 4, - ACTIONS(4087), 1, + [117459] = 4, + ACTIONS(4117), 1, anon_sym_COMMA, - ACTIONS(4460), 1, + ACTIONS(4574), 1, anon_sym_in, - STATE(2362), 1, + STATE(2404), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114860] = 4, - ACTIONS(4462), 1, - anon_sym_SEMI, - ACTIONS(4465), 1, - sym__newline, - STATE(2446), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114874] = 4, - ACTIONS(2654), 1, - anon_sym_RBRACK, - ACTIONS(4467), 1, + [117473] = 4, + ACTIONS(4576), 1, anon_sym_COMMA, - STATE(2331), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4578), 1, + anon_sym_RBRACK, + STATE(2400), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114888] = 4, - ACTIONS(4087), 1, + [117487] = 4, + ACTIONS(4117), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4580), 1, anon_sym_in, - STATE(2362), 1, + STATE(2404), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114902] = 4, - ACTIONS(3494), 1, - anon_sym_RPAREN, - ACTIONS(4471), 1, + [117501] = 4, + ACTIONS(4582), 1, anon_sym_COMMA, - STATE(2449), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4585), 1, + anon_sym_COLON, + STATE(2505), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114916] = 4, - ACTIONS(3827), 1, + [117515] = 4, + ACTIONS(3841), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(4474), 1, + ACTIONS(4587), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114930] = 4, - ACTIONS(1247), 1, + [117529] = 4, + ACTIONS(3239), 1, anon_sym_RBRACK, - ACTIONS(4476), 1, + ACTIONS(4589), 1, anon_sym_COMMA, - STATE(2309), 1, - aux_sym__collection_elements_repeat1, + STATE(2507), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114944] = 4, - ACTIONS(3827), 1, + [117543] = 4, + ACTIONS(3841), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(4478), 1, + ACTIONS(4592), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114958] = 4, - ACTIONS(3367), 1, + [117557] = 4, + ACTIONS(3460), 1, anon_sym_COMMA, - ACTIONS(4480), 1, + ACTIONS(4594), 1, anon_sym_COLON, - STATE(2357), 1, + STATE(2450), 1, aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114972] = 4, - ACTIONS(3827), 1, + [117571] = 4, + ACTIONS(3841), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(4482), 1, + ACTIONS(4596), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114986] = 4, - ACTIONS(3827), 1, + [117585] = 4, + ACTIONS(3841), 1, anon_sym_DOT, - ACTIONS(3831), 1, + ACTIONS(3847), 1, anon_sym_PIPE, - ACTIONS(4484), 1, + ACTIONS(4598), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115000] = 4, - ACTIONS(3367), 1, + [117599] = 4, + ACTIONS(3460), 1, anon_sym_COMMA, - ACTIONS(4486), 1, + ACTIONS(4600), 1, anon_sym_COLON, - STATE(2357), 1, + STATE(2450), 1, aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115014] = 4, - ACTIONS(1247), 1, - anon_sym_RBRACE, - ACTIONS(4488), 1, - anon_sym_COMMA, - STATE(2264), 1, - aux_sym__collection_elements_repeat1, + [117613] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115028] = 4, - ACTIONS(4490), 1, + ACTIONS(3959), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(4492), 1, + [117623] = 4, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4602), 1, anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115042] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2902), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [115052] = 4, - ACTIONS(4494), 1, - anon_sym_SEMI, - ACTIONS(4496), 1, - sym__newline, - STATE(2332), 1, - aux_sym__simple_statements_repeat1, + STATE(2668), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115066] = 4, - ACTIONS(4087), 1, + [117637] = 4, + ACTIONS(4117), 1, anon_sym_COMMA, - ACTIONS(4498), 1, + ACTIONS(4604), 1, anon_sym_in, - STATE(2362), 1, + STATE(2404), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115080] = 4, - ACTIONS(4087), 1, + [117651] = 4, + ACTIONS(4117), 1, anon_sym_COMMA, - ACTIONS(4500), 1, + ACTIONS(4606), 1, anon_sym_in, - STATE(2362), 1, + STATE(2404), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115094] = 4, - ACTIONS(4502), 1, - anon_sym_COMMA, - ACTIONS(4504), 1, - anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115108] = 4, - ACTIONS(1273), 1, - anon_sym_RPAREN, - ACTIONS(4506), 1, - anon_sym_COMMA, - STATE(2267), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115122] = 4, - ACTIONS(2893), 1, + [117665] = 4, + ACTIONS(4608), 1, anon_sym_RPAREN, - ACTIONS(4508), 1, - anon_sym_COMMA, - STATE(2465), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115136] = 4, - ACTIONS(2028), 1, - anon_sym_RBRACK, - ACTIONS(4511), 1, + ACTIONS(4610), 1, anon_sym_COMMA, - STATE(2483), 1, - aux_sym__patterns_repeat1, + STATE(2464), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115150] = 4, - ACTIONS(3821), 1, - anon_sym_RBRACK, - ACTIONS(4513), 1, - anon_sym_COMMA, - STATE(2467), 1, - aux_sym_type_parameter_repeat1, + [117679] = 4, + ACTIONS(4281), 1, + sym__newline, + ACTIONS(4283), 1, + sym__indent, + STATE(799), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115164] = 4, - ACTIONS(4516), 1, - anon_sym_COMMA, - ACTIONS(4518), 1, - anon_sym_RBRACE, - STATE(2477), 1, - aux_sym_dict_pattern_repeat1, + [117693] = 3, + ACTIONS(3926), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115178] = 4, - ACTIONS(1237), 1, + ACTIONS(3985), 2, anon_sym_RPAREN, - ACTIONS(4520), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115192] = 3, - ACTIONS(3682), 1, + [117705] = 3, + ACTIONS(3720), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3684), 2, + ACTIONS(3722), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [115204] = 4, - ACTIONS(4087), 1, - anon_sym_COMMA, - ACTIONS(4522), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, + [117717] = 3, + ACTIONS(3657), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [115218] = 3, - ACTIONS(3697), 1, + ACTIONS(3659), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [117729] = 3, + ACTIONS(3668), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 2, + ACTIONS(3670), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [115230] = 4, - ACTIONS(2710), 1, - anon_sym_RPAREN, - ACTIONS(4524), 1, + [117741] = 4, + ACTIONS(4612), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4614), 1, + anon_sym_RBRACE, + STATE(2529), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115244] = 4, - ACTIONS(3827), 1, - anon_sym_DOT, - ACTIONS(3831), 1, - anon_sym_PIPE, - ACTIONS(4526), 1, - anon_sym_COLON, + [117755] = 4, + ACTIONS(4281), 1, + sym__newline, + ACTIONS(4283), 1, + sym__indent, + STATE(758), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115258] = 4, - ACTIONS(2700), 1, - anon_sym_RBRACK, - ACTIONS(4528), 1, + [117769] = 4, + ACTIONS(4408), 1, + anon_sym_RPAREN, + ACTIONS(4616), 1, anon_sym_COMMA, - STATE(2331), 1, + STATE(2527), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117783] = 4, + ACTIONS(2718), 1, + anon_sym_RPAREN, + ACTIONS(4618), 1, + anon_sym_COMMA, + STATE(2537), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115272] = 3, - ACTIONS(3528), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [117797] = 4, + ACTIONS(1928), 1, + anon_sym_RPAREN, + ACTIONS(4620), 1, + anon_sym_COMMA, + STATE(2349), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3530), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115284] = 4, - ACTIONS(4530), 1, + [117811] = 4, + ACTIONS(2724), 1, + anon_sym_RBRACK, + ACTIONS(4622), 1, anon_sym_COMMA, - ACTIONS(4532), 1, - anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_dict_pattern_repeat1, + STATE(2376), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115298] = 4, - ACTIONS(4534), 1, + [117825] = 4, + ACTIONS(4624), 1, anon_sym_COMMA, - ACTIONS(4536), 1, + ACTIONS(4626), 1, anon_sym_RBRACE, - STATE(2358), 1, + STATE(2341), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115312] = 4, - ACTIONS(3917), 1, + [117839] = 4, + ACTIONS(2752), 1, sym_identifier, - STATE(2286), 1, + ACTIONS(4628), 1, + anon_sym_import, + STATE(2669), 1, sym_dotted_name, - STATE(2553), 1, - sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115326] = 4, - ACTIONS(1273), 1, - anon_sym_COLON, - ACTIONS(4538), 1, + [117853] = 4, + ACTIONS(4630), 1, anon_sym_COMMA, - STATE(2363), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4632), 1, + anon_sym_RBRACE, + STATE(2341), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115340] = 4, - ACTIONS(4540), 1, + [117867] = 4, + ACTIONS(4563), 1, + anon_sym_COLON, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4543), 1, - anon_sym_RBRACE, - STATE(2481), 1, - aux_sym_dictionary_repeat1, + STATE(2320), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115354] = 4, - ACTIONS(3863), 1, + [117881] = 4, + ACTIONS(3577), 1, anon_sym_RPAREN, - ACTIONS(3896), 1, + ACTIONS(4636), 1, anon_sym_COMMA, - STATE(2388), 1, - aux_sym__import_list_repeat1, + STATE(2533), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115368] = 4, - ACTIONS(2893), 1, - anon_sym_RBRACK, - ACTIONS(4545), 1, + [117895] = 3, + ACTIONS(4483), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3949), 2, anon_sym_COMMA, - STATE(2483), 1, + anon_sym_COLON, + [117907] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4072), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [117917] = 4, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_in, + STATE(2404), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115382] = 4, - ACTIONS(2660), 1, + [117931] = 4, + ACTIONS(3985), 1, anon_sym_RPAREN, - ACTIONS(4548), 1, + ACTIONS(4641), 1, anon_sym_COMMA, - STATE(2259), 1, + STATE(2537), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115396] = 4, - ACTIONS(3235), 1, - anon_sym_RBRACK, - ACTIONS(4550), 1, + [117945] = 4, + ACTIONS(2708), 1, + anon_sym_RPAREN, + ACTIONS(4644), 1, anon_sym_COMMA, - STATE(2485), 1, - aux_sym_assert_statement_repeat1, + STATE(2537), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115410] = 4, - ACTIONS(4216), 1, - anon_sym_RBRACK, - ACTIONS(4553), 1, - anon_sym_COMMA, - STATE(2466), 1, - aux_sym__patterns_repeat1, + [117959] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115424] = 4, - ACTIONS(3665), 1, + ACTIONS(2477), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [117969] = 4, + ACTIONS(4044), 1, anon_sym_RPAREN, - ACTIONS(4555), 1, + ACTIONS(4646), 1, anon_sym_COMMA, - STATE(2487), 1, - aux_sym_argument_list_repeat1, + STATE(2383), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115438] = 4, - ACTIONS(4087), 1, + [117983] = 4, + ACTIONS(4044), 1, + anon_sym_RPAREN, + ACTIONS(4648), 1, anon_sym_COMMA, - ACTIONS(4558), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + STATE(2383), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115452] = 4, - ACTIONS(4087), 1, + [117997] = 4, + ACTIONS(1291), 1, + anon_sym_RBRACE, + ACTIONS(4650), 1, anon_sym_COMMA, - ACTIONS(4560), 1, - anon_sym_in, - STATE(2362), 1, - aux_sym__patterns_repeat1, + STATE(2378), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115466] = 4, - ACTIONS(4236), 1, - sym__newline, - ACTIONS(4238), 1, - sym__indent, - STATE(838), 1, - sym__match_block, + [118011] = 4, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4652), 1, + anon_sym_in, + STATE(2404), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115480] = 2, + [118025] = 4, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4654), 1, + anon_sym_in, + STATE(2404), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 3, - anon_sym_RPAREN, + [118039] = 4, + ACTIONS(3058), 1, anon_sym_COMMA, - anon_sym_EQ, - [115490] = 2, + ACTIONS(3128), 1, + anon_sym_RPAREN, + STATE(2492), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4562), 2, - sym__newline, - anon_sym_SEMI, - [115499] = 3, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2543), 1, - sym_parameters, + [118053] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115510] = 2, + ACTIONS(1575), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118062] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, - anon_sym_RPAREN, + ACTIONS(2920), 2, anon_sym_COMMA, - [115519] = 2, + anon_sym_RBRACK, + [118071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 2, + ACTIONS(1667), 2, sym__dedent, anon_sym_case, - [115528] = 2, + [118080] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 2, + ACTIONS(4656), 2, anon_sym_COMMA, anon_sym_COLON, - [115537] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4566), 2, - sym__dedent, - anon_sym_case, - [115546] = 2, + [118089] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, + ACTIONS(3206), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115555] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4570), 2, - sym__dedent, - anon_sym_case, - [115564] = 2, + [118098] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 2, + ACTIONS(4658), 2, sym__dedent, anon_sym_case, - [115573] = 2, + [118107] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, + ACTIONS(4375), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115582] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3316), 2, - sym__newline, - anon_sym_SEMI, - [115591] = 2, + [118116] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4574), 2, + ACTIONS(4660), 2, sym__dedent, anon_sym_case, - [115600] = 2, + [118125] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115609] = 2, + ACTIONS(4662), 2, + sym__newline, + anon_sym_SEMI, + [118134] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(4215), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [115618] = 2, + [118143] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, + ACTIONS(3302), 2, sym__newline, anon_sym_SEMI, - [115627] = 2, + [118152] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115636] = 2, + ACTIONS(1698), 2, + sym__dedent, + anon_sym_case, + [118161] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4578), 2, - anon_sym__, - sym_identifier, - [115645] = 2, + ACTIONS(1655), 2, + sym__dedent, + anon_sym_case, + [118170] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4580), 2, - sym__newline, - anon_sym_SEMI, - [115654] = 2, + ACTIONS(2911), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4077), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115663] = 2, + ACTIONS(4664), 2, + sym__dedent, + anon_sym_case, + [118188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(4666), 2, sym__dedent, anon_sym_case, - [115672] = 3, - ACTIONS(4582), 1, - sym_integer, - ACTIONS(4584), 1, - sym_float, + [118197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115683] = 2, + ACTIONS(4668), 2, + sym__dedent, + anon_sym_case, + [118206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4026), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115692] = 2, + ACTIONS(4670), 2, + anon_sym__, + sym_identifier, + [118215] = 3, + ACTIONS(4672), 1, + sym_integer, + ACTIONS(4674), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115701] = 2, + [118226] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 2, + ACTIONS(4676), 2, sym__newline, anon_sym_SEMI, - [115710] = 2, + [118235] = 3, + ACTIONS(1399), 1, + anon_sym_LBRACK, + STATE(2138), 1, + sym_type_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4586), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115719] = 2, + [118246] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 2, - anon_sym_RPAREN, + ACTIONS(4215), 2, anon_sym_COMMA, - [115728] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4588), 2, - anon_sym__, - sym_identifier, - [115737] = 3, - ACTIONS(4590), 1, anon_sym_COLON, - ACTIONS(4592), 1, - anon_sym_DASH_GT, + [118255] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115748] = 2, + ACTIONS(4678), 2, + sym__newline, + anon_sym_SEMI, + [118264] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(3672), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [115757] = 3, - ACTIONS(4594), 1, - sym_integer, - ACTIONS(4596), 1, - sym_float, + [118273] = 3, + ACTIONS(4680), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115768] = 2, + [118284] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4598), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115777] = 2, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [118293] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3199), 2, + ACTIONS(4684), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115786] = 3, - ACTIONS(3923), 1, - anon_sym_LPAREN, - STATE(2592), 1, - sym_parameters, + anon_sym_RBRACE, + [118302] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115797] = 2, + ACTIONS(4686), 2, + anon_sym__, + sym_identifier, + [118311] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, + ACTIONS(3577), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115806] = 2, + anon_sym_RBRACE, + [118320] = 3, + ACTIONS(4688), 1, + sym_integer, + ACTIONS(4690), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4600), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115815] = 2, + [118331] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4602), 2, + ACTIONS(3190), 2, sym__newline, anon_sym_SEMI, - [115824] = 2, + [118340] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, + ACTIONS(1692), 2, sym__dedent, anon_sym_case, - [115833] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4604), 2, - anon_sym__, - sym_identifier, - [115842] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4606), 2, - sym__newline, - anon_sym_SEMI, - [115851] = 3, - ACTIONS(4608), 1, + [118349] = 3, + ACTIONS(4692), 1, sym_integer, - ACTIONS(4610), 1, + ACTIONS(4694), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115862] = 3, - ACTIONS(4612), 1, + [118360] = 3, + ACTIONS(4696), 1, sym_integer, - ACTIONS(4614), 1, + ACTIONS(4698), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115873] = 2, + [118371] = 3, + ACTIONS(4700), 1, + sym_integer, + ACTIONS(4702), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4616), 2, - sym__newline, - anon_sym_SEMI, - [115882] = 2, + [118382] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4618), 2, + ACTIONS(4704), 2, sym__newline, anon_sym_SEMI, - [115891] = 3, - ACTIONS(4620), 1, - sym_integer, - ACTIONS(4622), 1, - sym_float, + [118391] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115902] = 2, + ACTIONS(4706), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [118400] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4624), 2, + ACTIONS(4708), 2, sym__dedent, anon_sym_case, - [115911] = 2, + [118409] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4626), 2, + ACTIONS(4710), 2, sym__newline, anon_sym_SEMI, - [115920] = 2, + [118418] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4628), 2, - sym__dedent, - anon_sym_case, - [115929] = 3, - ACTIONS(4630), 1, + ACTIONS(4712), 2, + sym__newline, + anon_sym_SEMI, + [118427] = 3, + ACTIONS(4714), 1, sym_integer, - ACTIONS(4632), 1, + ACTIONS(4716), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115940] = 2, + [118438] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, - anon_sym_RPAREN, + ACTIONS(2918), 2, anon_sym_COMMA, - [115949] = 2, + anon_sym_RBRACK, + [118447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4634), 2, - sym__dedent, - anon_sym_case, - [115958] = 2, + ACTIONS(3436), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4636), 2, - sym__dedent, - anon_sym_case, - [115967] = 3, - ACTIONS(4638), 1, - anon_sym_COLON, - ACTIONS(4640), 1, - anon_sym_DASH_GT, + ACTIONS(4718), 2, + anon_sym__, + sym_identifier, + [118465] = 3, + ACTIONS(4720), 1, + sym_integer, + ACTIONS(4722), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115978] = 2, + [118476] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4642), 2, + ACTIONS(4724), 2, sym__newline, anon_sym_SEMI, - [115987] = 2, + [118485] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4644), 2, - sym__newline, - anon_sym_SEMI, - [115996] = 2, + ACTIONS(4375), 2, + anon_sym_COMMA, + anon_sym_COLON, + [118494] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1662), 2, - sym__dedent, - anon_sym_case, - [116005] = 3, - ACTIONS(4646), 1, - sym_integer, - ACTIONS(4648), 1, - sym_float, + ACTIONS(4726), 2, + sym__newline, + anon_sym_SEMI, + [118503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116016] = 2, + ACTIONS(4728), 2, + sym__newline, + anon_sym_SEMI, + [118512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4077), 2, + ACTIONS(4023), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116025] = 2, + [118521] = 3, + ACTIONS(4730), 1, + sym_integer, + ACTIONS(4732), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116034] = 2, + [118532] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, - anon_sym_RPAREN, + ACTIONS(4734), 2, anon_sym_COMMA, - [116043] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4650), 2, - sym__dedent, - anon_sym_case, - [116052] = 2, + anon_sym_RBRACE, + [118541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 2, + ACTIONS(4736), 2, sym__dedent, anon_sym_case, - [116061] = 2, + [118550] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4056), 2, + ACTIONS(4656), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116070] = 2, + [118559] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4465), 2, + ACTIONS(4738), 2, sym__newline, anon_sym_SEMI, - [116079] = 2, + [118568] = 3, + ACTIONS(4740), 1, + anon_sym_COLON, + ACTIONS(4742), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118579] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 2, + ACTIONS(3949), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116088] = 2, + [118588] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3494), 2, + ACTIONS(4432), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116097] = 2, + [118597] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 2, - sym__dedent, - anon_sym_case, - [116106] = 3, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_DASH_GT, + ACTIONS(3206), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [118606] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116117] = 3, - ACTIONS(4660), 1, + ACTIONS(1575), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [118615] = 3, + ACTIONS(4744), 1, anon_sym_COLON, - ACTIONS(4662), 1, + ACTIONS(4746), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116128] = 3, - ACTIONS(4664), 1, + [118626] = 3, + ACTIONS(4748), 1, anon_sym_COLON, - ACTIONS(4666), 1, + ACTIONS(4750), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116139] = 3, - ACTIONS(4668), 1, - sym_integer, - ACTIONS(4670), 1, - sym_float, + [118637] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116150] = 3, - ACTIONS(4672), 1, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118646] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4752), 2, anon_sym_COLON, - ACTIONS(4674), 1, + anon_sym_DASH_GT, + [118655] = 3, + ACTIONS(4754), 1, + anon_sym_COLON, + ACTIONS(4756), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116161] = 2, + [118666] = 3, + ACTIONS(4758), 1, + anon_sym_COLON, + ACTIONS(4760), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116170] = 2, + [118677] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4676), 2, + ACTIONS(4762), 2, sym__dedent, anon_sym_case, - [116179] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2902), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116188] = 2, + [118686] = 3, + ACTIONS(4764), 1, + anon_sym_COLON, + ACTIONS(4766), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4678), 2, - anon_sym__, - sym_identifier, - [116197] = 3, - ACTIONS(4680), 1, - sym_integer, - ACTIONS(4682), 1, - sym_float, + [118697] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116208] = 3, - ACTIONS(4684), 1, + ACTIONS(4684), 2, anon_sym_COMMA, - STATE(1966), 1, - aux_sym__patterns_repeat1, + anon_sym_RBRACK, + [118706] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116219] = 2, + ACTIONS(3577), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [118715] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4686), 2, - sym__newline, - anon_sym_SEMI, - [116228] = 2, + ACTIONS(4768), 2, + anon_sym__, + sym_identifier, + [118724] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4688), 2, - sym__newline, - anon_sym_SEMI, - [116237] = 3, - ACTIONS(4690), 1, + ACTIONS(4770), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [118733] = 3, + ACTIONS(4772), 1, sym_integer, - ACTIONS(4692), 1, + ACTIONS(4774), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116248] = 2, + [118744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4694), 2, + ACTIONS(4776), 2, sym__newline, anon_sym_SEMI, - [116257] = 2, + [118753] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4343), 2, + ACTIONS(2918), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116266] = 2, + [118762] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2904), 2, + ACTIONS(4682), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [116275] = 2, + [118771] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1661), 2, + sym__dedent, + anon_sym_case, + [118780] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 2, + ACTIONS(4684), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [116284] = 3, - ACTIONS(4696), 1, + [118789] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4778), 2, + sym__dedent, + anon_sym_case, + [118798] = 3, + ACTIONS(4780), 1, sym_integer, - ACTIONS(4698), 1, + ACTIONS(4782), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116295] = 2, + [118809] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4700), 2, - sym__newline, - anon_sym_SEMI, - [116304] = 2, + ACTIONS(4784), 2, + sym__dedent, + anon_sym_case, + [118818] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116313] = 2, + ACTIONS(4786), 2, + sym__dedent, + anon_sym_case, + [118827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4702), 2, + ACTIONS(4788), 2, sym__dedent, anon_sym_case, - [116322] = 2, + [118836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4543), 2, + ACTIONS(4089), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116331] = 2, + [118845] = 3, + ACTIONS(4790), 1, + anon_sym_COLON, + ACTIONS(4792), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116340] = 2, + [118856] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3334), 2, + sym__newline, + anon_sym_SEMI, + [118865] = 3, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2613), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118876] = 3, + ACTIONS(3995), 1, + anon_sym_LPAREN, + STATE(2641), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [118887] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 2, + ACTIONS(2911), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [116349] = 2, + [118896] = 3, + ACTIONS(4794), 1, + sym_integer, + ACTIONS(4796), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, - sym__dedent, - anon_sym_case, - [116358] = 2, + [118907] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3577), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [118916] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2893), 2, + ACTIONS(3949), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [116367] = 3, - ACTIONS(3923), 1, + anon_sym_COLON, + [118925] = 3, + ACTIONS(3995), 1, anon_sym_LPAREN, - STATE(2560), 1, + STATE(2610), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116378] = 3, - ACTIONS(3923), 1, + [118936] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3949), 2, + anon_sym_COMMA, + anon_sym_COLON, + [118945] = 3, + ACTIONS(3995), 1, anon_sym_LPAREN, - STATE(2562), 1, + STATE(2611), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116389] = 2, + [118956] = 3, + ACTIONS(4798), 1, + anon_sym_COLON, + ACTIONS(4800), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3665), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116398] = 3, - ACTIONS(4704), 1, + [118967] = 3, + ACTIONS(4802), 1, sym_integer, - ACTIONS(4706), 1, + ACTIONS(4804), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116409] = 3, - ACTIONS(4708), 1, - anon_sym_COLON, - ACTIONS(4710), 1, - anon_sym_DASH_GT, + [118978] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116420] = 2, + ACTIONS(4806), 2, + sym__dedent, + anon_sym_case, + [118987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4712), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116429] = 2, + ACTIONS(4222), 2, + sym__newline, + anon_sym_SEMI, + [118996] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3192), 2, + ACTIONS(4808), 2, sym__newline, anon_sym_SEMI, - [116438] = 3, - ACTIONS(4714), 1, - anon_sym_COLON, - ACTIONS(4716), 1, - anon_sym_DASH_GT, + [119005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116449] = 2, - ACTIONS(4718), 1, - anon_sym_RBRACK, + ACTIONS(3206), 2, + sym__newline, + anon_sym_SEMI, + [119014] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116457] = 2, - ACTIONS(4720), 1, - anon_sym_RBRACE, + ACTIONS(4810), 2, + sym__newline, + anon_sym_SEMI, + [119023] = 2, + ACTIONS(4812), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116465] = 2, - ACTIONS(3407), 1, + [119031] = 2, + ACTIONS(4814), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116473] = 2, - ACTIONS(4722), 1, + [119039] = 2, + ACTIONS(4816), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [119047] = 2, + ACTIONS(4818), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116481] = 2, - ACTIONS(4724), 1, - sym_identifier, + [119055] = 2, + ACTIONS(4820), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116489] = 2, - ACTIONS(4726), 1, - anon_sym_RPAREN, + [119063] = 2, + ACTIONS(4822), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116497] = 2, - ACTIONS(4728), 1, - sym_identifier, + [119071] = 2, + ACTIONS(4824), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116505] = 2, - ACTIONS(4730), 1, + [119079] = 2, + ACTIONS(4826), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116513] = 2, - ACTIONS(4732), 1, + [119087] = 2, + ACTIONS(4828), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116521] = 2, - ACTIONS(4734), 1, - anon_sym_COLON, + [119095] = 2, + ACTIONS(4830), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116529] = 2, - ACTIONS(4736), 1, + [119103] = 2, + ACTIONS(4832), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116537] = 2, - ACTIONS(3437), 1, + [119111] = 2, + ACTIONS(3416), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116545] = 2, - ACTIONS(4738), 1, - anon_sym_COLON, + [119119] = 2, + ACTIONS(4834), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116553] = 2, - ACTIONS(4740), 1, - anon_sym_RBRACK, + [119127] = 2, + ACTIONS(4836), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116561] = 2, - ACTIONS(4742), 1, + [119135] = 2, + ACTIONS(4838), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116569] = 2, - ACTIONS(4744), 1, + [119143] = 2, + ACTIONS(4840), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116577] = 2, - ACTIONS(4746), 1, + [119151] = 2, + ACTIONS(4842), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [119159] = 2, + ACTIONS(4844), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116585] = 2, - ACTIONS(4748), 1, + [119167] = 2, + ACTIONS(4846), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116593] = 2, - ACTIONS(4750), 1, - anon_sym_RPAREN, + [119175] = 2, + ACTIONS(4848), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116601] = 2, - ACTIONS(4752), 1, - anon_sym_RBRACK, + [119183] = 2, + ACTIONS(4850), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116609] = 2, - ACTIONS(4754), 1, + [119191] = 2, + ACTIONS(4852), 1, anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116617] = 2, - ACTIONS(4756), 1, - sym_identifier, + [119199] = 2, + ACTIONS(4854), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116625] = 2, - ACTIONS(4758), 1, + [119207] = 2, + ACTIONS(4856), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116633] = 2, - ACTIONS(4760), 1, + [119215] = 2, + ACTIONS(4858), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116641] = 2, - ACTIONS(4762), 1, - anon_sym_COLON, + [119223] = 2, + ACTIONS(4860), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116649] = 2, - ACTIONS(3129), 1, - anon_sym_RPAREN, + [119231] = 2, + ACTIONS(4862), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116657] = 2, - ACTIONS(4764), 1, + [119239] = 2, + ACTIONS(4864), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116665] = 2, - ACTIONS(4766), 1, - anon_sym_RBRACE, + [119247] = 2, + ACTIONS(4866), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116673] = 2, - ACTIONS(4768), 1, - sym_identifier, + [119255] = 2, + ACTIONS(4868), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116681] = 2, - ACTIONS(4770), 1, - sym_identifier, + [119263] = 2, + ACTIONS(4870), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116689] = 2, - ACTIONS(4772), 1, - sym_identifier, + [119271] = 2, + ACTIONS(4872), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116697] = 2, - ACTIONS(4774), 1, + [119279] = 2, + ACTIONS(4874), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116705] = 2, - ACTIONS(4776), 1, - anon_sym_COLON_EQ, + [119287] = 2, + ACTIONS(4119), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116713] = 2, - ACTIONS(4778), 1, - anon_sym_RBRACK, + [119295] = 2, + ACTIONS(4876), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116721] = 2, - ACTIONS(4780), 1, + [119303] = 2, + ACTIONS(4878), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116729] = 2, - ACTIONS(4782), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116737] = 2, - ACTIONS(4784), 1, - anon_sym_RBRACK, + [119311] = 2, + ACTIONS(4880), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116745] = 2, - ACTIONS(4786), 1, - sym_identifier, + [119319] = 2, + ACTIONS(4882), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116753] = 2, - ACTIONS(4788), 1, - anon_sym_COLON, + [119327] = 2, + ACTIONS(4884), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116761] = 2, - ACTIONS(1473), 1, - anon_sym_def, + [119335] = 2, + ACTIONS(4886), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116769] = 2, - ACTIONS(4790), 1, + [119343] = 2, + ACTIONS(4888), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116777] = 2, - ACTIONS(4792), 1, - anon_sym_in, + [119351] = 2, + ACTIONS(4890), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116785] = 2, - ACTIONS(4794), 1, - sym_identifier, + [119359] = 2, + ACTIONS(4892), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116793] = 2, - ACTIONS(3087), 1, - anon_sym_RPAREN, + [119367] = 2, + ACTIONS(4517), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116801] = 2, - ACTIONS(4796), 1, - anon_sym_RBRACK, + [119375] = 2, + ACTIONS(4894), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116809] = 2, - ACTIONS(3377), 1, - anon_sym_COLON, + [119383] = 2, + ACTIONS(4896), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116817] = 2, - ACTIONS(4798), 1, - anon_sym_COLON, + [119391] = 2, + ACTIONS(4898), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116825] = 2, - ACTIONS(4389), 1, - anon_sym_in, + [119399] = 2, + ACTIONS(4900), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116833] = 2, - ACTIONS(4800), 1, + [119407] = 2, + ACTIONS(4902), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116841] = 2, - ACTIONS(4802), 1, - anon_sym_RBRACE, + [119415] = 2, + ACTIONS(4904), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116849] = 2, - ACTIONS(4804), 1, - anon_sym_RBRACE, + [119423] = 2, + ACTIONS(4906), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116857] = 2, - ACTIONS(4806), 1, - anon_sym_RPAREN, + [119431] = 2, + ACTIONS(4908), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116865] = 2, - ACTIONS(4808), 1, + [119439] = 2, + ACTIONS(4910), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116873] = 2, - ACTIONS(4810), 1, + [119447] = 2, + ACTIONS(4912), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116881] = 2, - ACTIONS(4812), 1, - anon_sym_COLON_EQ, + [119455] = 2, + ACTIONS(4914), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116889] = 2, - ACTIONS(4814), 1, + [119463] = 2, + ACTIONS(4916), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116897] = 2, - ACTIONS(4816), 1, + [119471] = 2, + ACTIONS(3383), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116905] = 2, - ACTIONS(4818), 1, - anon_sym_RBRACK, + [119479] = 2, + ACTIONS(4918), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116913] = 2, - ACTIONS(4820), 1, + [119487] = 2, + ACTIONS(4920), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116921] = 2, - ACTIONS(3077), 1, - anon_sym_RPAREN, + [119495] = 2, + ACTIONS(4922), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116929] = 2, - ACTIONS(4822), 1, - anon_sym_COLON_EQ, + [119503] = 2, + ACTIONS(4924), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116937] = 2, - ACTIONS(4824), 1, - anon_sym_RBRACE, + [119511] = 2, + ACTIONS(4926), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116945] = 2, - ACTIONS(3485), 1, + [119519] = 2, + ACTIONS(4928), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116953] = 2, - ACTIONS(4826), 1, - anon_sym_RPAREN, + [119527] = 2, + ACTIONS(4930), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116961] = 2, - ACTIONS(4828), 1, - anon_sym_RBRACE, + [119535] = 2, + ACTIONS(4932), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116969] = 2, - ACTIONS(4830), 1, - anon_sym_RBRACK, + [119543] = 2, + ACTIONS(4934), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116977] = 2, - ACTIONS(4832), 1, - anon_sym_RPAREN, + [119551] = 2, + ACTIONS(4936), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116985] = 2, - ACTIONS(4834), 1, - anon_sym_COLON, + [119559] = 2, + ACTIONS(4521), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116993] = 2, - ACTIONS(3381), 1, + [119567] = 2, + ACTIONS(4938), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117001] = 2, - ACTIONS(4836), 1, - anon_sym_RBRACE, + [119575] = 2, + ACTIONS(4940), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117009] = 2, - ACTIONS(4838), 1, - anon_sym_RBRACK, + [119583] = 2, + ACTIONS(4942), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117017] = 2, - ACTIONS(4840), 1, - sym_identifier, + [119591] = 2, + ACTIONS(4944), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117025] = 2, - ACTIONS(3429), 1, + [119599] = 2, + ACTIONS(4946), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117033] = 2, - ACTIONS(4842), 1, - anon_sym_COLON, + [119607] = 2, + ACTIONS(4948), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117041] = 2, - ACTIONS(4844), 1, + [119615] = 2, + ACTIONS(4950), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [119623] = 2, + ACTIONS(4952), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117049] = 2, - ACTIONS(4846), 1, - sym_identifier, + [119631] = 2, + ACTIONS(4954), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117057] = 2, - ACTIONS(4848), 1, - anon_sym_RBRACE, + [119639] = 2, + ACTIONS(4956), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117065] = 2, - ACTIONS(4850), 1, + [119647] = 2, + ACTIONS(4958), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117073] = 2, - ACTIONS(4852), 1, - anon_sym_RBRACE, + [119655] = 2, + ACTIONS(4960), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117081] = 2, - ACTIONS(4854), 1, + [119663] = 2, + ACTIONS(4962), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117089] = 2, - ACTIONS(4856), 1, - anon_sym_import, + [119671] = 2, + ACTIONS(1441), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117097] = 2, - ACTIONS(4858), 1, + [119679] = 2, + ACTIONS(4964), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [119687] = 2, + ACTIONS(4966), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117105] = 2, - ACTIONS(4860), 1, - anon_sym_COLON_EQ, + [119695] = 2, + ACTIONS(4968), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117113] = 2, - ACTIONS(4862), 1, - anon_sym_RBRACE, + [119703] = 2, + ACTIONS(4970), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117121] = 2, - ACTIONS(4864), 1, - anon_sym_RBRACE, + [119711] = 2, + ACTIONS(4972), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117129] = 2, - ACTIONS(4866), 1, + [119719] = 2, + ACTIONS(4974), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117137] = 2, - ACTIONS(3388), 1, - anon_sym_RBRACE, + [119727] = 2, + ACTIONS(4976), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117145] = 2, - ACTIONS(4460), 1, + [119735] = 2, + ACTIONS(4574), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117153] = 2, - ACTIONS(4868), 1, + [119743] = 2, + ACTIONS(4978), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117161] = 2, - ACTIONS(3451), 1, + [119751] = 2, + ACTIONS(3454), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117169] = 2, - ACTIONS(4870), 1, - anon_sym_RPAREN, + [119759] = 2, + ACTIONS(4980), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117177] = 2, - ACTIONS(4872), 1, + [119767] = 2, + ACTIONS(4982), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117185] = 2, - ACTIONS(4874), 1, + [119775] = 2, + ACTIONS(3387), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117193] = 2, - ACTIONS(4876), 1, + [119783] = 2, + ACTIONS(4984), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117201] = 2, - ACTIONS(4878), 1, + [119791] = 2, + ACTIONS(4986), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117209] = 2, - ACTIONS(4880), 1, + [119799] = 2, + ACTIONS(4988), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117217] = 2, - ACTIONS(4882), 1, - anon_sym_RPAREN, + [119807] = 2, + ACTIONS(3488), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117225] = 2, - ACTIONS(4469), 1, + [119815] = 2, + ACTIONS(4580), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117233] = 2, - ACTIONS(3453), 1, + [119823] = 2, + ACTIONS(3458), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117241] = 2, - ACTIONS(4884), 1, - anon_sym_COLON, + [119831] = 2, + ACTIONS(4990), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117249] = 2, - ACTIONS(4886), 1, - anon_sym_RPAREN, + [119839] = 2, + ACTIONS(4992), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117257] = 2, - ACTIONS(4888), 1, - anon_sym_RPAREN, + [119847] = 2, + ACTIONS(4994), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117265] = 2, - ACTIONS(4890), 1, - ts_builtin_sym_end, + [119855] = 2, + ACTIONS(4996), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117273] = 2, - ACTIONS(4892), 1, - sym_identifier, + [119863] = 2, + ACTIONS(4093), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117281] = 2, - ACTIONS(4894), 1, - anon_sym_RPAREN, + [119871] = 2, + ACTIONS(4998), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117289] = 2, - ACTIONS(4896), 1, - anon_sym_RBRACK, + [119879] = 2, + ACTIONS(5000), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117297] = 2, - ACTIONS(4898), 1, - anon_sym_RBRACK, + [119887] = 2, + ACTIONS(5002), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117305] = 2, - ACTIONS(4900), 1, - anon_sym_RBRACE, + [119895] = 2, + ACTIONS(5004), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117313] = 2, - ACTIONS(4902), 1, - anon_sym_COLON, + [119903] = 2, + ACTIONS(5006), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117321] = 2, - ACTIONS(4904), 1, - anon_sym_RBRACE, + [119911] = 2, + ACTIONS(5008), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117329] = 2, - ACTIONS(4906), 1, + [119919] = 2, + ACTIONS(5010), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117337] = 2, - ACTIONS(3396), 1, - anon_sym_RBRACE, + [119927] = 2, + ACTIONS(5012), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117345] = 2, - ACTIONS(4908), 1, - anon_sym_RBRACE, + [119935] = 2, + ACTIONS(5014), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117353] = 2, - ACTIONS(4910), 1, - sym_identifier, + [119943] = 2, + ACTIONS(5016), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117361] = 2, - ACTIONS(4912), 1, - anon_sym_RPAREN, + [119951] = 2, + ACTIONS(5018), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117369] = 2, - ACTIONS(3411), 1, + [119959] = 2, + ACTIONS(3369), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117377] = 2, - ACTIONS(4914), 1, + [119967] = 2, + ACTIONS(5020), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117385] = 2, - ACTIONS(4916), 1, - anon_sym_RBRACE, + [119975] = 2, + ACTIONS(5022), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117393] = 2, - ACTIONS(4918), 1, - anon_sym_RBRACE, + [119983] = 2, + ACTIONS(5024), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117401] = 2, - ACTIONS(4920), 1, - sym_identifier, + [119991] = 2, + ACTIONS(5026), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117409] = 2, - ACTIONS(4922), 1, - anon_sym_COLON, + [119999] = 2, + ACTIONS(4639), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117417] = 2, - ACTIONS(4924), 1, + [120007] = 2, + ACTIONS(5028), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117425] = 2, - ACTIONS(4926), 1, - anon_sym_RPAREN, + [120015] = 2, + ACTIONS(5030), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117433] = 2, - ACTIONS(4498), 1, + [120023] = 2, + ACTIONS(4604), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117441] = 2, - ACTIONS(4928), 1, - sym_identifier, + [120031] = 2, + ACTIONS(5032), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117449] = 2, - ACTIONS(4500), 1, + [120039] = 2, + ACTIONS(4606), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117457] = 2, - ACTIONS(3117), 1, - anon_sym_RPAREN, + [120047] = 2, + ACTIONS(5034), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117465] = 2, - ACTIONS(4930), 1, + [120055] = 2, + ACTIONS(5036), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117473] = 2, - ACTIONS(4932), 1, - anon_sym_RPAREN, + [120063] = 2, + ACTIONS(5038), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117481] = 2, - ACTIONS(4934), 1, - anon_sym_RBRACK, + [120071] = 2, + ACTIONS(5040), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117489] = 2, - ACTIONS(4936), 1, - anon_sym_COLON, + [120079] = 2, + ACTIONS(5042), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117497] = 2, - ACTIONS(4938), 1, + [120087] = 2, + ACTIONS(5044), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117505] = 2, - ACTIONS(4940), 1, - anon_sym_COLON, + [120095] = 2, + ACTIONS(5046), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117513] = 2, - ACTIONS(4942), 1, - anon_sym_for, + [120103] = 2, + ACTIONS(5048), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117521] = 2, - ACTIONS(3146), 1, - anon_sym_RPAREN, + [120111] = 2, + ACTIONS(5050), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117529] = 2, - ACTIONS(4944), 1, + [120119] = 2, + ACTIONS(5052), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117537] = 2, - ACTIONS(4946), 1, - anon_sym_RBRACE, + [120127] = 2, + ACTIONS(5054), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117545] = 2, - ACTIONS(4948), 1, - anon_sym_COLON, + [120135] = 2, + ACTIONS(5056), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117553] = 2, - ACTIONS(4950), 1, - anon_sym_COLON, + [120143] = 2, + ACTIONS(5058), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117561] = 2, - ACTIONS(4952), 1, + [120151] = 2, + ACTIONS(5060), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117569] = 2, - ACTIONS(3067), 1, - anon_sym_RPAREN, + [120159] = 2, + ACTIONS(5062), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117577] = 2, - ACTIONS(4954), 1, + [120167] = 2, + ACTIONS(5064), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117585] = 2, - ACTIONS(4257), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [117593] = 2, - ACTIONS(3097), 1, - anon_sym_RPAREN, + [120175] = 2, + ACTIONS(5066), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117601] = 2, - ACTIONS(4956), 1, + [120183] = 2, + ACTIONS(5068), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117609] = 2, - ACTIONS(4958), 1, - sym_identifier, + [120191] = 2, + ACTIONS(5070), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117617] = 2, - ACTIONS(4960), 1, - anon_sym_RBRACK, + [120199] = 2, + ACTIONS(1483), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117625] = 2, - ACTIONS(4962), 1, + [120207] = 2, + ACTIONS(5072), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117633] = 2, - ACTIONS(4089), 1, - anon_sym_in, + [120215] = 2, + ACTIONS(5074), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117641] = 2, - ACTIONS(4964), 1, - anon_sym_RBRACE, + [120223] = 2, + ACTIONS(5076), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117649] = 2, - ACTIONS(1431), 1, + [120231] = 2, + ACTIONS(5078), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117657] = 2, - ACTIONS(4966), 1, - anon_sym_RBRACE, + [120239] = 2, + ACTIONS(5080), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117665] = 2, - ACTIONS(4968), 1, - anon_sym_COLON, + [120247] = 2, + ACTIONS(5082), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117673] = 2, - ACTIONS(4970), 1, + [120255] = 2, + ACTIONS(5084), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117681] = 2, - ACTIONS(4972), 1, - anon_sym_RBRACK, + [120263] = 2, + ACTIONS(5086), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117689] = 2, - ACTIONS(4974), 1, - sym_identifier, + [120271] = 2, + ACTIONS(5088), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117697] = 2, - ACTIONS(4976), 1, - anon_sym_RBRACE, + [120279] = 2, + ACTIONS(5090), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117705] = 2, - ACTIONS(4978), 1, - anon_sym_RBRACK, + [120287] = 2, + ACTIONS(3440), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117713] = 2, - ACTIONS(4980), 1, - sym_identifier, + [120295] = 2, + ACTIONS(3482), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117721] = 2, - ACTIONS(4982), 1, - sym_identifier, + [120303] = 2, + ACTIONS(5092), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117729] = 2, - ACTIONS(4984), 1, - sym_identifier, + [120311] = 2, + ACTIONS(5094), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117737] = 2, - ACTIONS(4986), 1, + [120319] = 2, + ACTIONS(5096), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117745] = 2, - ACTIONS(4988), 1, - sym_identifier, + [120327] = 2, + ACTIONS(3492), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117753] = 2, - ACTIONS(4990), 1, - anon_sym_RPAREN, + [120335] = 2, + ACTIONS(5098), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117761] = 2, - ACTIONS(4992), 1, + [120343] = 2, + ACTIONS(5100), 1, anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117769] = 2, - ACTIONS(3415), 1, - anon_sym_RBRACE, + [120351] = 2, + ACTIONS(5102), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117777] = 2, - ACTIONS(4994), 1, - anon_sym_RPAREN, + [120359] = 2, + ACTIONS(3452), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117785] = 2, - ACTIONS(4522), 1, - anon_sym_in, + [120367] = 2, + ACTIONS(5104), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117793] = 2, - ACTIONS(4996), 1, - anon_sym_RBRACK, + [120375] = 2, + ACTIONS(5106), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117801] = 2, - ACTIONS(4998), 1, - anon_sym_COLON_EQ, + [120383] = 2, + ACTIONS(3504), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117809] = 2, - ACTIONS(5000), 1, - sym_identifier, + [120391] = 2, + ACTIONS(5108), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117817] = 2, - ACTIONS(5002), 1, - anon_sym_COLON_EQ, + [120399] = 2, + ACTIONS(5110), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117825] = 2, - ACTIONS(5004), 1, - anon_sym_COLON, + [120407] = 2, + ACTIONS(5112), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117833] = 2, - ACTIONS(5006), 1, - anon_sym_RBRACE, + [120415] = 2, + ACTIONS(5114), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117841] = 2, - ACTIONS(5008), 1, - anon_sym_RBRACE, + [120423] = 2, + ACTIONS(5116), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117849] = 2, - ACTIONS(5010), 1, - sym_identifier, + [120431] = 2, + ACTIONS(5118), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117857] = 2, - ACTIONS(5012), 1, - anon_sym_RPAREN, + [120439] = 2, + ACTIONS(5120), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117865] = 2, - ACTIONS(3107), 1, - anon_sym_RPAREN, + [120447] = 2, + ACTIONS(5122), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117873] = 2, - ACTIONS(5014), 1, - anon_sym_RPAREN, + [120455] = 2, + ACTIONS(5124), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117881] = 2, - ACTIONS(5016), 1, + [120463] = 2, + ACTIONS(5126), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117889] = 2, - ACTIONS(5018), 1, + [120471] = 2, + ACTIONS(5128), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117897] = 2, - ACTIONS(5020), 1, - anon_sym_RPAREN, + [120479] = 2, + ACTIONS(5130), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117905] = 2, - ACTIONS(5022), 1, - anon_sym_COLON, + [120487] = 2, + ACTIONS(5132), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117913] = 2, - ACTIONS(5024), 1, + [120495] = 2, + ACTIONS(5134), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [120503] = 2, + ACTIONS(5136), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117921] = 2, - ACTIONS(5026), 1, + [120511] = 2, + ACTIONS(5138), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117929] = 2, - ACTIONS(5028), 1, - anon_sym_RBRACE, + [120519] = 2, + ACTIONS(5140), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117937] = 2, - ACTIONS(4558), 1, + [120527] = 2, + ACTIONS(4652), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117945] = 2, - ACTIONS(1481), 1, + [120535] = 2, + ACTIONS(1489), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117953] = 2, - ACTIONS(5030), 1, + [120543] = 2, + ACTIONS(5142), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117961] = 2, - ACTIONS(5032), 1, - sym_identifier, + [120551] = 2, + ACTIONS(5144), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117969] = 2, - ACTIONS(4560), 1, + [120559] = 2, + ACTIONS(4654), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117977] = 2, - ACTIONS(5034), 1, + [120567] = 2, + ACTIONS(5146), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117985] = 2, - ACTIONS(5036), 1, - anon_sym_RPAREN, + [120575] = 2, + ACTIONS(5148), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117993] = 2, - ACTIONS(5038), 1, - anon_sym_COLON, + [120583] = 2, + ACTIONS(5150), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [118001] = 2, - ACTIONS(5040), 1, - anon_sym_RBRACK, + [120591] = 2, + ACTIONS(5152), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(185)] = 0, - [SMALL_STATE(186)] = 120, - [SMALL_STATE(187)] = 244, - [SMALL_STATE(188)] = 370, - [SMALL_STATE(189)] = 494, - [SMALL_STATE(190)] = 618, - [SMALL_STATE(191)] = 746, - [SMALL_STATE(192)] = 872, - [SMALL_STATE(193)] = 992, - [SMALL_STATE(194)] = 1120, - [SMALL_STATE(195)] = 1240, - [SMALL_STATE(196)] = 1366, - [SMALL_STATE(197)] = 1490, - [SMALL_STATE(198)] = 1614, - [SMALL_STATE(199)] = 1740, - [SMALL_STATE(200)] = 1864, - [SMALL_STATE(201)] = 1988, - [SMALL_STATE(202)] = 2114, - [SMALL_STATE(203)] = 2238, - [SMALL_STATE(204)] = 2362, - [SMALL_STATE(205)] = 2488, - [SMALL_STATE(206)] = 2612, - [SMALL_STATE(207)] = 2736, - [SMALL_STATE(208)] = 2862, - [SMALL_STATE(209)] = 2986, - [SMALL_STATE(210)] = 3110, - [SMALL_STATE(211)] = 3236, - [SMALL_STATE(212)] = 3360, - [SMALL_STATE(213)] = 3484, - [SMALL_STATE(214)] = 3610, - [SMALL_STATE(215)] = 3734, - [SMALL_STATE(216)] = 3858, - [SMALL_STATE(217)] = 3982, - [SMALL_STATE(218)] = 4106, - [SMALL_STATE(219)] = 4213, - [SMALL_STATE(220)] = 4320, - [SMALL_STATE(221)] = 4436, - [SMALL_STATE(222)] = 4552, - [SMALL_STATE(223)] = 4668, - [SMALL_STATE(224)] = 4784, - [SMALL_STATE(225)] = 4900, - [SMALL_STATE(226)] = 5016, - [SMALL_STATE(227)] = 5132, - [SMALL_STATE(228)] = 5248, - [SMALL_STATE(229)] = 5364, - [SMALL_STATE(230)] = 5480, - [SMALL_STATE(231)] = 5593, - [SMALL_STATE(232)] = 5706, - [SMALL_STATE(233)] = 5811, - [SMALL_STATE(234)] = 5924, - [SMALL_STATE(235)] = 6037, - [SMALL_STATE(236)] = 6150, - [SMALL_STATE(237)] = 6263, - [SMALL_STATE(238)] = 6376, - [SMALL_STATE(239)] = 6489, - [SMALL_STATE(240)] = 6602, - [SMALL_STATE(241)] = 6717, - [SMALL_STATE(242)] = 6830, - [SMALL_STATE(243)] = 6943, - [SMALL_STATE(244)] = 7054, - [SMALL_STATE(245)] = 7167, - [SMALL_STATE(246)] = 7282, - [SMALL_STATE(247)] = 7397, - [SMALL_STATE(248)] = 7510, - [SMALL_STATE(249)] = 7623, - [SMALL_STATE(250)] = 7736, - [SMALL_STATE(251)] = 7849, - [SMALL_STATE(252)] = 7964, - [SMALL_STATE(253)] = 8079, - [SMALL_STATE(254)] = 8196, - [SMALL_STATE(255)] = 8311, - [SMALL_STATE(256)] = 8416, - [SMALL_STATE(257)] = 8529, - [SMALL_STATE(258)] = 8644, - [SMALL_STATE(259)] = 8759, - [SMALL_STATE(260)] = 8872, - [SMALL_STATE(261)] = 8985, - [SMALL_STATE(262)] = 9098, - [SMALL_STATE(263)] = 9211, - [SMALL_STATE(264)] = 9324, - [SMALL_STATE(265)] = 9437, - [SMALL_STATE(266)] = 9550, - [SMALL_STATE(267)] = 9663, - [SMALL_STATE(268)] = 9778, - [SMALL_STATE(269)] = 9890, - [SMALL_STATE(270)] = 10002, - [SMALL_STATE(271)] = 10118, - [SMALL_STATE(272)] = 10230, - [SMALL_STATE(273)] = 10342, - [SMALL_STATE(274)] = 10454, - [SMALL_STATE(275)] = 10566, - [SMALL_STATE(276)] = 10678, - [SMALL_STATE(277)] = 10790, - [SMALL_STATE(278)] = 10902, - [SMALL_STATE(279)] = 11016, - [SMALL_STATE(280)] = 11128, - [SMALL_STATE(281)] = 11244, - [SMALL_STATE(282)] = 11356, - [SMALL_STATE(283)] = 11468, - [SMALL_STATE(284)] = 11580, - [SMALL_STATE(285)] = 11692, - [SMALL_STATE(286)] = 11804, - [SMALL_STATE(287)] = 11916, - [SMALL_STATE(288)] = 12030, - [SMALL_STATE(289)] = 12142, - [SMALL_STATE(290)] = 12258, - [SMALL_STATE(291)] = 12372, - [SMALL_STATE(292)] = 12484, - [SMALL_STATE(293)] = 12598, - [SMALL_STATE(294)] = 12710, - [SMALL_STATE(295)] = 12822, - [SMALL_STATE(296)] = 12936, - [SMALL_STATE(297)] = 13048, - [SMALL_STATE(298)] = 13162, - [SMALL_STATE(299)] = 13274, - [SMALL_STATE(300)] = 13390, - [SMALL_STATE(301)] = 13502, - [SMALL_STATE(302)] = 13614, - [SMALL_STATE(303)] = 13726, - [SMALL_STATE(304)] = 13838, - [SMALL_STATE(305)] = 13952, - [SMALL_STATE(306)] = 14064, - [SMALL_STATE(307)] = 14180, - [SMALL_STATE(308)] = 14292, - [SMALL_STATE(309)] = 14404, - [SMALL_STATE(310)] = 14516, - [SMALL_STATE(311)] = 14628, - [SMALL_STATE(312)] = 14742, - [SMALL_STATE(313)] = 14854, - [SMALL_STATE(314)] = 14966, - [SMALL_STATE(315)] = 15078, - [SMALL_STATE(316)] = 15190, - [SMALL_STATE(317)] = 15302, - [SMALL_STATE(318)] = 15414, - [SMALL_STATE(319)] = 15526, - [SMALL_STATE(320)] = 15638, - [SMALL_STATE(321)] = 15754, - [SMALL_STATE(322)] = 15866, - [SMALL_STATE(323)] = 15975, - [SMALL_STATE(324)] = 16084, - [SMALL_STATE(325)] = 16181, - [SMALL_STATE(326)] = 16290, - [SMALL_STATE(327)] = 16399, - [SMALL_STATE(328)] = 16508, - [SMALL_STATE(329)] = 16617, - [SMALL_STATE(330)] = 16722, - [SMALL_STATE(331)] = 16831, - [SMALL_STATE(332)] = 16940, - [SMALL_STATE(333)] = 17049, - [SMALL_STATE(334)] = 17154, - [SMALL_STATE(335)] = 17263, - [SMALL_STATE(336)] = 17372, - [SMALL_STATE(337)] = 17481, - [SMALL_STATE(338)] = 17590, - [SMALL_STATE(339)] = 17699, - [SMALL_STATE(340)] = 17808, - [SMALL_STATE(341)] = 17917, - [SMALL_STATE(342)] = 18026, - [SMALL_STATE(343)] = 18135, - [SMALL_STATE(344)] = 18244, - [SMALL_STATE(345)] = 18352, - [SMALL_STATE(346)] = 18460, - [SMALL_STATE(347)] = 18568, - [SMALL_STATE(348)] = 18676, - [SMALL_STATE(349)] = 18784, - [SMALL_STATE(350)] = 18892, - [SMALL_STATE(351)] = 18998, - [SMALL_STATE(352)] = 19104, - [SMALL_STATE(353)] = 19212, - [SMALL_STATE(354)] = 19320, - [SMALL_STATE(355)] = 19428, - [SMALL_STATE(356)] = 19536, - [SMALL_STATE(357)] = 19644, - [SMALL_STATE(358)] = 19752, - [SMALL_STATE(359)] = 19860, - [SMALL_STATE(360)] = 19968, - [SMALL_STATE(361)] = 20076, - [SMALL_STATE(362)] = 20182, - [SMALL_STATE(363)] = 20290, - [SMALL_STATE(364)] = 20398, - [SMALL_STATE(365)] = 20506, - [SMALL_STATE(366)] = 20614, - [SMALL_STATE(367)] = 20722, - [SMALL_STATE(368)] = 20829, - [SMALL_STATE(369)] = 20936, - [SMALL_STATE(370)] = 21043, - [SMALL_STATE(371)] = 21150, - [SMALL_STATE(372)] = 21255, - [SMALL_STATE(373)] = 21362, - [SMALL_STATE(374)] = 21467, - [SMALL_STATE(375)] = 21574, - [SMALL_STATE(376)] = 21681, - [SMALL_STATE(377)] = 21788, - [SMALL_STATE(378)] = 21895, - [SMALL_STATE(379)] = 22002, - [SMALL_STATE(380)] = 22107, - [SMALL_STATE(381)] = 22214, - [SMALL_STATE(382)] = 22321, - [SMALL_STATE(383)] = 22428, - [SMALL_STATE(384)] = 22535, - [SMALL_STATE(385)] = 22642, - [SMALL_STATE(386)] = 22747, - [SMALL_STATE(387)] = 22842, - [SMALL_STATE(388)] = 22949, - [SMALL_STATE(389)] = 23056, - [SMALL_STATE(390)] = 23163, - [SMALL_STATE(391)] = 23270, - [SMALL_STATE(392)] = 23377, - [SMALL_STATE(393)] = 23484, - [SMALL_STATE(394)] = 23591, - [SMALL_STATE(395)] = 23698, - [SMALL_STATE(396)] = 23805, - [SMALL_STATE(397)] = 23910, - [SMALL_STATE(398)] = 24017, - [SMALL_STATE(399)] = 24124, - [SMALL_STATE(400)] = 24229, - [SMALL_STATE(401)] = 24324, - [SMALL_STATE(402)] = 24431, - [SMALL_STATE(403)] = 24538, - [SMALL_STATE(404)] = 24645, - [SMALL_STATE(405)] = 24752, - [SMALL_STATE(406)] = 24856, - [SMALL_STATE(407)] = 24950, - [SMALL_STATE(408)] = 25044, - [SMALL_STATE(409)] = 25146, - [SMALL_STATE(410)] = 25248, - [SMALL_STATE(411)] = 25352, - [SMALL_STATE(412)] = 25448, - [SMALL_STATE(413)] = 25552, - [SMALL_STATE(414)] = 25656, - [SMALL_STATE(415)] = 25758, - [SMALL_STATE(416)] = 25860, - [SMALL_STATE(417)] = 25962, - [SMALL_STATE(418)] = 26056, - [SMALL_STATE(419)] = 26150, - [SMALL_STATE(420)] = 26252, - [SMALL_STATE(421)] = 26354, - [SMALL_STATE(422)] = 26456, - [SMALL_STATE(423)] = 26558, - [SMALL_STATE(424)] = 26662, - [SMALL_STATE(425)] = 26764, - [SMALL_STATE(426)] = 26866, - [SMALL_STATE(427)] = 26968, - [SMALL_STATE(428)] = 27070, - [SMALL_STATE(429)] = 27172, - [SMALL_STATE(430)] = 27274, - [SMALL_STATE(431)] = 27376, - [SMALL_STATE(432)] = 27478, - [SMALL_STATE(433)] = 27580, - [SMALL_STATE(434)] = 27684, - [SMALL_STATE(435)] = 27786, - [SMALL_STATE(436)] = 27888, - [SMALL_STATE(437)] = 27990, - [SMALL_STATE(438)] = 28092, - [SMALL_STATE(439)] = 28194, - [SMALL_STATE(440)] = 28298, - [SMALL_STATE(441)] = 28400, - [SMALL_STATE(442)] = 28502, - [SMALL_STATE(443)] = 28604, - [SMALL_STATE(444)] = 28706, - [SMALL_STATE(445)] = 28810, - [SMALL_STATE(446)] = 28914, - [SMALL_STATE(447)] = 29016, - [SMALL_STATE(448)] = 29120, - [SMALL_STATE(449)] = 29224, - [SMALL_STATE(450)] = 29328, - [SMALL_STATE(451)] = 29432, - [SMALL_STATE(452)] = 29536, - [SMALL_STATE(453)] = 29640, - [SMALL_STATE(454)] = 29744, - [SMALL_STATE(455)] = 29848, - [SMALL_STATE(456)] = 29952, - [SMALL_STATE(457)] = 30056, - [SMALL_STATE(458)] = 30160, - [SMALL_STATE(459)] = 30264, - [SMALL_STATE(460)] = 30366, - [SMALL_STATE(461)] = 30441, - [SMALL_STATE(462)] = 30542, - [SMALL_STATE(463)] = 30643, - [SMALL_STATE(464)] = 30744, - [SMALL_STATE(465)] = 30821, - [SMALL_STATE(466)] = 30922, - [SMALL_STATE(467)] = 31023, - [SMALL_STATE(468)] = 31124, - [SMALL_STATE(469)] = 31225, - [SMALL_STATE(470)] = 31326, - [SMALL_STATE(471)] = 31401, - [SMALL_STATE(472)] = 31502, - [SMALL_STATE(473)] = 31603, - [SMALL_STATE(474)] = 31704, - [SMALL_STATE(475)] = 31805, - [SMALL_STATE(476)] = 31880, - [SMALL_STATE(477)] = 31981, - [SMALL_STATE(478)] = 32082, - [SMALL_STATE(479)] = 32183, - [SMALL_STATE(480)] = 32281, - [SMALL_STATE(481)] = 32353, - [SMALL_STATE(482)] = 32451, - [SMALL_STATE(483)] = 32523, - [SMALL_STATE(484)] = 32621, - [SMALL_STATE(485)] = 32719, - [SMALL_STATE(486)] = 32817, - [SMALL_STATE(487)] = 32915, - [SMALL_STATE(488)] = 33013, - [SMALL_STATE(489)] = 33113, - [SMALL_STATE(490)] = 33185, - [SMALL_STATE(491)] = 33257, - [SMALL_STATE(492)] = 33355, - [SMALL_STATE(493)] = 33453, - [SMALL_STATE(494)] = 33551, - [SMALL_STATE(495)] = 33649, - [SMALL_STATE(496)] = 33747, - [SMALL_STATE(497)] = 33845, - [SMALL_STATE(498)] = 33943, - [SMALL_STATE(499)] = 34041, - [SMALL_STATE(500)] = 34139, - [SMALL_STATE(501)] = 34237, - [SMALL_STATE(502)] = 34335, - [SMALL_STATE(503)] = 34433, - [SMALL_STATE(504)] = 34531, - [SMALL_STATE(505)] = 34629, - [SMALL_STATE(506)] = 34727, - [SMALL_STATE(507)] = 34825, - [SMALL_STATE(508)] = 34923, - [SMALL_STATE(509)] = 35021, - [SMALL_STATE(510)] = 35119, - [SMALL_STATE(511)] = 35217, - [SMALL_STATE(512)] = 35315, - [SMALL_STATE(513)] = 35413, - [SMALL_STATE(514)] = 35511, - [SMALL_STATE(515)] = 35609, - [SMALL_STATE(516)] = 35707, - [SMALL_STATE(517)] = 35805, - [SMALL_STATE(518)] = 35903, - [SMALL_STATE(519)] = 36001, - [SMALL_STATE(520)] = 36099, - [SMALL_STATE(521)] = 36197, - [SMALL_STATE(522)] = 36295, - [SMALL_STATE(523)] = 36393, - [SMALL_STATE(524)] = 36491, - [SMALL_STATE(525)] = 36589, - [SMALL_STATE(526)] = 36687, - [SMALL_STATE(527)] = 36785, - [SMALL_STATE(528)] = 36883, - [SMALL_STATE(529)] = 36981, - [SMALL_STATE(530)] = 37079, - [SMALL_STATE(531)] = 37177, - [SMALL_STATE(532)] = 37275, - [SMALL_STATE(533)] = 37373, - [SMALL_STATE(534)] = 37471, - [SMALL_STATE(535)] = 37569, - [SMALL_STATE(536)] = 37667, - [SMALL_STATE(537)] = 37765, - [SMALL_STATE(538)] = 37863, - [SMALL_STATE(539)] = 37961, - [SMALL_STATE(540)] = 38059, - [SMALL_STATE(541)] = 38157, - [SMALL_STATE(542)] = 38255, - [SMALL_STATE(543)] = 38353, - [SMALL_STATE(544)] = 38451, - [SMALL_STATE(545)] = 38549, - [SMALL_STATE(546)] = 38649, - [SMALL_STATE(547)] = 38747, - [SMALL_STATE(548)] = 38845, - [SMALL_STATE(549)] = 38943, - [SMALL_STATE(550)] = 39041, - [SMALL_STATE(551)] = 39139, - [SMALL_STATE(552)] = 39237, - [SMALL_STATE(553)] = 39309, - [SMALL_STATE(554)] = 39407, - [SMALL_STATE(555)] = 39505, - [SMALL_STATE(556)] = 39603, - [SMALL_STATE(557)] = 39701, - [SMALL_STATE(558)] = 39799, - [SMALL_STATE(559)] = 39897, - [SMALL_STATE(560)] = 39995, - [SMALL_STATE(561)] = 40093, - [SMALL_STATE(562)] = 40191, - [SMALL_STATE(563)] = 40289, - [SMALL_STATE(564)] = 40387, - [SMALL_STATE(565)] = 40485, - [SMALL_STATE(566)] = 40583, - [SMALL_STATE(567)] = 40681, - [SMALL_STATE(568)] = 40779, - [SMALL_STATE(569)] = 40879, - [SMALL_STATE(570)] = 40977, - [SMALL_STATE(571)] = 41075, - [SMALL_STATE(572)] = 41173, - [SMALL_STATE(573)] = 41271, - [SMALL_STATE(574)] = 41369, - [SMALL_STATE(575)] = 41467, - [SMALL_STATE(576)] = 41567, - [SMALL_STATE(577)] = 41665, - [SMALL_STATE(578)] = 41763, - [SMALL_STATE(579)] = 41863, - [SMALL_STATE(580)] = 41961, - [SMALL_STATE(581)] = 42061, - [SMALL_STATE(582)] = 42159, - [SMALL_STATE(583)] = 42257, - [SMALL_STATE(584)] = 42355, - [SMALL_STATE(585)] = 42453, - [SMALL_STATE(586)] = 42551, - [SMALL_STATE(587)] = 42649, - [SMALL_STATE(588)] = 42747, - [SMALL_STATE(589)] = 42819, - [SMALL_STATE(590)] = 42891, - [SMALL_STATE(591)] = 42989, - [SMALL_STATE(592)] = 43089, - [SMALL_STATE(593)] = 43187, - [SMALL_STATE(594)] = 43285, - [SMALL_STATE(595)] = 43383, - [SMALL_STATE(596)] = 43481, - [SMALL_STATE(597)] = 43579, - [SMALL_STATE(598)] = 43677, - [SMALL_STATE(599)] = 43775, - [SMALL_STATE(600)] = 43873, - [SMALL_STATE(601)] = 43971, - [SMALL_STATE(602)] = 44069, - [SMALL_STATE(603)] = 44167, - [SMALL_STATE(604)] = 44239, - [SMALL_STATE(605)] = 44337, - [SMALL_STATE(606)] = 44435, - [SMALL_STATE(607)] = 44508, - [SMALL_STATE(608)] = 44570, - [SMALL_STATE(609)] = 44638, - [SMALL_STATE(610)] = 44706, - [SMALL_STATE(611)] = 44768, - [SMALL_STATE(612)] = 44836, - [SMALL_STATE(613)] = 44904, - [SMALL_STATE(614)] = 44972, - [SMALL_STATE(615)] = 45040, - [SMALL_STATE(616)] = 45108, - [SMALL_STATE(617)] = 45174, - [SMALL_STATE(618)] = 45240, - [SMALL_STATE(619)] = 45306, - [SMALL_STATE(620)] = 45374, - [SMALL_STATE(621)] = 45442, - [SMALL_STATE(622)] = 45510, - [SMALL_STATE(623)] = 45567, - [SMALL_STATE(624)] = 45624, - [SMALL_STATE(625)] = 45681, - [SMALL_STATE(626)] = 45738, - [SMALL_STATE(627)] = 45795, - [SMALL_STATE(628)] = 45860, - [SMALL_STATE(629)] = 45923, - [SMALL_STATE(630)] = 45986, - [SMALL_STATE(631)] = 46043, - [SMALL_STATE(632)] = 46106, - [SMALL_STATE(633)] = 46163, - [SMALL_STATE(634)] = 46220, - [SMALL_STATE(635)] = 46277, - [SMALL_STATE(636)] = 46334, - [SMALL_STATE(637)] = 46391, - [SMALL_STATE(638)] = 46454, - [SMALL_STATE(639)] = 46511, - [SMALL_STATE(640)] = 46568, - [SMALL_STATE(641)] = 46631, - [SMALL_STATE(642)] = 46694, - [SMALL_STATE(643)] = 46757, - [SMALL_STATE(644)] = 46818, - [SMALL_STATE(645)] = 46881, - [SMALL_STATE(646)] = 46944, - [SMALL_STATE(647)] = 47001, - [SMALL_STATE(648)] = 47062, - [SMALL_STATE(649)] = 47119, - [SMALL_STATE(650)] = 47176, - [SMALL_STATE(651)] = 47239, - [SMALL_STATE(652)] = 47296, - [SMALL_STATE(653)] = 47357, - [SMALL_STATE(654)] = 47413, - [SMALL_STATE(655)] = 47469, - [SMALL_STATE(656)] = 47525, - [SMALL_STATE(657)] = 47581, - [SMALL_STATE(658)] = 47637, - [SMALL_STATE(659)] = 47693, - [SMALL_STATE(660)] = 47749, - [SMALL_STATE(661)] = 47805, - [SMALL_STATE(662)] = 47861, - [SMALL_STATE(663)] = 47917, - [SMALL_STATE(664)] = 47973, - [SMALL_STATE(665)] = 48029, - [SMALL_STATE(666)] = 48085, - [SMALL_STATE(667)] = 48141, - [SMALL_STATE(668)] = 48197, - [SMALL_STATE(669)] = 48253, - [SMALL_STATE(670)] = 48309, - [SMALL_STATE(671)] = 48365, - [SMALL_STATE(672)] = 48421, - [SMALL_STATE(673)] = 48477, - [SMALL_STATE(674)] = 48533, - [SMALL_STATE(675)] = 48589, - [SMALL_STATE(676)] = 48645, - [SMALL_STATE(677)] = 48701, - [SMALL_STATE(678)] = 48757, - [SMALL_STATE(679)] = 48813, - [SMALL_STATE(680)] = 48869, - [SMALL_STATE(681)] = 48925, - [SMALL_STATE(682)] = 48981, - [SMALL_STATE(683)] = 49037, - [SMALL_STATE(684)] = 49129, - [SMALL_STATE(685)] = 49185, - [SMALL_STATE(686)] = 49277, - [SMALL_STATE(687)] = 49333, - [SMALL_STATE(688)] = 49389, - [SMALL_STATE(689)] = 49445, - [SMALL_STATE(690)] = 49501, - [SMALL_STATE(691)] = 49557, - [SMALL_STATE(692)] = 49612, - [SMALL_STATE(693)] = 49667, - [SMALL_STATE(694)] = 49726, - [SMALL_STATE(695)] = 49785, - [SMALL_STATE(696)] = 49840, - [SMALL_STATE(697)] = 49895, - [SMALL_STATE(698)] = 49954, - [SMALL_STATE(699)] = 50013, - [SMALL_STATE(700)] = 50072, - [SMALL_STATE(701)] = 50131, - [SMALL_STATE(702)] = 50190, - [SMALL_STATE(703)] = 50249, - [SMALL_STATE(704)] = 50308, - [SMALL_STATE(705)] = 50367, - [SMALL_STATE(706)] = 50426, - [SMALL_STATE(707)] = 50485, - [SMALL_STATE(708)] = 50544, - [SMALL_STATE(709)] = 50603, - [SMALL_STATE(710)] = 50658, - [SMALL_STATE(711)] = 50713, - [SMALL_STATE(712)] = 50772, - [SMALL_STATE(713)] = 50831, - [SMALL_STATE(714)] = 50890, - [SMALL_STATE(715)] = 50949, - [SMALL_STATE(716)] = 51008, - [SMALL_STATE(717)] = 51067, - [SMALL_STATE(718)] = 51159, - [SMALL_STATE(719)] = 51213, - [SMALL_STATE(720)] = 51267, - [SMALL_STATE(721)] = 51321, - [SMALL_STATE(722)] = 51375, - [SMALL_STATE(723)] = 51467, - [SMALL_STATE(724)] = 51520, - [SMALL_STATE(725)] = 51573, - [SMALL_STATE(726)] = 51626, - [SMALL_STATE(727)] = 51679, - [SMALL_STATE(728)] = 51732, - [SMALL_STATE(729)] = 51785, - [SMALL_STATE(730)] = 51874, - [SMALL_STATE(731)] = 51927, - [SMALL_STATE(732)] = 51980, - [SMALL_STATE(733)] = 52033, - [SMALL_STATE(734)] = 52086, - [SMALL_STATE(735)] = 52139, - [SMALL_STATE(736)] = 52192, - [SMALL_STATE(737)] = 52245, - [SMALL_STATE(738)] = 52298, - [SMALL_STATE(739)] = 52351, - [SMALL_STATE(740)] = 52404, - [SMALL_STATE(741)] = 52457, - [SMALL_STATE(742)] = 52510, - [SMALL_STATE(743)] = 52563, - [SMALL_STATE(744)] = 52616, - [SMALL_STATE(745)] = 52669, - [SMALL_STATE(746)] = 52722, - [SMALL_STATE(747)] = 52775, - [SMALL_STATE(748)] = 52828, - [SMALL_STATE(749)] = 52881, - [SMALL_STATE(750)] = 52934, - [SMALL_STATE(751)] = 52987, - [SMALL_STATE(752)] = 53040, - [SMALL_STATE(753)] = 53093, - [SMALL_STATE(754)] = 53146, - [SMALL_STATE(755)] = 53199, - [SMALL_STATE(756)] = 53252, - [SMALL_STATE(757)] = 53305, - [SMALL_STATE(758)] = 53358, - [SMALL_STATE(759)] = 53411, - [SMALL_STATE(760)] = 53464, - [SMALL_STATE(761)] = 53553, - [SMALL_STATE(762)] = 53606, - [SMALL_STATE(763)] = 53659, - [SMALL_STATE(764)] = 53712, - [SMALL_STATE(765)] = 53765, - [SMALL_STATE(766)] = 53818, - [SMALL_STATE(767)] = 53871, - [SMALL_STATE(768)] = 53924, - [SMALL_STATE(769)] = 53977, - [SMALL_STATE(770)] = 54030, - [SMALL_STATE(771)] = 54083, - [SMALL_STATE(772)] = 54136, - [SMALL_STATE(773)] = 54189, - [SMALL_STATE(774)] = 54278, - [SMALL_STATE(775)] = 54331, - [SMALL_STATE(776)] = 54384, - [SMALL_STATE(777)] = 54437, - [SMALL_STATE(778)] = 54490, - [SMALL_STATE(779)] = 54543, - [SMALL_STATE(780)] = 54596, - [SMALL_STATE(781)] = 54649, - [SMALL_STATE(782)] = 54738, - [SMALL_STATE(783)] = 54791, - [SMALL_STATE(784)] = 54844, - [SMALL_STATE(785)] = 54897, - [SMALL_STATE(786)] = 54950, - [SMALL_STATE(787)] = 55003, - [SMALL_STATE(788)] = 55056, - [SMALL_STATE(789)] = 55109, - [SMALL_STATE(790)] = 55162, - [SMALL_STATE(791)] = 55215, - [SMALL_STATE(792)] = 55268, - [SMALL_STATE(793)] = 55321, - [SMALL_STATE(794)] = 55374, - [SMALL_STATE(795)] = 55427, - [SMALL_STATE(796)] = 55516, - [SMALL_STATE(797)] = 55569, - [SMALL_STATE(798)] = 55622, - [SMALL_STATE(799)] = 55711, - [SMALL_STATE(800)] = 55764, - [SMALL_STATE(801)] = 55817, - [SMALL_STATE(802)] = 55870, - [SMALL_STATE(803)] = 55923, - [SMALL_STATE(804)] = 56012, - [SMALL_STATE(805)] = 56065, - [SMALL_STATE(806)] = 56118, - [SMALL_STATE(807)] = 56171, - [SMALL_STATE(808)] = 56224, - [SMALL_STATE(809)] = 56277, - [SMALL_STATE(810)] = 56330, - [SMALL_STATE(811)] = 56383, - [SMALL_STATE(812)] = 56472, - [SMALL_STATE(813)] = 56525, - [SMALL_STATE(814)] = 56578, - [SMALL_STATE(815)] = 56631, - [SMALL_STATE(816)] = 56684, - [SMALL_STATE(817)] = 56737, - [SMALL_STATE(818)] = 56790, - [SMALL_STATE(819)] = 56843, - [SMALL_STATE(820)] = 56896, - [SMALL_STATE(821)] = 56949, - [SMALL_STATE(822)] = 57002, - [SMALL_STATE(823)] = 57055, - [SMALL_STATE(824)] = 57108, - [SMALL_STATE(825)] = 57197, - [SMALL_STATE(826)] = 57250, - [SMALL_STATE(827)] = 57339, - [SMALL_STATE(828)] = 57392, - [SMALL_STATE(829)] = 57481, - [SMALL_STATE(830)] = 57534, - [SMALL_STATE(831)] = 57587, - [SMALL_STATE(832)] = 57640, - [SMALL_STATE(833)] = 57693, - [SMALL_STATE(834)] = 57746, - [SMALL_STATE(835)] = 57799, - [SMALL_STATE(836)] = 57852, - [SMALL_STATE(837)] = 57905, - [SMALL_STATE(838)] = 57994, - [SMALL_STATE(839)] = 58047, - [SMALL_STATE(840)] = 58136, - [SMALL_STATE(841)] = 58189, - [SMALL_STATE(842)] = 58242, - [SMALL_STATE(843)] = 58331, - [SMALL_STATE(844)] = 58420, - [SMALL_STATE(845)] = 58473, - [SMALL_STATE(846)] = 58562, - [SMALL_STATE(847)] = 58615, - [SMALL_STATE(848)] = 58701, - [SMALL_STATE(849)] = 58787, - [SMALL_STATE(850)] = 58873, - [SMALL_STATE(851)] = 58959, - [SMALL_STATE(852)] = 59045, - [SMALL_STATE(853)] = 59131, - [SMALL_STATE(854)] = 59214, - [SMALL_STATE(855)] = 59297, - [SMALL_STATE(856)] = 59375, - [SMALL_STATE(857)] = 59453, - [SMALL_STATE(858)] = 59531, - [SMALL_STATE(859)] = 59609, - [SMALL_STATE(860)] = 59695, - [SMALL_STATE(861)] = 59773, - [SMALL_STATE(862)] = 59851, - [SMALL_STATE(863)] = 59929, - [SMALL_STATE(864)] = 60007, - [SMALL_STATE(865)] = 60082, - [SMALL_STATE(866)] = 60157, - [SMALL_STATE(867)] = 60232, - [SMALL_STATE(868)] = 60307, - [SMALL_STATE(869)] = 60382, - [SMALL_STATE(870)] = 60467, - [SMALL_STATE(871)] = 60546, - [SMALL_STATE(872)] = 60621, - [SMALL_STATE(873)] = 60696, - [SMALL_STATE(874)] = 60771, - [SMALL_STATE(875)] = 60846, - [SMALL_STATE(876)] = 60921, - [SMALL_STATE(877)] = 61000, - [SMALL_STATE(878)] = 61075, - [SMALL_STATE(879)] = 61150, - [SMALL_STATE(880)] = 61225, - [SMALL_STATE(881)] = 61300, - [SMALL_STATE(882)] = 61375, - [SMALL_STATE(883)] = 61450, - [SMALL_STATE(884)] = 61525, - [SMALL_STATE(885)] = 61600, - [SMALL_STATE(886)] = 61675, - [SMALL_STATE(887)] = 61750, - [SMALL_STATE(888)] = 61825, - [SMALL_STATE(889)] = 61900, - [SMALL_STATE(890)] = 61975, - [SMALL_STATE(891)] = 62050, - [SMALL_STATE(892)] = 62125, - [SMALL_STATE(893)] = 62200, - [SMALL_STATE(894)] = 62275, - [SMALL_STATE(895)] = 62354, - [SMALL_STATE(896)] = 62429, - [SMALL_STATE(897)] = 62504, - [SMALL_STATE(898)] = 62579, - [SMALL_STATE(899)] = 62654, - [SMALL_STATE(900)] = 62733, - [SMALL_STATE(901)] = 62808, - [SMALL_STATE(902)] = 62883, - [SMALL_STATE(903)] = 62958, - [SMALL_STATE(904)] = 63033, - [SMALL_STATE(905)] = 63108, - [SMALL_STATE(906)] = 63183, - [SMALL_STATE(907)] = 63262, - [SMALL_STATE(908)] = 63337, - [SMALL_STATE(909)] = 63412, - [SMALL_STATE(910)] = 63491, - [SMALL_STATE(911)] = 63566, - [SMALL_STATE(912)] = 63641, - [SMALL_STATE(913)] = 63716, - [SMALL_STATE(914)] = 63795, - [SMALL_STATE(915)] = 63874, - [SMALL_STATE(916)] = 63953, - [SMALL_STATE(917)] = 64032, - [SMALL_STATE(918)] = 64111, - [SMALL_STATE(919)] = 64186, - [SMALL_STATE(920)] = 64261, - [SMALL_STATE(921)] = 64336, - [SMALL_STATE(922)] = 64411, - [SMALL_STATE(923)] = 64486, - [SMALL_STATE(924)] = 64561, - [SMALL_STATE(925)] = 64636, - [SMALL_STATE(926)] = 64715, - [SMALL_STATE(927)] = 64790, - [SMALL_STATE(928)] = 64869, - [SMALL_STATE(929)] = 64948, - [SMALL_STATE(930)] = 65023, - [SMALL_STATE(931)] = 65098, - [SMALL_STATE(932)] = 65177, - [SMALL_STATE(933)] = 65256, - [SMALL_STATE(934)] = 65331, - [SMALL_STATE(935)] = 65410, - [SMALL_STATE(936)] = 65495, - [SMALL_STATE(937)] = 65570, - [SMALL_STATE(938)] = 65645, - [SMALL_STATE(939)] = 65720, - [SMALL_STATE(940)] = 65795, - [SMALL_STATE(941)] = 65870, - [SMALL_STATE(942)] = 65945, - [SMALL_STATE(943)] = 66030, - [SMALL_STATE(944)] = 66105, - [SMALL_STATE(945)] = 66180, - [SMALL_STATE(946)] = 66255, - [SMALL_STATE(947)] = 66330, - [SMALL_STATE(948)] = 66405, - [SMALL_STATE(949)] = 66480, - [SMALL_STATE(950)] = 66555, - [SMALL_STATE(951)] = 66630, - [SMALL_STATE(952)] = 66709, - [SMALL_STATE(953)] = 66788, - [SMALL_STATE(954)] = 66867, - [SMALL_STATE(955)] = 66942, - [SMALL_STATE(956)] = 67017, - [SMALL_STATE(957)] = 67092, - [SMALL_STATE(958)] = 67167, - [SMALL_STATE(959)] = 67242, - [SMALL_STATE(960)] = 67326, - [SMALL_STATE(961)] = 67378, - [SMALL_STATE(962)] = 67430, - [SMALL_STATE(963)] = 67514, - [SMALL_STATE(964)] = 67596, - [SMALL_STATE(965)] = 67680, - [SMALL_STATE(966)] = 67732, - [SMALL_STATE(967)] = 67783, - [SMALL_STATE(968)] = 67840, - [SMALL_STATE(969)] = 67891, - [SMALL_STATE(970)] = 67942, - [SMALL_STATE(971)] = 68013, - [SMALL_STATE(972)] = 68064, - [SMALL_STATE(973)] = 68121, - [SMALL_STATE(974)] = 68172, - [SMALL_STATE(975)] = 68233, - [SMALL_STATE(976)] = 68302, - [SMALL_STATE(977)] = 68383, - [SMALL_STATE(978)] = 68440, - [SMALL_STATE(979)] = 68491, - [SMALL_STATE(980)] = 68558, - [SMALL_STATE(981)] = 68609, - [SMALL_STATE(982)] = 68660, - [SMALL_STATE(983)] = 68711, - [SMALL_STATE(984)] = 68776, - [SMALL_STATE(985)] = 68833, - [SMALL_STATE(986)] = 68896, - [SMALL_STATE(987)] = 68948, - [SMALL_STATE(988)] = 69004, - [SMALL_STATE(989)] = 69074, - [SMALL_STATE(990)] = 69134, - [SMALL_STATE(991)] = 69180, - [SMALL_STATE(992)] = 69260, - [SMALL_STATE(993)] = 69340, - [SMALL_STATE(994)] = 69390, - [SMALL_STATE(995)] = 69460, - [SMALL_STATE(996)] = 69526, - [SMALL_STATE(997)] = 69574, - [SMALL_STATE(998)] = 69624, - [SMALL_STATE(999)] = 69688, - [SMALL_STATE(1000)] = 69744, - [SMALL_STATE(1001)] = 69800, - [SMALL_STATE(1002)] = 69866, - [SMALL_STATE(1003)] = 69922, - [SMALL_STATE(1004)] = 69986, - [SMALL_STATE(1005)] = 70066, - [SMALL_STATE(1006)] = 70122, - [SMALL_STATE(1007)] = 70182, - [SMALL_STATE(1008)] = 70228, - [SMALL_STATE(1009)] = 70274, - [SMALL_STATE(1010)] = 70324, - [SMALL_STATE(1011)] = 70386, - [SMALL_STATE(1012)] = 70438, - [SMALL_STATE(1013)] = 70488, - [SMALL_STATE(1014)] = 70534, - [SMALL_STATE(1015)] = 70580, - [SMALL_STATE(1016)] = 70626, - [SMALL_STATE(1017)] = 70682, - [SMALL_STATE(1018)] = 70732, - [SMALL_STATE(1019)] = 70780, - [SMALL_STATE(1020)] = 70830, - [SMALL_STATE(1021)] = 70898, - [SMALL_STATE(1022)] = 70954, - [SMALL_STATE(1023)] = 71010, - [SMALL_STATE(1024)] = 71056, - [SMALL_STATE(1025)] = 71112, - [SMALL_STATE(1026)] = 71168, - [SMALL_STATE(1027)] = 71218, - [SMALL_STATE(1028)] = 71280, - [SMALL_STATE(1029)] = 71326, - [SMALL_STATE(1030)] = 71374, - [SMALL_STATE(1031)] = 71430, - [SMALL_STATE(1032)] = 71476, - [SMALL_STATE(1033)] = 71538, - [SMALL_STATE(1034)] = 71588, - [SMALL_STATE(1035)] = 71654, - [SMALL_STATE(1036)] = 71724, - [SMALL_STATE(1037)] = 71792, - [SMALL_STATE(1038)] = 71848, - [SMALL_STATE(1039)] = 71908, - [SMALL_STATE(1040)] = 71972, - [SMALL_STATE(1041)] = 72040, - [SMALL_STATE(1042)] = 72090, - [SMALL_STATE(1043)] = 72141, - [SMALL_STATE(1044)] = 72186, - [SMALL_STATE(1045)] = 72241, - [SMALL_STATE(1046)] = 72302, - [SMALL_STATE(1047)] = 72371, - [SMALL_STATE(1048)] = 72426, - [SMALL_STATE(1049)] = 72471, - [SMALL_STATE(1050)] = 72530, - [SMALL_STATE(1051)] = 72597, - [SMALL_STATE(1052)] = 72662, - [SMALL_STATE(1053)] = 72717, - [SMALL_STATE(1054)] = 72780, - [SMALL_STATE(1055)] = 72835, - [SMALL_STATE(1056)] = 72880, - [SMALL_STATE(1057)] = 72925, - [SMALL_STATE(1058)] = 72970, - [SMALL_STATE(1059)] = 73025, - [SMALL_STATE(1060)] = 73086, - [SMALL_STATE(1061)] = 73155, - [SMALL_STATE(1062)] = 73210, - [SMALL_STATE(1063)] = 73269, - [SMALL_STATE(1064)] = 73336, - [SMALL_STATE(1065)] = 73401, - [SMALL_STATE(1066)] = 73464, - [SMALL_STATE(1067)] = 73509, - [SMALL_STATE(1068)] = 73554, - [SMALL_STATE(1069)] = 73603, - [SMALL_STATE(1070)] = 73648, - [SMALL_STATE(1071)] = 73695, - [SMALL_STATE(1072)] = 73742, - [SMALL_STATE(1073)] = 73789, - [SMALL_STATE(1074)] = 73834, - [SMALL_STATE(1075)] = 73879, - [SMALL_STATE(1076)] = 73924, - [SMALL_STATE(1077)] = 73969, - [SMALL_STATE(1078)] = 74014, - [SMALL_STATE(1079)] = 74063, - [SMALL_STATE(1080)] = 74112, - [SMALL_STATE(1081)] = 74161, - [SMALL_STATE(1082)] = 74210, - [SMALL_STATE(1083)] = 74261, - [SMALL_STATE(1084)] = 74312, - [SMALL_STATE(1085)] = 74357, - [SMALL_STATE(1086)] = 74402, - [SMALL_STATE(1087)] = 74451, - [SMALL_STATE(1088)] = 74502, - [SMALL_STATE(1089)] = 74551, - [SMALL_STATE(1090)] = 74596, - [SMALL_STATE(1091)] = 74641, - [SMALL_STATE(1092)] = 74692, - [SMALL_STATE(1093)] = 74743, - [SMALL_STATE(1094)] = 74788, - [SMALL_STATE(1095)] = 74833, - [SMALL_STATE(1096)] = 74878, - [SMALL_STATE(1097)] = 74923, - [SMALL_STATE(1098)] = 74968, - [SMALL_STATE(1099)] = 75017, - [SMALL_STATE(1100)] = 75072, - [SMALL_STATE(1101)] = 75117, - [SMALL_STATE(1102)] = 75162, - [SMALL_STATE(1103)] = 75207, - [SMALL_STATE(1104)] = 75262, - [SMALL_STATE(1105)] = 75307, - [SMALL_STATE(1106)] = 75368, - [SMALL_STATE(1107)] = 75437, - [SMALL_STATE(1108)] = 75492, - [SMALL_STATE(1109)] = 75537, - [SMALL_STATE(1110)] = 75582, - [SMALL_STATE(1111)] = 75631, - [SMALL_STATE(1112)] = 75680, - [SMALL_STATE(1113)] = 75729, - [SMALL_STATE(1114)] = 75778, - [SMALL_STATE(1115)] = 75825, - [SMALL_STATE(1116)] = 75870, - [SMALL_STATE(1117)] = 75915, - [SMALL_STATE(1118)] = 75962, - [SMALL_STATE(1119)] = 76009, - [SMALL_STATE(1120)] = 76068, - [SMALL_STATE(1121)] = 76113, - [SMALL_STATE(1122)] = 76180, - [SMALL_STATE(1123)] = 76235, - [SMALL_STATE(1124)] = 76300, - [SMALL_STATE(1125)] = 76355, - [SMALL_STATE(1126)] = 76418, - [SMALL_STATE(1127)] = 76463, - [SMALL_STATE(1128)] = 76518, - [SMALL_STATE(1129)] = 76565, - [SMALL_STATE(1130)] = 76612, - [SMALL_STATE(1131)] = 76659, - [SMALL_STATE(1132)] = 76712, - [SMALL_STATE(1133)] = 76757, - [SMALL_STATE(1134)] = 76802, - [SMALL_STATE(1135)] = 76853, - [SMALL_STATE(1136)] = 76904, - [SMALL_STATE(1137)] = 76955, - [SMALL_STATE(1138)] = 77000, - [SMALL_STATE(1139)] = 77045, - [SMALL_STATE(1140)] = 77090, - [SMALL_STATE(1141)] = 77135, - [SMALL_STATE(1142)] = 77180, - [SMALL_STATE(1143)] = 77224, - [SMALL_STATE(1144)] = 77268, - [SMALL_STATE(1145)] = 77312, - [SMALL_STATE(1146)] = 77360, - [SMALL_STATE(1147)] = 77404, - [SMALL_STATE(1148)] = 77448, - [SMALL_STATE(1149)] = 77502, - [SMALL_STATE(1150)] = 77556, - [SMALL_STATE(1151)] = 77600, - [SMALL_STATE(1152)] = 77644, - [SMALL_STATE(1153)] = 77688, - [SMALL_STATE(1154)] = 77732, - [SMALL_STATE(1155)] = 77776, - [SMALL_STATE(1156)] = 77830, - [SMALL_STATE(1157)] = 77890, - [SMALL_STATE(1158)] = 77958, - [SMALL_STATE(1159)] = 78012, - [SMALL_STATE(1160)] = 78070, - [SMALL_STATE(1161)] = 78136, - [SMALL_STATE(1162)] = 78200, - [SMALL_STATE(1163)] = 78262, - [SMALL_STATE(1164)] = 78310, - [SMALL_STATE(1165)] = 78358, - [SMALL_STATE(1166)] = 78406, - [SMALL_STATE(1167)] = 78454, - [SMALL_STATE(1168)] = 78502, - [SMALL_STATE(1169)] = 78550, - [SMALL_STATE(1170)] = 78596, - [SMALL_STATE(1171)] = 78642, - [SMALL_STATE(1172)] = 78688, - [SMALL_STATE(1173)] = 78734, - [SMALL_STATE(1174)] = 78778, - [SMALL_STATE(1175)] = 78822, - [SMALL_STATE(1176)] = 78866, - [SMALL_STATE(1177)] = 78910, - [SMALL_STATE(1178)] = 78954, - [SMALL_STATE(1179)] = 78998, - [SMALL_STATE(1180)] = 79044, - [SMALL_STATE(1181)] = 79088, - [SMALL_STATE(1182)] = 79134, - [SMALL_STATE(1183)] = 79178, - [SMALL_STATE(1184)] = 79226, - [SMALL_STATE(1185)] = 79274, - [SMALL_STATE(1186)] = 79318, - [SMALL_STATE(1187)] = 79362, - [SMALL_STATE(1188)] = 79406, - [SMALL_STATE(1189)] = 79450, - [SMALL_STATE(1190)] = 79494, - [SMALL_STATE(1191)] = 79538, - [SMALL_STATE(1192)] = 79582, - [SMALL_STATE(1193)] = 79626, - [SMALL_STATE(1194)] = 79670, - [SMALL_STATE(1195)] = 79714, - [SMALL_STATE(1196)] = 79758, - [SMALL_STATE(1197)] = 79802, - [SMALL_STATE(1198)] = 79846, - [SMALL_STATE(1199)] = 79890, - [SMALL_STATE(1200)] = 79934, - [SMALL_STATE(1201)] = 79978, - [SMALL_STATE(1202)] = 80022, - [SMALL_STATE(1203)] = 80066, - [SMALL_STATE(1204)] = 80110, - [SMALL_STATE(1205)] = 80154, - [SMALL_STATE(1206)] = 80198, - [SMALL_STATE(1207)] = 80242, - [SMALL_STATE(1208)] = 80286, - [SMALL_STATE(1209)] = 80332, - [SMALL_STATE(1210)] = 80376, - [SMALL_STATE(1211)] = 80422, - [SMALL_STATE(1212)] = 80468, - [SMALL_STATE(1213)] = 80516, - [SMALL_STATE(1214)] = 80564, - [SMALL_STATE(1215)] = 80610, - [SMALL_STATE(1216)] = 80658, - [SMALL_STATE(1217)] = 80704, - [SMALL_STATE(1218)] = 80750, - [SMALL_STATE(1219)] = 80796, - [SMALL_STATE(1220)] = 80840, - [SMALL_STATE(1221)] = 80886, - [SMALL_STATE(1222)] = 80930, - [SMALL_STATE(1223)] = 80974, - [SMALL_STATE(1224)] = 81018, - [SMALL_STATE(1225)] = 81066, - [SMALL_STATE(1226)] = 81114, - [SMALL_STATE(1227)] = 81158, - [SMALL_STATE(1228)] = 81202, - [SMALL_STATE(1229)] = 81250, - [SMALL_STATE(1230)] = 81300, - [SMALL_STATE(1231)] = 81348, - [SMALL_STATE(1232)] = 81392, - [SMALL_STATE(1233)] = 81436, - [SMALL_STATE(1234)] = 81480, - [SMALL_STATE(1235)] = 81524, - [SMALL_STATE(1236)] = 81568, - [SMALL_STATE(1237)] = 81612, - [SMALL_STATE(1238)] = 81656, - [SMALL_STATE(1239)] = 81700, - [SMALL_STATE(1240)] = 81744, - [SMALL_STATE(1241)] = 81788, - [SMALL_STATE(1242)] = 81832, - [SMALL_STATE(1243)] = 81876, - [SMALL_STATE(1244)] = 81926, - [SMALL_STATE(1245)] = 81976, - [SMALL_STATE(1246)] = 82026, - [SMALL_STATE(1247)] = 82070, - [SMALL_STATE(1248)] = 82114, - [SMALL_STATE(1249)] = 82158, - [SMALL_STATE(1250)] = 82202, - [SMALL_STATE(1251)] = 82246, - [SMALL_STATE(1252)] = 82290, - [SMALL_STATE(1253)] = 82334, - [SMALL_STATE(1254)] = 82378, - [SMALL_STATE(1255)] = 82422, - [SMALL_STATE(1256)] = 82466, - [SMALL_STATE(1257)] = 82510, - [SMALL_STATE(1258)] = 82554, - [SMALL_STATE(1259)] = 82598, - [SMALL_STATE(1260)] = 82642, - [SMALL_STATE(1261)] = 82686, - [SMALL_STATE(1262)] = 82730, - [SMALL_STATE(1263)] = 82774, - [SMALL_STATE(1264)] = 82818, - [SMALL_STATE(1265)] = 82866, - [SMALL_STATE(1266)] = 82910, - [SMALL_STATE(1267)] = 82958, - [SMALL_STATE(1268)] = 83004, - [SMALL_STATE(1269)] = 83048, - [SMALL_STATE(1270)] = 83092, - [SMALL_STATE(1271)] = 83136, - [SMALL_STATE(1272)] = 83180, - [SMALL_STATE(1273)] = 83224, - [SMALL_STATE(1274)] = 83268, - [SMALL_STATE(1275)] = 83312, - [SMALL_STATE(1276)] = 83356, - [SMALL_STATE(1277)] = 83400, - [SMALL_STATE(1278)] = 83444, - [SMALL_STATE(1279)] = 83488, - [SMALL_STATE(1280)] = 83532, - [SMALL_STATE(1281)] = 83576, - [SMALL_STATE(1282)] = 83620, - [SMALL_STATE(1283)] = 83664, - [SMALL_STATE(1284)] = 83708, - [SMALL_STATE(1285)] = 83752, - [SMALL_STATE(1286)] = 83796, - [SMALL_STATE(1287)] = 83840, - [SMALL_STATE(1288)] = 83884, - [SMALL_STATE(1289)] = 83928, - [SMALL_STATE(1290)] = 83972, - [SMALL_STATE(1291)] = 84016, - [SMALL_STATE(1292)] = 84060, - [SMALL_STATE(1293)] = 84108, - [SMALL_STATE(1294)] = 84152, - [SMALL_STATE(1295)] = 84196, - [SMALL_STATE(1296)] = 84239, - [SMALL_STATE(1297)] = 84284, - [SMALL_STATE(1298)] = 84331, - [SMALL_STATE(1299)] = 84374, - [SMALL_STATE(1300)] = 84417, - [SMALL_STATE(1301)] = 84460, - [SMALL_STATE(1302)] = 84503, - [SMALL_STATE(1303)] = 84554, - [SMALL_STATE(1304)] = 84599, - [SMALL_STATE(1305)] = 84650, - [SMALL_STATE(1306)] = 84693, - [SMALL_STATE(1307)] = 84736, - [SMALL_STATE(1308)] = 84779, - [SMALL_STATE(1309)] = 84822, - [SMALL_STATE(1310)] = 84869, - [SMALL_STATE(1311)] = 84912, - [SMALL_STATE(1312)] = 84955, - [SMALL_STATE(1313)] = 84998, - [SMALL_STATE(1314)] = 85041, - [SMALL_STATE(1315)] = 85084, - [SMALL_STATE(1316)] = 85127, - [SMALL_STATE(1317)] = 85170, - [SMALL_STATE(1318)] = 85213, - [SMALL_STATE(1319)] = 85256, - [SMALL_STATE(1320)] = 85299, - [SMALL_STATE(1321)] = 85342, - [SMALL_STATE(1322)] = 85385, - [SMALL_STATE(1323)] = 85428, - [SMALL_STATE(1324)] = 85471, - [SMALL_STATE(1325)] = 85514, - [SMALL_STATE(1326)] = 85557, - [SMALL_STATE(1327)] = 85600, - [SMALL_STATE(1328)] = 85643, - [SMALL_STATE(1329)] = 85686, - [SMALL_STATE(1330)] = 85729, - [SMALL_STATE(1331)] = 85772, - [SMALL_STATE(1332)] = 85815, - [SMALL_STATE(1333)] = 85858, - [SMALL_STATE(1334)] = 85901, - [SMALL_STATE(1335)] = 85944, - [SMALL_STATE(1336)] = 85987, - [SMALL_STATE(1337)] = 86030, - [SMALL_STATE(1338)] = 86073, - [SMALL_STATE(1339)] = 86116, - [SMALL_STATE(1340)] = 86159, - [SMALL_STATE(1341)] = 86202, - [SMALL_STATE(1342)] = 86245, - [SMALL_STATE(1343)] = 86292, - [SMALL_STATE(1344)] = 86335, - [SMALL_STATE(1345)] = 86382, - [SMALL_STATE(1346)] = 86429, - [SMALL_STATE(1347)] = 86474, - [SMALL_STATE(1348)] = 86517, - [SMALL_STATE(1349)] = 86560, - [SMALL_STATE(1350)] = 86607, - [SMALL_STATE(1351)] = 86650, - [SMALL_STATE(1352)] = 86693, - [SMALL_STATE(1353)] = 86736, - [SMALL_STATE(1354)] = 86779, - [SMALL_STATE(1355)] = 86822, - [SMALL_STATE(1356)] = 86865, - [SMALL_STATE(1357)] = 86908, - [SMALL_STATE(1358)] = 86955, - [SMALL_STATE(1359)] = 86998, - [SMALL_STATE(1360)] = 87043, - [SMALL_STATE(1361)] = 87086, - [SMALL_STATE(1362)] = 87129, - [SMALL_STATE(1363)] = 87174, - [SMALL_STATE(1364)] = 87217, - [SMALL_STATE(1365)] = 87262, - [SMALL_STATE(1366)] = 87309, - [SMALL_STATE(1367)] = 87354, - [SMALL_STATE(1368)] = 87397, - [SMALL_STATE(1369)] = 87440, - [SMALL_STATE(1370)] = 87483, - [SMALL_STATE(1371)] = 87526, - [SMALL_STATE(1372)] = 87569, - [SMALL_STATE(1373)] = 87612, - [SMALL_STATE(1374)] = 87655, - [SMALL_STATE(1375)] = 87700, - [SMALL_STATE(1376)] = 87743, - [SMALL_STATE(1377)] = 87786, - [SMALL_STATE(1378)] = 87831, - [SMALL_STATE(1379)] = 87874, - [SMALL_STATE(1380)] = 87919, - [SMALL_STATE(1381)] = 87964, - [SMALL_STATE(1382)] = 88009, - [SMALL_STATE(1383)] = 88052, - [SMALL_STATE(1384)] = 88095, - [SMALL_STATE(1385)] = 88138, - [SMALL_STATE(1386)] = 88181, - [SMALL_STATE(1387)] = 88224, - [SMALL_STATE(1388)] = 88271, - [SMALL_STATE(1389)] = 88318, - [SMALL_STATE(1390)] = 88361, - [SMALL_STATE(1391)] = 88404, - [SMALL_STATE(1392)] = 88447, - [SMALL_STATE(1393)] = 88492, - [SMALL_STATE(1394)] = 88537, - [SMALL_STATE(1395)] = 88580, - [SMALL_STATE(1396)] = 88623, - [SMALL_STATE(1397)] = 88666, - [SMALL_STATE(1398)] = 88709, - [SMALL_STATE(1399)] = 88754, - [SMALL_STATE(1400)] = 88797, - [SMALL_STATE(1401)] = 88842, - [SMALL_STATE(1402)] = 88887, - [SMALL_STATE(1403)] = 88930, - [SMALL_STATE(1404)] = 88973, - [SMALL_STATE(1405)] = 89016, - [SMALL_STATE(1406)] = 89059, - [SMALL_STATE(1407)] = 89102, - [SMALL_STATE(1408)] = 89145, - [SMALL_STATE(1409)] = 89188, - [SMALL_STATE(1410)] = 89231, - [SMALL_STATE(1411)] = 89274, - [SMALL_STATE(1412)] = 89321, - [SMALL_STATE(1413)] = 89368, - [SMALL_STATE(1414)] = 89411, - [SMALL_STATE(1415)] = 89454, - [SMALL_STATE(1416)] = 89497, - [SMALL_STATE(1417)] = 89540, - [SMALL_STATE(1418)] = 89585, - [SMALL_STATE(1419)] = 89628, - [SMALL_STATE(1420)] = 89671, - [SMALL_STATE(1421)] = 89714, - [SMALL_STATE(1422)] = 89756, - [SMALL_STATE(1423)] = 89798, - [SMALL_STATE(1424)] = 89842, - [SMALL_STATE(1425)] = 89886, - [SMALL_STATE(1426)] = 89932, - [SMALL_STATE(1427)] = 89976, - [SMALL_STATE(1428)] = 90026, - [SMALL_STATE(1429)] = 90068, - [SMALL_STATE(1430)] = 90110, - [SMALL_STATE(1431)] = 90156, - [SMALL_STATE(1432)] = 90198, - [SMALL_STATE(1433)] = 90242, - [SMALL_STATE(1434)] = 90284, - [SMALL_STATE(1435)] = 90326, - [SMALL_STATE(1436)] = 90370, - [SMALL_STATE(1437)] = 90412, - [SMALL_STATE(1438)] = 90456, - [SMALL_STATE(1439)] = 90498, - [SMALL_STATE(1440)] = 90540, - [SMALL_STATE(1441)] = 90582, - [SMALL_STATE(1442)] = 90624, - [SMALL_STATE(1443)] = 90666, - [SMALL_STATE(1444)] = 90708, - [SMALL_STATE(1445)] = 90750, - [SMALL_STATE(1446)] = 90792, - [SMALL_STATE(1447)] = 90834, - [SMALL_STATE(1448)] = 90876, - [SMALL_STATE(1449)] = 90918, - [SMALL_STATE(1450)] = 90960, - [SMALL_STATE(1451)] = 91002, - [SMALL_STATE(1452)] = 91046, - [SMALL_STATE(1453)] = 91090, - [SMALL_STATE(1454)] = 91134, - [SMALL_STATE(1455)] = 91176, - [SMALL_STATE(1456)] = 91218, - [SMALL_STATE(1457)] = 91264, - [SMALL_STATE(1458)] = 91306, - [SMALL_STATE(1459)] = 91348, - [SMALL_STATE(1460)] = 91390, - [SMALL_STATE(1461)] = 91432, - [SMALL_STATE(1462)] = 91474, - [SMALL_STATE(1463)] = 91516, - [SMALL_STATE(1464)] = 91558, - [SMALL_STATE(1465)] = 91600, - [SMALL_STATE(1466)] = 91648, - [SMALL_STATE(1467)] = 91690, - [SMALL_STATE(1468)] = 91732, - [SMALL_STATE(1469)] = 91775, - [SMALL_STATE(1470)] = 91818, - [SMALL_STATE(1471)] = 91859, - [SMALL_STATE(1472)] = 91902, - [SMALL_STATE(1473)] = 91943, - [SMALL_STATE(1474)] = 91984, - [SMALL_STATE(1475)] = 92025, - [SMALL_STATE(1476)] = 92068, - [SMALL_STATE(1477)] = 92109, - [SMALL_STATE(1478)] = 92150, - [SMALL_STATE(1479)] = 92191, - [SMALL_STATE(1480)] = 92234, - [SMALL_STATE(1481)] = 92277, - [SMALL_STATE(1482)] = 92320, - [SMALL_STATE(1483)] = 92363, - [SMALL_STATE(1484)] = 92406, - [SMALL_STATE(1485)] = 92447, - [SMALL_STATE(1486)] = 92488, - [SMALL_STATE(1487)] = 92529, - [SMALL_STATE(1488)] = 92603, - [SMALL_STATE(1489)] = 92677, - [SMALL_STATE(1490)] = 92745, - [SMALL_STATE(1491)] = 92813, - [SMALL_STATE(1492)] = 92881, - [SMALL_STATE(1493)] = 92949, - [SMALL_STATE(1494)] = 93017, - [SMALL_STATE(1495)] = 93085, - [SMALL_STATE(1496)] = 93153, - [SMALL_STATE(1497)] = 93221, - [SMALL_STATE(1498)] = 93289, - [SMALL_STATE(1499)] = 93357, - [SMALL_STATE(1500)] = 93425, - [SMALL_STATE(1501)] = 93493, - [SMALL_STATE(1502)] = 93561, - [SMALL_STATE(1503)] = 93629, - [SMALL_STATE(1504)] = 93697, - [SMALL_STATE(1505)] = 93765, - [SMALL_STATE(1506)] = 93833, - [SMALL_STATE(1507)] = 93901, - [SMALL_STATE(1508)] = 93969, - [SMALL_STATE(1509)] = 94037, - [SMALL_STATE(1510)] = 94105, - [SMALL_STATE(1511)] = 94173, - [SMALL_STATE(1512)] = 94241, - [SMALL_STATE(1513)] = 94309, - [SMALL_STATE(1514)] = 94377, - [SMALL_STATE(1515)] = 94445, - [SMALL_STATE(1516)] = 94513, - [SMALL_STATE(1517)] = 94581, - [SMALL_STATE(1518)] = 94649, - [SMALL_STATE(1519)] = 94717, - [SMALL_STATE(1520)] = 94785, - [SMALL_STATE(1521)] = 94853, - [SMALL_STATE(1522)] = 94921, - [SMALL_STATE(1523)] = 94989, - [SMALL_STATE(1524)] = 95057, - [SMALL_STATE(1525)] = 95125, - [SMALL_STATE(1526)] = 95190, - [SMALL_STATE(1527)] = 95255, - [SMALL_STATE(1528)] = 95320, - [SMALL_STATE(1529)] = 95385, - [SMALL_STATE(1530)] = 95450, - [SMALL_STATE(1531)] = 95516, - [SMALL_STATE(1532)] = 95582, - [SMALL_STATE(1533)] = 95648, - [SMALL_STATE(1534)] = 95714, - [SMALL_STATE(1535)] = 95780, - [SMALL_STATE(1536)] = 95846, - [SMALL_STATE(1537)] = 95912, - [SMALL_STATE(1538)] = 95978, - [SMALL_STATE(1539)] = 96044, - [SMALL_STATE(1540)] = 96110, - [SMALL_STATE(1541)] = 96176, - [SMALL_STATE(1542)] = 96242, - [SMALL_STATE(1543)] = 96308, - [SMALL_STATE(1544)] = 96374, - [SMALL_STATE(1545)] = 96440, - [SMALL_STATE(1546)] = 96506, - [SMALL_STATE(1547)] = 96572, - [SMALL_STATE(1548)] = 96638, - [SMALL_STATE(1549)] = 96704, - [SMALL_STATE(1550)] = 96770, - [SMALL_STATE(1551)] = 96833, - [SMALL_STATE(1552)] = 96891, - [SMALL_STATE(1553)] = 96949, - [SMALL_STATE(1554)] = 96995, - [SMALL_STATE(1555)] = 97053, - [SMALL_STATE(1556)] = 97111, - [SMALL_STATE(1557)] = 97169, - [SMALL_STATE(1558)] = 97227, - [SMALL_STATE(1559)] = 97285, - [SMALL_STATE(1560)] = 97331, - [SMALL_STATE(1561)] = 97389, - [SMALL_STATE(1562)] = 97434, - [SMALL_STATE(1563)] = 97479, - [SMALL_STATE(1564)] = 97523, - [SMALL_STATE(1565)] = 97567, - [SMALL_STATE(1566)] = 97611, - [SMALL_STATE(1567)] = 97655, - [SMALL_STATE(1568)] = 97698, - [SMALL_STATE(1569)] = 97741, - [SMALL_STATE(1570)] = 97782, - [SMALL_STATE(1571)] = 97825, - [SMALL_STATE(1572)] = 97868, - [SMALL_STATE(1573)] = 97909, - [SMALL_STATE(1574)] = 97951, - [SMALL_STATE(1575)] = 97983, - [SMALL_STATE(1576)] = 98015, - [SMALL_STATE(1577)] = 98047, - [SMALL_STATE(1578)] = 98077, - [SMALL_STATE(1579)] = 98109, - [SMALL_STATE(1580)] = 98151, - [SMALL_STATE(1581)] = 98183, - [SMALL_STATE(1582)] = 98215, - [SMALL_STATE(1583)] = 98245, - [SMALL_STATE(1584)] = 98275, - [SMALL_STATE(1585)] = 98305, - [SMALL_STATE(1586)] = 98335, - [SMALL_STATE(1587)] = 98365, - [SMALL_STATE(1588)] = 98395, - [SMALL_STATE(1589)] = 98425, - [SMALL_STATE(1590)] = 98455, - [SMALL_STATE(1591)] = 98485, - [SMALL_STATE(1592)] = 98514, - [SMALL_STATE(1593)] = 98539, - [SMALL_STATE(1594)] = 98568, - [SMALL_STATE(1595)] = 98593, - [SMALL_STATE(1596)] = 98622, - [SMALL_STATE(1597)] = 98651, - [SMALL_STATE(1598)] = 98680, - [SMALL_STATE(1599)] = 98709, - [SMALL_STATE(1600)] = 98738, - [SMALL_STATE(1601)] = 98767, - [SMALL_STATE(1602)] = 98796, - [SMALL_STATE(1603)] = 98825, - [SMALL_STATE(1604)] = 98854, - [SMALL_STATE(1605)] = 98883, - [SMALL_STATE(1606)] = 98912, - [SMALL_STATE(1607)] = 98941, - [SMALL_STATE(1608)] = 98970, - [SMALL_STATE(1609)] = 98999, - [SMALL_STATE(1610)] = 99028, - [SMALL_STATE(1611)] = 99057, - [SMALL_STATE(1612)] = 99082, - [SMALL_STATE(1613)] = 99111, - [SMALL_STATE(1614)] = 99140, - [SMALL_STATE(1615)] = 99165, - [SMALL_STATE(1616)] = 99212, - [SMALL_STATE(1617)] = 99241, - [SMALL_STATE(1618)] = 99270, - [SMALL_STATE(1619)] = 99299, - [SMALL_STATE(1620)] = 99328, - [SMALL_STATE(1621)] = 99375, - [SMALL_STATE(1622)] = 99422, - [SMALL_STATE(1623)] = 99469, - [SMALL_STATE(1624)] = 99516, - [SMALL_STATE(1625)] = 99563, - [SMALL_STATE(1626)] = 99610, - [SMALL_STATE(1627)] = 99657, - [SMALL_STATE(1628)] = 99704, - [SMALL_STATE(1629)] = 99751, - [SMALL_STATE(1630)] = 99775, - [SMALL_STATE(1631)] = 99821, - [SMALL_STATE(1632)] = 99849, - [SMALL_STATE(1633)] = 99895, - [SMALL_STATE(1634)] = 99927, - [SMALL_STATE(1635)] = 99951, - [SMALL_STATE(1636)] = 99997, - [SMALL_STATE(1637)] = 100043, - [SMALL_STATE(1638)] = 100089, - [SMALL_STATE(1639)] = 100113, - [SMALL_STATE(1640)] = 100143, - [SMALL_STATE(1641)] = 100171, - [SMALL_STATE(1642)] = 100217, - [SMALL_STATE(1643)] = 100263, - [SMALL_STATE(1644)] = 100287, - [SMALL_STATE(1645)] = 100333, - [SMALL_STATE(1646)] = 100379, - [SMALL_STATE(1647)] = 100425, - [SMALL_STATE(1648)] = 100471, - [SMALL_STATE(1649)] = 100503, - [SMALL_STATE(1650)] = 100546, - [SMALL_STATE(1651)] = 100572, - [SMALL_STATE(1652)] = 100612, - [SMALL_STATE(1653)] = 100652, - [SMALL_STATE(1654)] = 100692, - [SMALL_STATE(1655)] = 100732, - [SMALL_STATE(1656)] = 100769, - [SMALL_STATE(1657)] = 100808, - [SMALL_STATE(1658)] = 100845, - [SMALL_STATE(1659)] = 100886, - [SMALL_STATE(1660)] = 100913, - [SMALL_STATE(1661)] = 100932, - [SMALL_STATE(1662)] = 100955, - [SMALL_STATE(1663)] = 100974, - [SMALL_STATE(1664)] = 100995, - [SMALL_STATE(1665)] = 101022, - [SMALL_STATE(1666)] = 101041, - [SMALL_STATE(1667)] = 101068, - [SMALL_STATE(1668)] = 101109, - [SMALL_STATE(1669)] = 101150, - [SMALL_STATE(1670)] = 101191, - [SMALL_STATE(1671)] = 101232, - [SMALL_STATE(1672)] = 101273, - [SMALL_STATE(1673)] = 101314, - [SMALL_STATE(1674)] = 101355, - [SMALL_STATE(1675)] = 101380, - [SMALL_STATE(1676)] = 101410, - [SMALL_STATE(1677)] = 101448, - [SMALL_STATE(1678)] = 101478, - [SMALL_STATE(1679)] = 101508, - [SMALL_STATE(1680)] = 101546, - [SMALL_STATE(1681)] = 101584, - [SMALL_STATE(1682)] = 101622, - [SMALL_STATE(1683)] = 101652, - [SMALL_STATE(1684)] = 101690, - [SMALL_STATE(1685)] = 101720, - [SMALL_STATE(1686)] = 101758, - [SMALL_STATE(1687)] = 101796, - [SMALL_STATE(1688)] = 101826, - [SMALL_STATE(1689)] = 101856, - [SMALL_STATE(1690)] = 101894, - [SMALL_STATE(1691)] = 101932, - [SMALL_STATE(1692)] = 101962, - [SMALL_STATE(1693)] = 101992, - [SMALL_STATE(1694)] = 102030, - [SMALL_STATE(1695)] = 102068, - [SMALL_STATE(1696)] = 102094, - [SMALL_STATE(1697)] = 102124, - [SMALL_STATE(1698)] = 102144, - [SMALL_STATE(1699)] = 102174, - [SMALL_STATE(1700)] = 102212, - [SMALL_STATE(1701)] = 102250, - [SMALL_STATE(1702)] = 102280, - [SMALL_STATE(1703)] = 102310, - [SMALL_STATE(1704)] = 102348, - [SMALL_STATE(1705)] = 102386, - [SMALL_STATE(1706)] = 102406, - [SMALL_STATE(1707)] = 102436, - [SMALL_STATE(1708)] = 102466, - [SMALL_STATE(1709)] = 102504, - [SMALL_STATE(1710)] = 102542, - [SMALL_STATE(1711)] = 102572, - [SMALL_STATE(1712)] = 102602, - [SMALL_STATE(1713)] = 102640, - [SMALL_STATE(1714)] = 102670, - [SMALL_STATE(1715)] = 102708, - [SMALL_STATE(1716)] = 102734, - [SMALL_STATE(1717)] = 102772, - [SMALL_STATE(1718)] = 102796, - [SMALL_STATE(1719)] = 102834, - [SMALL_STATE(1720)] = 102872, - [SMALL_STATE(1721)] = 102896, - [SMALL_STATE(1722)] = 102916, - [SMALL_STATE(1723)] = 102954, - [SMALL_STATE(1724)] = 102976, - [SMALL_STATE(1725)] = 103014, - [SMALL_STATE(1726)] = 103052, - [SMALL_STATE(1727)] = 103082, - [SMALL_STATE(1728)] = 103108, - [SMALL_STATE(1729)] = 103129, - [SMALL_STATE(1730)] = 103154, - [SMALL_STATE(1731)] = 103171, - [SMALL_STATE(1732)] = 103196, - [SMALL_STATE(1733)] = 103219, - [SMALL_STATE(1734)] = 103244, - [SMALL_STATE(1735)] = 103269, - [SMALL_STATE(1736)] = 103286, - [SMALL_STATE(1737)] = 103305, - [SMALL_STATE(1738)] = 103326, - [SMALL_STATE(1739)] = 103355, - [SMALL_STATE(1740)] = 103372, - [SMALL_STATE(1741)] = 103401, - [SMALL_STATE(1742)] = 103420, - [SMALL_STATE(1743)] = 103445, - [SMALL_STATE(1744)] = 103462, - [SMALL_STATE(1745)] = 103479, - [SMALL_STATE(1746)] = 103504, - [SMALL_STATE(1747)] = 103529, - [SMALL_STATE(1748)] = 103554, - [SMALL_STATE(1749)] = 103577, - [SMALL_STATE(1750)] = 103606, - [SMALL_STATE(1751)] = 103623, - [SMALL_STATE(1752)] = 103643, - [SMALL_STATE(1753)] = 103667, - [SMALL_STATE(1754)] = 103683, - [SMALL_STATE(1755)] = 103701, - [SMALL_STATE(1756)] = 103723, - [SMALL_STATE(1757)] = 103745, - [SMALL_STATE(1758)] = 103769, - [SMALL_STATE(1759)] = 103793, - [SMALL_STATE(1760)] = 103815, - [SMALL_STATE(1761)] = 103835, - [SMALL_STATE(1762)] = 103865, - [SMALL_STATE(1763)] = 103881, - [SMALL_STATE(1764)] = 103905, - [SMALL_STATE(1765)] = 103925, - [SMALL_STATE(1766)] = 103943, - [SMALL_STATE(1767)] = 103967, - [SMALL_STATE(1768)] = 103991, - [SMALL_STATE(1769)] = 104007, - [SMALL_STATE(1770)] = 104027, - [SMALL_STATE(1771)] = 104049, - [SMALL_STATE(1772)] = 104073, - [SMALL_STATE(1773)] = 104091, - [SMALL_STATE(1774)] = 104107, - [SMALL_STATE(1775)] = 104131, - [SMALL_STATE(1776)] = 104155, - [SMALL_STATE(1777)] = 104179, - [SMALL_STATE(1778)] = 104195, - [SMALL_STATE(1779)] = 104215, - [SMALL_STATE(1780)] = 104239, - [SMALL_STATE(1781)] = 104263, - [SMALL_STATE(1782)] = 104279, - [SMALL_STATE(1783)] = 104297, - [SMALL_STATE(1784)] = 104317, - [SMALL_STATE(1785)] = 104339, - [SMALL_STATE(1786)] = 104363, - [SMALL_STATE(1787)] = 104381, - [SMALL_STATE(1788)] = 104410, - [SMALL_STATE(1789)] = 104435, - [SMALL_STATE(1790)] = 104454, - [SMALL_STATE(1791)] = 104475, - [SMALL_STATE(1792)] = 104502, - [SMALL_STATE(1793)] = 104529, - [SMALL_STATE(1794)] = 104550, - [SMALL_STATE(1795)] = 104571, - [SMALL_STATE(1796)] = 104600, - [SMALL_STATE(1797)] = 104627, - [SMALL_STATE(1798)] = 104650, - [SMALL_STATE(1799)] = 104675, - [SMALL_STATE(1800)] = 104704, - [SMALL_STATE(1801)] = 104725, - [SMALL_STATE(1802)] = 104746, - [SMALL_STATE(1803)] = 104767, - [SMALL_STATE(1804)] = 104784, - [SMALL_STATE(1805)] = 104803, - [SMALL_STATE(1806)] = 104826, - [SMALL_STATE(1807)] = 104855, - [SMALL_STATE(1808)] = 104878, - [SMALL_STATE(1809)] = 104899, - [SMALL_STATE(1810)] = 104920, - [SMALL_STATE(1811)] = 104935, - [SMALL_STATE(1812)] = 104956, - [SMALL_STATE(1813)] = 104985, - [SMALL_STATE(1814)] = 105006, - [SMALL_STATE(1815)] = 105027, - [SMALL_STATE(1816)] = 105056, - [SMALL_STATE(1817)] = 105085, - [SMALL_STATE(1818)] = 105112, - [SMALL_STATE(1819)] = 105139, - [SMALL_STATE(1820)] = 105166, - [SMALL_STATE(1821)] = 105193, - [SMALL_STATE(1822)] = 105222, - [SMALL_STATE(1823)] = 105245, - [SMALL_STATE(1824)] = 105274, - [SMALL_STATE(1825)] = 105301, - [SMALL_STATE(1826)] = 105330, - [SMALL_STATE(1827)] = 105353, - [SMALL_STATE(1828)] = 105374, - [SMALL_STATE(1829)] = 105391, - [SMALL_STATE(1830)] = 105412, - [SMALL_STATE(1831)] = 105435, - [SMALL_STATE(1832)] = 105458, - [SMALL_STATE(1833)] = 105479, - [SMALL_STATE(1834)] = 105496, - [SMALL_STATE(1835)] = 105512, - [SMALL_STATE(1836)] = 105536, - [SMALL_STATE(1837)] = 105560, - [SMALL_STATE(1838)] = 105580, - [SMALL_STATE(1839)] = 105602, - [SMALL_STATE(1840)] = 105622, - [SMALL_STATE(1841)] = 105648, - [SMALL_STATE(1842)] = 105670, - [SMALL_STATE(1843)] = 105696, - [SMALL_STATE(1844)] = 105714, - [SMALL_STATE(1845)] = 105740, - [SMALL_STATE(1846)] = 105758, - [SMALL_STATE(1847)] = 105776, - [SMALL_STATE(1848)] = 105802, - [SMALL_STATE(1849)] = 105824, - [SMALL_STATE(1850)] = 105850, - [SMALL_STATE(1851)] = 105872, - [SMALL_STATE(1852)] = 105898, - [SMALL_STATE(1853)] = 105924, - [SMALL_STATE(1854)] = 105942, - [SMALL_STATE(1855)] = 105968, - [SMALL_STATE(1856)] = 105986, - [SMALL_STATE(1857)] = 106012, - [SMALL_STATE(1858)] = 106038, - [SMALL_STATE(1859)] = 106054, - [SMALL_STATE(1860)] = 106080, - [SMALL_STATE(1861)] = 106102, - [SMALL_STATE(1862)] = 106124, - [SMALL_STATE(1863)] = 106150, - [SMALL_STATE(1864)] = 106168, - [SMALL_STATE(1865)] = 106194, - [SMALL_STATE(1866)] = 106212, - [SMALL_STATE(1867)] = 106238, - [SMALL_STATE(1868)] = 106260, - [SMALL_STATE(1869)] = 106286, - [SMALL_STATE(1870)] = 106312, - [SMALL_STATE(1871)] = 106338, - [SMALL_STATE(1872)] = 106364, - [SMALL_STATE(1873)] = 106390, - [SMALL_STATE(1874)] = 106410, - [SMALL_STATE(1875)] = 106436, - [SMALL_STATE(1876)] = 106458, - [SMALL_STATE(1877)] = 106482, - [SMALL_STATE(1878)] = 106506, - [SMALL_STATE(1879)] = 106528, - [SMALL_STATE(1880)] = 106554, - [SMALL_STATE(1881)] = 106572, - [SMALL_STATE(1882)] = 106594, - [SMALL_STATE(1883)] = 106618, - [SMALL_STATE(1884)] = 106636, - [SMALL_STATE(1885)] = 106662, - [SMALL_STATE(1886)] = 106680, - [SMALL_STATE(1887)] = 106698, - [SMALL_STATE(1888)] = 106720, - [SMALL_STATE(1889)] = 106738, - [SMALL_STATE(1890)] = 106755, - [SMALL_STATE(1891)] = 106776, - [SMALL_STATE(1892)] = 106797, - [SMALL_STATE(1893)] = 106818, - [SMALL_STATE(1894)] = 106841, - [SMALL_STATE(1895)] = 106858, - [SMALL_STATE(1896)] = 106879, - [SMALL_STATE(1897)] = 106900, - [SMALL_STATE(1898)] = 106921, - [SMALL_STATE(1899)] = 106938, - [SMALL_STATE(1900)] = 106959, - [SMALL_STATE(1901)] = 106976, - [SMALL_STATE(1902)] = 106993, - [SMALL_STATE(1903)] = 107010, - [SMALL_STATE(1904)] = 107023, - [SMALL_STATE(1905)] = 107040, - [SMALL_STATE(1906)] = 107055, - [SMALL_STATE(1907)] = 107072, - [SMALL_STATE(1908)] = 107089, - [SMALL_STATE(1909)] = 107104, - [SMALL_STATE(1910)] = 107121, - [SMALL_STATE(1911)] = 107142, - [SMALL_STATE(1912)] = 107155, - [SMALL_STATE(1913)] = 107172, - [SMALL_STATE(1914)] = 107185, - [SMALL_STATE(1915)] = 107202, - [SMALL_STATE(1916)] = 107219, - [SMALL_STATE(1917)] = 107242, - [SMALL_STATE(1918)] = 107257, - [SMALL_STATE(1919)] = 107274, - [SMALL_STATE(1920)] = 107297, - [SMALL_STATE(1921)] = 107314, - [SMALL_STATE(1922)] = 107335, - [SMALL_STATE(1923)] = 107356, - [SMALL_STATE(1924)] = 107373, - [SMALL_STATE(1925)] = 107386, - [SMALL_STATE(1926)] = 107403, - [SMALL_STATE(1927)] = 107420, - [SMALL_STATE(1928)] = 107435, - [SMALL_STATE(1929)] = 107456, - [SMALL_STATE(1930)] = 107469, - [SMALL_STATE(1931)] = 107490, - [SMALL_STATE(1932)] = 107505, - [SMALL_STATE(1933)] = 107518, - [SMALL_STATE(1934)] = 107535, - [SMALL_STATE(1935)] = 107556, - [SMALL_STATE(1936)] = 107573, - [SMALL_STATE(1937)] = 107586, - [SMALL_STATE(1938)] = 107605, - [SMALL_STATE(1939)] = 107622, - [SMALL_STATE(1940)] = 107635, - [SMALL_STATE(1941)] = 107648, - [SMALL_STATE(1942)] = 107661, - [SMALL_STATE(1943)] = 107674, - [SMALL_STATE(1944)] = 107695, - [SMALL_STATE(1945)] = 107716, - [SMALL_STATE(1946)] = 107737, - [SMALL_STATE(1947)] = 107758, - [SMALL_STATE(1948)] = 107771, - [SMALL_STATE(1949)] = 107792, - [SMALL_STATE(1950)] = 107815, - [SMALL_STATE(1951)] = 107836, - [SMALL_STATE(1952)] = 107857, - [SMALL_STATE(1953)] = 107880, - [SMALL_STATE(1954)] = 107901, - [SMALL_STATE(1955)] = 107922, - [SMALL_STATE(1956)] = 107943, - [SMALL_STATE(1957)] = 107960, - [SMALL_STATE(1958)] = 107981, - [SMALL_STATE(1959)] = 107994, - [SMALL_STATE(1960)] = 108007, - [SMALL_STATE(1961)] = 108020, - [SMALL_STATE(1962)] = 108041, - [SMALL_STATE(1963)] = 108058, - [SMALL_STATE(1964)] = 108079, - [SMALL_STATE(1965)] = 108092, - [SMALL_STATE(1966)] = 108113, - [SMALL_STATE(1967)] = 108130, - [SMALL_STATE(1968)] = 108147, - [SMALL_STATE(1969)] = 108164, - [SMALL_STATE(1970)] = 108185, - [SMALL_STATE(1971)] = 108206, - [SMALL_STATE(1972)] = 108219, - [SMALL_STATE(1973)] = 108240, - [SMALL_STATE(1974)] = 108253, - [SMALL_STATE(1975)] = 108266, - [SMALL_STATE(1976)] = 108283, - [SMALL_STATE(1977)] = 108300, - [SMALL_STATE(1978)] = 108317, - [SMALL_STATE(1979)] = 108334, - [SMALL_STATE(1980)] = 108351, - [SMALL_STATE(1981)] = 108366, - [SMALL_STATE(1982)] = 108387, - [SMALL_STATE(1983)] = 108402, - [SMALL_STATE(1984)] = 108419, - [SMALL_STATE(1985)] = 108436, - [SMALL_STATE(1986)] = 108453, - [SMALL_STATE(1987)] = 108470, - [SMALL_STATE(1988)] = 108485, - [SMALL_STATE(1989)] = 108498, - [SMALL_STATE(1990)] = 108511, - [SMALL_STATE(1991)] = 108524, - [SMALL_STATE(1992)] = 108545, - [SMALL_STATE(1993)] = 108558, - [SMALL_STATE(1994)] = 108577, - [SMALL_STATE(1995)] = 108590, - [SMALL_STATE(1996)] = 108607, - [SMALL_STATE(1997)] = 108624, - [SMALL_STATE(1998)] = 108645, - [SMALL_STATE(1999)] = 108665, - [SMALL_STATE(2000)] = 108683, - [SMALL_STATE(2001)] = 108703, - [SMALL_STATE(2002)] = 108715, - [SMALL_STATE(2003)] = 108733, - [SMALL_STATE(2004)] = 108745, - [SMALL_STATE(2005)] = 108765, - [SMALL_STATE(2006)] = 108785, - [SMALL_STATE(2007)] = 108803, - [SMALL_STATE(2008)] = 108817, - [SMALL_STATE(2009)] = 108829, - [SMALL_STATE(2010)] = 108841, - [SMALL_STATE(2011)] = 108853, - [SMALL_STATE(2012)] = 108865, - [SMALL_STATE(2013)] = 108881, - [SMALL_STATE(2014)] = 108901, - [SMALL_STATE(2015)] = 108917, - [SMALL_STATE(2016)] = 108931, - [SMALL_STATE(2017)] = 108947, - [SMALL_STATE(2018)] = 108959, - [SMALL_STATE(2019)] = 108975, - [SMALL_STATE(2020)] = 108987, - [SMALL_STATE(2021)] = 108999, - [SMALL_STATE(2022)] = 109019, - [SMALL_STATE(2023)] = 109039, - [SMALL_STATE(2024)] = 109059, - [SMALL_STATE(2025)] = 109071, - [SMALL_STATE(2026)] = 109087, - [SMALL_STATE(2027)] = 109099, - [SMALL_STATE(2028)] = 109111, - [SMALL_STATE(2029)] = 109123, - [SMALL_STATE(2030)] = 109135, - [SMALL_STATE(2031)] = 109153, - [SMALL_STATE(2032)] = 109165, - [SMALL_STATE(2033)] = 109181, - [SMALL_STATE(2034)] = 109195, - [SMALL_STATE(2035)] = 109211, - [SMALL_STATE(2036)] = 109223, - [SMALL_STATE(2037)] = 109235, - [SMALL_STATE(2038)] = 109249, - [SMALL_STATE(2039)] = 109269, - [SMALL_STATE(2040)] = 109289, - [SMALL_STATE(2041)] = 109301, - [SMALL_STATE(2042)] = 109317, - [SMALL_STATE(2043)] = 109329, - [SMALL_STATE(2044)] = 109341, - [SMALL_STATE(2045)] = 109353, - [SMALL_STATE(2046)] = 109365, - [SMALL_STATE(2047)] = 109377, - [SMALL_STATE(2048)] = 109389, - [SMALL_STATE(2049)] = 109405, - [SMALL_STATE(2050)] = 109423, - [SMALL_STATE(2051)] = 109443, - [SMALL_STATE(2052)] = 109461, - [SMALL_STATE(2053)] = 109481, - [SMALL_STATE(2054)] = 109501, - [SMALL_STATE(2055)] = 109517, - [SMALL_STATE(2056)] = 109531, - [SMALL_STATE(2057)] = 109547, - [SMALL_STATE(2058)] = 109567, - [SMALL_STATE(2059)] = 109587, - [SMALL_STATE(2060)] = 109599, - [SMALL_STATE(2061)] = 109611, - [SMALL_STATE(2062)] = 109629, - [SMALL_STATE(2063)] = 109641, - [SMALL_STATE(2064)] = 109653, - [SMALL_STATE(2065)] = 109665, - [SMALL_STATE(2066)] = 109685, - [SMALL_STATE(2067)] = 109697, - [SMALL_STATE(2068)] = 109709, - [SMALL_STATE(2069)] = 109727, - [SMALL_STATE(2070)] = 109739, - [SMALL_STATE(2071)] = 109751, - [SMALL_STATE(2072)] = 109763, - [SMALL_STATE(2073)] = 109775, - [SMALL_STATE(2074)] = 109795, - [SMALL_STATE(2075)] = 109813, - [SMALL_STATE(2076)] = 109831, - [SMALL_STATE(2077)] = 109843, - [SMALL_STATE(2078)] = 109855, - [SMALL_STATE(2079)] = 109875, - [SMALL_STATE(2080)] = 109895, - [SMALL_STATE(2081)] = 109915, - [SMALL_STATE(2082)] = 109927, - [SMALL_STATE(2083)] = 109939, - [SMALL_STATE(2084)] = 109951, - [SMALL_STATE(2085)] = 109963, - [SMALL_STATE(2086)] = 109975, - [SMALL_STATE(2087)] = 109987, - [SMALL_STATE(2088)] = 109999, - [SMALL_STATE(2089)] = 110011, - [SMALL_STATE(2090)] = 110031, - [SMALL_STATE(2091)] = 110043, - [SMALL_STATE(2092)] = 110061, - [SMALL_STATE(2093)] = 110073, - [SMALL_STATE(2094)] = 110085, - [SMALL_STATE(2095)] = 110097, - [SMALL_STATE(2096)] = 110109, - [SMALL_STATE(2097)] = 110121, - [SMALL_STATE(2098)] = 110133, - [SMALL_STATE(2099)] = 110153, - [SMALL_STATE(2100)] = 110171, - [SMALL_STATE(2101)] = 110187, - [SMALL_STATE(2102)] = 110199, - [SMALL_STATE(2103)] = 110217, - [SMALL_STATE(2104)] = 110237, - [SMALL_STATE(2105)] = 110257, - [SMALL_STATE(2106)] = 110277, - [SMALL_STATE(2107)] = 110289, - [SMALL_STATE(2108)] = 110305, - [SMALL_STATE(2109)] = 110321, - [SMALL_STATE(2110)] = 110333, - [SMALL_STATE(2111)] = 110353, - [SMALL_STATE(2112)] = 110367, - [SMALL_STATE(2113)] = 110387, - [SMALL_STATE(2114)] = 110404, - [SMALL_STATE(2115)] = 110419, - [SMALL_STATE(2116)] = 110430, - [SMALL_STATE(2117)] = 110447, - [SMALL_STATE(2118)] = 110458, - [SMALL_STATE(2119)] = 110469, - [SMALL_STATE(2120)] = 110484, - [SMALL_STATE(2121)] = 110495, - [SMALL_STATE(2122)] = 110510, - [SMALL_STATE(2123)] = 110521, - [SMALL_STATE(2124)] = 110538, - [SMALL_STATE(2125)] = 110549, - [SMALL_STATE(2126)] = 110560, - [SMALL_STATE(2127)] = 110571, - [SMALL_STATE(2128)] = 110586, - [SMALL_STATE(2129)] = 110597, - [SMALL_STATE(2130)] = 110608, - [SMALL_STATE(2131)] = 110625, - [SMALL_STATE(2132)] = 110636, - [SMALL_STATE(2133)] = 110651, - [SMALL_STATE(2134)] = 110668, - [SMALL_STATE(2135)] = 110679, - [SMALL_STATE(2136)] = 110690, - [SMALL_STATE(2137)] = 110705, - [SMALL_STATE(2138)] = 110722, - [SMALL_STATE(2139)] = 110739, - [SMALL_STATE(2140)] = 110754, - [SMALL_STATE(2141)] = 110765, - [SMALL_STATE(2142)] = 110780, - [SMALL_STATE(2143)] = 110791, - [SMALL_STATE(2144)] = 110802, - [SMALL_STATE(2145)] = 110819, - [SMALL_STATE(2146)] = 110836, - [SMALL_STATE(2147)] = 110851, - [SMALL_STATE(2148)] = 110862, - [SMALL_STATE(2149)] = 110879, - [SMALL_STATE(2150)] = 110896, - [SMALL_STATE(2151)] = 110913, - [SMALL_STATE(2152)] = 110930, - [SMALL_STATE(2153)] = 110941, - [SMALL_STATE(2154)] = 110952, - [SMALL_STATE(2155)] = 110963, - [SMALL_STATE(2156)] = 110974, - [SMALL_STATE(2157)] = 110985, - [SMALL_STATE(2158)] = 110996, - [SMALL_STATE(2159)] = 111007, - [SMALL_STATE(2160)] = 111018, - [SMALL_STATE(2161)] = 111029, - [SMALL_STATE(2162)] = 111046, - [SMALL_STATE(2163)] = 111063, - [SMALL_STATE(2164)] = 111078, - [SMALL_STATE(2165)] = 111095, - [SMALL_STATE(2166)] = 111106, - [SMALL_STATE(2167)] = 111117, - [SMALL_STATE(2168)] = 111128, - [SMALL_STATE(2169)] = 111139, - [SMALL_STATE(2170)] = 111156, - [SMALL_STATE(2171)] = 111173, - [SMALL_STATE(2172)] = 111186, - [SMALL_STATE(2173)] = 111201, - [SMALL_STATE(2174)] = 111212, - [SMALL_STATE(2175)] = 111229, - [SMALL_STATE(2176)] = 111240, - [SMALL_STATE(2177)] = 111251, - [SMALL_STATE(2178)] = 111262, - [SMALL_STATE(2179)] = 111273, - [SMALL_STATE(2180)] = 111290, - [SMALL_STATE(2181)] = 111301, - [SMALL_STATE(2182)] = 111312, - [SMALL_STATE(2183)] = 111323, - [SMALL_STATE(2184)] = 111334, - [SMALL_STATE(2185)] = 111345, - [SMALL_STATE(2186)] = 111360, - [SMALL_STATE(2187)] = 111377, - [SMALL_STATE(2188)] = 111388, - [SMALL_STATE(2189)] = 111405, - [SMALL_STATE(2190)] = 111416, - [SMALL_STATE(2191)] = 111427, - [SMALL_STATE(2192)] = 111438, - [SMALL_STATE(2193)] = 111455, - [SMALL_STATE(2194)] = 111466, - [SMALL_STATE(2195)] = 111477, - [SMALL_STATE(2196)] = 111492, - [SMALL_STATE(2197)] = 111503, - [SMALL_STATE(2198)] = 111520, - [SMALL_STATE(2199)] = 111531, - [SMALL_STATE(2200)] = 111544, - [SMALL_STATE(2201)] = 111555, - [SMALL_STATE(2202)] = 111572, - [SMALL_STATE(2203)] = 111583, - [SMALL_STATE(2204)] = 111594, - [SMALL_STATE(2205)] = 111605, - [SMALL_STATE(2206)] = 111622, - [SMALL_STATE(2207)] = 111633, - [SMALL_STATE(2208)] = 111644, - [SMALL_STATE(2209)] = 111655, - [SMALL_STATE(2210)] = 111666, - [SMALL_STATE(2211)] = 111681, - [SMALL_STATE(2212)] = 111692, - [SMALL_STATE(2213)] = 111707, - [SMALL_STATE(2214)] = 111718, - [SMALL_STATE(2215)] = 111729, - [SMALL_STATE(2216)] = 111744, - [SMALL_STATE(2217)] = 111755, - [SMALL_STATE(2218)] = 111766, - [SMALL_STATE(2219)] = 111781, - [SMALL_STATE(2220)] = 111796, - [SMALL_STATE(2221)] = 111807, - [SMALL_STATE(2222)] = 111818, - [SMALL_STATE(2223)] = 111829, - [SMALL_STATE(2224)] = 111840, - [SMALL_STATE(2225)] = 111857, - [SMALL_STATE(2226)] = 111868, - [SMALL_STATE(2227)] = 111879, - [SMALL_STATE(2228)] = 111896, - [SMALL_STATE(2229)] = 111913, - [SMALL_STATE(2230)] = 111924, - [SMALL_STATE(2231)] = 111939, - [SMALL_STATE(2232)] = 111954, - [SMALL_STATE(2233)] = 111965, - [SMALL_STATE(2234)] = 111976, - [SMALL_STATE(2235)] = 111987, - [SMALL_STATE(2236)] = 111998, - [SMALL_STATE(2237)] = 112015, - [SMALL_STATE(2238)] = 112032, - [SMALL_STATE(2239)] = 112043, - [SMALL_STATE(2240)] = 112060, - [SMALL_STATE(2241)] = 112071, - [SMALL_STATE(2242)] = 112084, - [SMALL_STATE(2243)] = 112098, - [SMALL_STATE(2244)] = 112112, - [SMALL_STATE(2245)] = 112124, - [SMALL_STATE(2246)] = 112136, - [SMALL_STATE(2247)] = 112150, - [SMALL_STATE(2248)] = 112164, - [SMALL_STATE(2249)] = 112178, - [SMALL_STATE(2250)] = 112192, - [SMALL_STATE(2251)] = 112206, - [SMALL_STATE(2252)] = 112220, - [SMALL_STATE(2253)] = 112234, - [SMALL_STATE(2254)] = 112246, - [SMALL_STATE(2255)] = 112260, - [SMALL_STATE(2256)] = 112274, - [SMALL_STATE(2257)] = 112288, - [SMALL_STATE(2258)] = 112302, - [SMALL_STATE(2259)] = 112312, - [SMALL_STATE(2260)] = 112326, - [SMALL_STATE(2261)] = 112340, - [SMALL_STATE(2262)] = 112354, - [SMALL_STATE(2263)] = 112368, - [SMALL_STATE(2264)] = 112382, - [SMALL_STATE(2265)] = 112396, - [SMALL_STATE(2266)] = 112410, - [SMALL_STATE(2267)] = 112424, - [SMALL_STATE(2268)] = 112438, - [SMALL_STATE(2269)] = 112452, - [SMALL_STATE(2270)] = 112466, - [SMALL_STATE(2271)] = 112480, - [SMALL_STATE(2272)] = 112494, - [SMALL_STATE(2273)] = 112508, - [SMALL_STATE(2274)] = 112520, - [SMALL_STATE(2275)] = 112534, - [SMALL_STATE(2276)] = 112548, - [SMALL_STATE(2277)] = 112562, - [SMALL_STATE(2278)] = 112576, - [SMALL_STATE(2279)] = 112588, - [SMALL_STATE(2280)] = 112602, - [SMALL_STATE(2281)] = 112616, - [SMALL_STATE(2282)] = 112630, - [SMALL_STATE(2283)] = 112644, - [SMALL_STATE(2284)] = 112658, - [SMALL_STATE(2285)] = 112672, - [SMALL_STATE(2286)] = 112686, - [SMALL_STATE(2287)] = 112698, - [SMALL_STATE(2288)] = 112708, - [SMALL_STATE(2289)] = 112722, - [SMALL_STATE(2290)] = 112734, - [SMALL_STATE(2291)] = 112746, - [SMALL_STATE(2292)] = 112758, - [SMALL_STATE(2293)] = 112772, - [SMALL_STATE(2294)] = 112786, - [SMALL_STATE(2295)] = 112796, - [SMALL_STATE(2296)] = 112810, - [SMALL_STATE(2297)] = 112824, - [SMALL_STATE(2298)] = 112838, - [SMALL_STATE(2299)] = 112852, - [SMALL_STATE(2300)] = 112866, - [SMALL_STATE(2301)] = 112880, - [SMALL_STATE(2302)] = 112892, - [SMALL_STATE(2303)] = 112906, - [SMALL_STATE(2304)] = 112920, - [SMALL_STATE(2305)] = 112934, - [SMALL_STATE(2306)] = 112948, - [SMALL_STATE(2307)] = 112962, - [SMALL_STATE(2308)] = 112972, - [SMALL_STATE(2309)] = 112986, - [SMALL_STATE(2310)] = 113000, - [SMALL_STATE(2311)] = 113014, - [SMALL_STATE(2312)] = 113028, - [SMALL_STATE(2313)] = 113042, - [SMALL_STATE(2314)] = 113054, - [SMALL_STATE(2315)] = 113068, - [SMALL_STATE(2316)] = 113082, - [SMALL_STATE(2317)] = 113096, - [SMALL_STATE(2318)] = 113110, - [SMALL_STATE(2319)] = 113124, - [SMALL_STATE(2320)] = 113138, - [SMALL_STATE(2321)] = 113152, - [SMALL_STATE(2322)] = 113166, - [SMALL_STATE(2323)] = 113180, - [SMALL_STATE(2324)] = 113194, - [SMALL_STATE(2325)] = 113208, - [SMALL_STATE(2326)] = 113222, - [SMALL_STATE(2327)] = 113236, - [SMALL_STATE(2328)] = 113250, - [SMALL_STATE(2329)] = 113262, - [SMALL_STATE(2330)] = 113272, - [SMALL_STATE(2331)] = 113286, - [SMALL_STATE(2332)] = 113300, - [SMALL_STATE(2333)] = 113314, - [SMALL_STATE(2334)] = 113328, - [SMALL_STATE(2335)] = 113342, - [SMALL_STATE(2336)] = 113356, - [SMALL_STATE(2337)] = 113370, - [SMALL_STATE(2338)] = 113384, - [SMALL_STATE(2339)] = 113398, - [SMALL_STATE(2340)] = 113412, - [SMALL_STATE(2341)] = 113426, - [SMALL_STATE(2342)] = 113440, - [SMALL_STATE(2343)] = 113454, - [SMALL_STATE(2344)] = 113468, - [SMALL_STATE(2345)] = 113482, - [SMALL_STATE(2346)] = 113496, - [SMALL_STATE(2347)] = 113510, - [SMALL_STATE(2348)] = 113524, - [SMALL_STATE(2349)] = 113538, - [SMALL_STATE(2350)] = 113552, - [SMALL_STATE(2351)] = 113566, - [SMALL_STATE(2352)] = 113580, - [SMALL_STATE(2353)] = 113594, - [SMALL_STATE(2354)] = 113608, - [SMALL_STATE(2355)] = 113618, - [SMALL_STATE(2356)] = 113632, - [SMALL_STATE(2357)] = 113646, - [SMALL_STATE(2358)] = 113660, - [SMALL_STATE(2359)] = 113674, - [SMALL_STATE(2360)] = 113684, - [SMALL_STATE(2361)] = 113696, - [SMALL_STATE(2362)] = 113710, - [SMALL_STATE(2363)] = 113724, - [SMALL_STATE(2364)] = 113738, - [SMALL_STATE(2365)] = 113752, - [SMALL_STATE(2366)] = 113766, - [SMALL_STATE(2367)] = 113776, - [SMALL_STATE(2368)] = 113790, - [SMALL_STATE(2369)] = 113804, - [SMALL_STATE(2370)] = 113818, - [SMALL_STATE(2371)] = 113832, - [SMALL_STATE(2372)] = 113846, - [SMALL_STATE(2373)] = 113860, - [SMALL_STATE(2374)] = 113874, - [SMALL_STATE(2375)] = 113888, - [SMALL_STATE(2376)] = 113902, - [SMALL_STATE(2377)] = 113916, - [SMALL_STATE(2378)] = 113930, - [SMALL_STATE(2379)] = 113944, - [SMALL_STATE(2380)] = 113958, - [SMALL_STATE(2381)] = 113972, - [SMALL_STATE(2382)] = 113986, - [SMALL_STATE(2383)] = 114000, - [SMALL_STATE(2384)] = 114010, - [SMALL_STATE(2385)] = 114024, - [SMALL_STATE(2386)] = 114036, - [SMALL_STATE(2387)] = 114050, - [SMALL_STATE(2388)] = 114064, - [SMALL_STATE(2389)] = 114078, - [SMALL_STATE(2390)] = 114092, - [SMALL_STATE(2391)] = 114106, - [SMALL_STATE(2392)] = 114120, - [SMALL_STATE(2393)] = 114132, - [SMALL_STATE(2394)] = 114146, - [SMALL_STATE(2395)] = 114160, - [SMALL_STATE(2396)] = 114174, - [SMALL_STATE(2397)] = 114188, - [SMALL_STATE(2398)] = 114202, - [SMALL_STATE(2399)] = 114216, - [SMALL_STATE(2400)] = 114230, - [SMALL_STATE(2401)] = 114242, - [SMALL_STATE(2402)] = 114256, - [SMALL_STATE(2403)] = 114270, - [SMALL_STATE(2404)] = 114284, - [SMALL_STATE(2405)] = 114298, - [SMALL_STATE(2406)] = 114312, - [SMALL_STATE(2407)] = 114326, - [SMALL_STATE(2408)] = 114340, - [SMALL_STATE(2409)] = 114354, - [SMALL_STATE(2410)] = 114368, - [SMALL_STATE(2411)] = 114382, - [SMALL_STATE(2412)] = 114396, - [SMALL_STATE(2413)] = 114410, - [SMALL_STATE(2414)] = 114424, - [SMALL_STATE(2415)] = 114438, - [SMALL_STATE(2416)] = 114452, - [SMALL_STATE(2417)] = 114462, - [SMALL_STATE(2418)] = 114476, - [SMALL_STATE(2419)] = 114490, - [SMALL_STATE(2420)] = 114504, - [SMALL_STATE(2421)] = 114518, - [SMALL_STATE(2422)] = 114532, - [SMALL_STATE(2423)] = 114546, - [SMALL_STATE(2424)] = 114560, - [SMALL_STATE(2425)] = 114574, - [SMALL_STATE(2426)] = 114584, - [SMALL_STATE(2427)] = 114594, - [SMALL_STATE(2428)] = 114608, - [SMALL_STATE(2429)] = 114622, - [SMALL_STATE(2430)] = 114636, - [SMALL_STATE(2431)] = 114650, - [SMALL_STATE(2432)] = 114664, - [SMALL_STATE(2433)] = 114678, - [SMALL_STATE(2434)] = 114692, - [SMALL_STATE(2435)] = 114706, - [SMALL_STATE(2436)] = 114720, - [SMALL_STATE(2437)] = 114734, - [SMALL_STATE(2438)] = 114748, - [SMALL_STATE(2439)] = 114762, - [SMALL_STATE(2440)] = 114776, - [SMALL_STATE(2441)] = 114790, - [SMALL_STATE(2442)] = 114804, - [SMALL_STATE(2443)] = 114818, - [SMALL_STATE(2444)] = 114832, - [SMALL_STATE(2445)] = 114846, - [SMALL_STATE(2446)] = 114860, - [SMALL_STATE(2447)] = 114874, - [SMALL_STATE(2448)] = 114888, - [SMALL_STATE(2449)] = 114902, - [SMALL_STATE(2450)] = 114916, - [SMALL_STATE(2451)] = 114930, - [SMALL_STATE(2452)] = 114944, - [SMALL_STATE(2453)] = 114958, - [SMALL_STATE(2454)] = 114972, - [SMALL_STATE(2455)] = 114986, - [SMALL_STATE(2456)] = 115000, - [SMALL_STATE(2457)] = 115014, - [SMALL_STATE(2458)] = 115028, - [SMALL_STATE(2459)] = 115042, - [SMALL_STATE(2460)] = 115052, - [SMALL_STATE(2461)] = 115066, - [SMALL_STATE(2462)] = 115080, - [SMALL_STATE(2463)] = 115094, - [SMALL_STATE(2464)] = 115108, - [SMALL_STATE(2465)] = 115122, - [SMALL_STATE(2466)] = 115136, - [SMALL_STATE(2467)] = 115150, - [SMALL_STATE(2468)] = 115164, - [SMALL_STATE(2469)] = 115178, - [SMALL_STATE(2470)] = 115192, - [SMALL_STATE(2471)] = 115204, - [SMALL_STATE(2472)] = 115218, - [SMALL_STATE(2473)] = 115230, - [SMALL_STATE(2474)] = 115244, - [SMALL_STATE(2475)] = 115258, - [SMALL_STATE(2476)] = 115272, - [SMALL_STATE(2477)] = 115284, - [SMALL_STATE(2478)] = 115298, - [SMALL_STATE(2479)] = 115312, - [SMALL_STATE(2480)] = 115326, - [SMALL_STATE(2481)] = 115340, - [SMALL_STATE(2482)] = 115354, - [SMALL_STATE(2483)] = 115368, - [SMALL_STATE(2484)] = 115382, - [SMALL_STATE(2485)] = 115396, - [SMALL_STATE(2486)] = 115410, - [SMALL_STATE(2487)] = 115424, - [SMALL_STATE(2488)] = 115438, - [SMALL_STATE(2489)] = 115452, - [SMALL_STATE(2490)] = 115466, - [SMALL_STATE(2491)] = 115480, - [SMALL_STATE(2492)] = 115490, - [SMALL_STATE(2493)] = 115499, - [SMALL_STATE(2494)] = 115510, - [SMALL_STATE(2495)] = 115519, - [SMALL_STATE(2496)] = 115528, - [SMALL_STATE(2497)] = 115537, - [SMALL_STATE(2498)] = 115546, - [SMALL_STATE(2499)] = 115555, - [SMALL_STATE(2500)] = 115564, - [SMALL_STATE(2501)] = 115573, - [SMALL_STATE(2502)] = 115582, - [SMALL_STATE(2503)] = 115591, - [SMALL_STATE(2504)] = 115600, - [SMALL_STATE(2505)] = 115609, - [SMALL_STATE(2506)] = 115618, - [SMALL_STATE(2507)] = 115627, - [SMALL_STATE(2508)] = 115636, - [SMALL_STATE(2509)] = 115645, - [SMALL_STATE(2510)] = 115654, - [SMALL_STATE(2511)] = 115663, - [SMALL_STATE(2512)] = 115672, - [SMALL_STATE(2513)] = 115683, - [SMALL_STATE(2514)] = 115692, - [SMALL_STATE(2515)] = 115701, - [SMALL_STATE(2516)] = 115710, - [SMALL_STATE(2517)] = 115719, - [SMALL_STATE(2518)] = 115728, - [SMALL_STATE(2519)] = 115737, - [SMALL_STATE(2520)] = 115748, - [SMALL_STATE(2521)] = 115757, - [SMALL_STATE(2522)] = 115768, - [SMALL_STATE(2523)] = 115777, - [SMALL_STATE(2524)] = 115786, - [SMALL_STATE(2525)] = 115797, - [SMALL_STATE(2526)] = 115806, - [SMALL_STATE(2527)] = 115815, - [SMALL_STATE(2528)] = 115824, - [SMALL_STATE(2529)] = 115833, - [SMALL_STATE(2530)] = 115842, - [SMALL_STATE(2531)] = 115851, - [SMALL_STATE(2532)] = 115862, - [SMALL_STATE(2533)] = 115873, - [SMALL_STATE(2534)] = 115882, - [SMALL_STATE(2535)] = 115891, - [SMALL_STATE(2536)] = 115902, - [SMALL_STATE(2537)] = 115911, - [SMALL_STATE(2538)] = 115920, - [SMALL_STATE(2539)] = 115929, - [SMALL_STATE(2540)] = 115940, - [SMALL_STATE(2541)] = 115949, - [SMALL_STATE(2542)] = 115958, - [SMALL_STATE(2543)] = 115967, - [SMALL_STATE(2544)] = 115978, - [SMALL_STATE(2545)] = 115987, - [SMALL_STATE(2546)] = 115996, - [SMALL_STATE(2547)] = 116005, - [SMALL_STATE(2548)] = 116016, - [SMALL_STATE(2549)] = 116025, - [SMALL_STATE(2550)] = 116034, - [SMALL_STATE(2551)] = 116043, - [SMALL_STATE(2552)] = 116052, - [SMALL_STATE(2553)] = 116061, - [SMALL_STATE(2554)] = 116070, - [SMALL_STATE(2555)] = 116079, - [SMALL_STATE(2556)] = 116088, - [SMALL_STATE(2557)] = 116097, - [SMALL_STATE(2558)] = 116106, - [SMALL_STATE(2559)] = 116117, - [SMALL_STATE(2560)] = 116128, - [SMALL_STATE(2561)] = 116139, - [SMALL_STATE(2562)] = 116150, - [SMALL_STATE(2563)] = 116161, - [SMALL_STATE(2564)] = 116170, - [SMALL_STATE(2565)] = 116179, - [SMALL_STATE(2566)] = 116188, - [SMALL_STATE(2567)] = 116197, - [SMALL_STATE(2568)] = 116208, - [SMALL_STATE(2569)] = 116219, - [SMALL_STATE(2570)] = 116228, - [SMALL_STATE(2571)] = 116237, - [SMALL_STATE(2572)] = 116248, - [SMALL_STATE(2573)] = 116257, - [SMALL_STATE(2574)] = 116266, - [SMALL_STATE(2575)] = 116275, - [SMALL_STATE(2576)] = 116284, - [SMALL_STATE(2577)] = 116295, - [SMALL_STATE(2578)] = 116304, - [SMALL_STATE(2579)] = 116313, - [SMALL_STATE(2580)] = 116322, - [SMALL_STATE(2581)] = 116331, - [SMALL_STATE(2582)] = 116340, - [SMALL_STATE(2583)] = 116349, - [SMALL_STATE(2584)] = 116358, - [SMALL_STATE(2585)] = 116367, - [SMALL_STATE(2586)] = 116378, - [SMALL_STATE(2587)] = 116389, - [SMALL_STATE(2588)] = 116398, - [SMALL_STATE(2589)] = 116409, - [SMALL_STATE(2590)] = 116420, - [SMALL_STATE(2591)] = 116429, - [SMALL_STATE(2592)] = 116438, - [SMALL_STATE(2593)] = 116449, - [SMALL_STATE(2594)] = 116457, - [SMALL_STATE(2595)] = 116465, - [SMALL_STATE(2596)] = 116473, - [SMALL_STATE(2597)] = 116481, - [SMALL_STATE(2598)] = 116489, - [SMALL_STATE(2599)] = 116497, - [SMALL_STATE(2600)] = 116505, - [SMALL_STATE(2601)] = 116513, - [SMALL_STATE(2602)] = 116521, - [SMALL_STATE(2603)] = 116529, - [SMALL_STATE(2604)] = 116537, - [SMALL_STATE(2605)] = 116545, - [SMALL_STATE(2606)] = 116553, - [SMALL_STATE(2607)] = 116561, - [SMALL_STATE(2608)] = 116569, - [SMALL_STATE(2609)] = 116577, - [SMALL_STATE(2610)] = 116585, - [SMALL_STATE(2611)] = 116593, - [SMALL_STATE(2612)] = 116601, - [SMALL_STATE(2613)] = 116609, - [SMALL_STATE(2614)] = 116617, - [SMALL_STATE(2615)] = 116625, - [SMALL_STATE(2616)] = 116633, - [SMALL_STATE(2617)] = 116641, - [SMALL_STATE(2618)] = 116649, - [SMALL_STATE(2619)] = 116657, - [SMALL_STATE(2620)] = 116665, - [SMALL_STATE(2621)] = 116673, - [SMALL_STATE(2622)] = 116681, - [SMALL_STATE(2623)] = 116689, - [SMALL_STATE(2624)] = 116697, - [SMALL_STATE(2625)] = 116705, - [SMALL_STATE(2626)] = 116713, - [SMALL_STATE(2627)] = 116721, - [SMALL_STATE(2628)] = 116729, - [SMALL_STATE(2629)] = 116737, - [SMALL_STATE(2630)] = 116745, - [SMALL_STATE(2631)] = 116753, - [SMALL_STATE(2632)] = 116761, - [SMALL_STATE(2633)] = 116769, - [SMALL_STATE(2634)] = 116777, - [SMALL_STATE(2635)] = 116785, - [SMALL_STATE(2636)] = 116793, - [SMALL_STATE(2637)] = 116801, - [SMALL_STATE(2638)] = 116809, - [SMALL_STATE(2639)] = 116817, - [SMALL_STATE(2640)] = 116825, - [SMALL_STATE(2641)] = 116833, - [SMALL_STATE(2642)] = 116841, - [SMALL_STATE(2643)] = 116849, - [SMALL_STATE(2644)] = 116857, - [SMALL_STATE(2645)] = 116865, - [SMALL_STATE(2646)] = 116873, - [SMALL_STATE(2647)] = 116881, - [SMALL_STATE(2648)] = 116889, - [SMALL_STATE(2649)] = 116897, - [SMALL_STATE(2650)] = 116905, - [SMALL_STATE(2651)] = 116913, - [SMALL_STATE(2652)] = 116921, - [SMALL_STATE(2653)] = 116929, - [SMALL_STATE(2654)] = 116937, - [SMALL_STATE(2655)] = 116945, - [SMALL_STATE(2656)] = 116953, - [SMALL_STATE(2657)] = 116961, - [SMALL_STATE(2658)] = 116969, - [SMALL_STATE(2659)] = 116977, - [SMALL_STATE(2660)] = 116985, - [SMALL_STATE(2661)] = 116993, - [SMALL_STATE(2662)] = 117001, - [SMALL_STATE(2663)] = 117009, - [SMALL_STATE(2664)] = 117017, - [SMALL_STATE(2665)] = 117025, - [SMALL_STATE(2666)] = 117033, - [SMALL_STATE(2667)] = 117041, - [SMALL_STATE(2668)] = 117049, - [SMALL_STATE(2669)] = 117057, - [SMALL_STATE(2670)] = 117065, - [SMALL_STATE(2671)] = 117073, - [SMALL_STATE(2672)] = 117081, - [SMALL_STATE(2673)] = 117089, - [SMALL_STATE(2674)] = 117097, - [SMALL_STATE(2675)] = 117105, - [SMALL_STATE(2676)] = 117113, - [SMALL_STATE(2677)] = 117121, - [SMALL_STATE(2678)] = 117129, - [SMALL_STATE(2679)] = 117137, - [SMALL_STATE(2680)] = 117145, - [SMALL_STATE(2681)] = 117153, - [SMALL_STATE(2682)] = 117161, - [SMALL_STATE(2683)] = 117169, - [SMALL_STATE(2684)] = 117177, - [SMALL_STATE(2685)] = 117185, - [SMALL_STATE(2686)] = 117193, - [SMALL_STATE(2687)] = 117201, - [SMALL_STATE(2688)] = 117209, - [SMALL_STATE(2689)] = 117217, - [SMALL_STATE(2690)] = 117225, - [SMALL_STATE(2691)] = 117233, - [SMALL_STATE(2692)] = 117241, - [SMALL_STATE(2693)] = 117249, - [SMALL_STATE(2694)] = 117257, - [SMALL_STATE(2695)] = 117265, - [SMALL_STATE(2696)] = 117273, - [SMALL_STATE(2697)] = 117281, - [SMALL_STATE(2698)] = 117289, - [SMALL_STATE(2699)] = 117297, - [SMALL_STATE(2700)] = 117305, - [SMALL_STATE(2701)] = 117313, - [SMALL_STATE(2702)] = 117321, - [SMALL_STATE(2703)] = 117329, - [SMALL_STATE(2704)] = 117337, - [SMALL_STATE(2705)] = 117345, - [SMALL_STATE(2706)] = 117353, - [SMALL_STATE(2707)] = 117361, - [SMALL_STATE(2708)] = 117369, - [SMALL_STATE(2709)] = 117377, - [SMALL_STATE(2710)] = 117385, - [SMALL_STATE(2711)] = 117393, - [SMALL_STATE(2712)] = 117401, - [SMALL_STATE(2713)] = 117409, - [SMALL_STATE(2714)] = 117417, - [SMALL_STATE(2715)] = 117425, - [SMALL_STATE(2716)] = 117433, - [SMALL_STATE(2717)] = 117441, - [SMALL_STATE(2718)] = 117449, - [SMALL_STATE(2719)] = 117457, - [SMALL_STATE(2720)] = 117465, - [SMALL_STATE(2721)] = 117473, - [SMALL_STATE(2722)] = 117481, - [SMALL_STATE(2723)] = 117489, - [SMALL_STATE(2724)] = 117497, - [SMALL_STATE(2725)] = 117505, - [SMALL_STATE(2726)] = 117513, - [SMALL_STATE(2727)] = 117521, - [SMALL_STATE(2728)] = 117529, - [SMALL_STATE(2729)] = 117537, - [SMALL_STATE(2730)] = 117545, - [SMALL_STATE(2731)] = 117553, - [SMALL_STATE(2732)] = 117561, - [SMALL_STATE(2733)] = 117569, - [SMALL_STATE(2734)] = 117577, - [SMALL_STATE(2735)] = 117585, - [SMALL_STATE(2736)] = 117593, - [SMALL_STATE(2737)] = 117601, - [SMALL_STATE(2738)] = 117609, - [SMALL_STATE(2739)] = 117617, - [SMALL_STATE(2740)] = 117625, - [SMALL_STATE(2741)] = 117633, - [SMALL_STATE(2742)] = 117641, - [SMALL_STATE(2743)] = 117649, - [SMALL_STATE(2744)] = 117657, - [SMALL_STATE(2745)] = 117665, - [SMALL_STATE(2746)] = 117673, - [SMALL_STATE(2747)] = 117681, - [SMALL_STATE(2748)] = 117689, - [SMALL_STATE(2749)] = 117697, - [SMALL_STATE(2750)] = 117705, - [SMALL_STATE(2751)] = 117713, - [SMALL_STATE(2752)] = 117721, - [SMALL_STATE(2753)] = 117729, - [SMALL_STATE(2754)] = 117737, - [SMALL_STATE(2755)] = 117745, - [SMALL_STATE(2756)] = 117753, - [SMALL_STATE(2757)] = 117761, - [SMALL_STATE(2758)] = 117769, - [SMALL_STATE(2759)] = 117777, - [SMALL_STATE(2760)] = 117785, - [SMALL_STATE(2761)] = 117793, - [SMALL_STATE(2762)] = 117801, - [SMALL_STATE(2763)] = 117809, - [SMALL_STATE(2764)] = 117817, - [SMALL_STATE(2765)] = 117825, - [SMALL_STATE(2766)] = 117833, - [SMALL_STATE(2767)] = 117841, - [SMALL_STATE(2768)] = 117849, - [SMALL_STATE(2769)] = 117857, - [SMALL_STATE(2770)] = 117865, - [SMALL_STATE(2771)] = 117873, - [SMALL_STATE(2772)] = 117881, - [SMALL_STATE(2773)] = 117889, - [SMALL_STATE(2774)] = 117897, - [SMALL_STATE(2775)] = 117905, - [SMALL_STATE(2776)] = 117913, - [SMALL_STATE(2777)] = 117921, - [SMALL_STATE(2778)] = 117929, - [SMALL_STATE(2779)] = 117937, - [SMALL_STATE(2780)] = 117945, - [SMALL_STATE(2781)] = 117953, - [SMALL_STATE(2782)] = 117961, - [SMALL_STATE(2783)] = 117969, - [SMALL_STATE(2784)] = 117977, - [SMALL_STATE(2785)] = 117985, - [SMALL_STATE(2786)] = 117993, - [SMALL_STATE(2787)] = 118001, + [SMALL_STATE(182)] = 0, + [SMALL_STATE(183)] = 126, + [SMALL_STATE(184)] = 250, + [SMALL_STATE(185)] = 370, + [SMALL_STATE(186)] = 498, + [SMALL_STATE(187)] = 624, + [SMALL_STATE(188)] = 748, + [SMALL_STATE(189)] = 872, + [SMALL_STATE(190)] = 1000, + [SMALL_STATE(191)] = 1124, + [SMALL_STATE(192)] = 1244, + [SMALL_STATE(193)] = 1370, + [SMALL_STATE(194)] = 1494, + [SMALL_STATE(195)] = 1618, + [SMALL_STATE(196)] = 1744, + [SMALL_STATE(197)] = 1864, + [SMALL_STATE(198)] = 1988, + [SMALL_STATE(199)] = 2114, + [SMALL_STATE(200)] = 2238, + [SMALL_STATE(201)] = 2362, + [SMALL_STATE(202)] = 2488, + [SMALL_STATE(203)] = 2612, + [SMALL_STATE(204)] = 2736, + [SMALL_STATE(205)] = 2862, + [SMALL_STATE(206)] = 2986, + [SMALL_STATE(207)] = 3110, + [SMALL_STATE(208)] = 3236, + [SMALL_STATE(209)] = 3360, + [SMALL_STATE(210)] = 3484, + [SMALL_STATE(211)] = 3610, + [SMALL_STATE(212)] = 3734, + [SMALL_STATE(213)] = 3858, + [SMALL_STATE(214)] = 3982, + [SMALL_STATE(215)] = 4106, + [SMALL_STATE(216)] = 4213, + [SMALL_STATE(217)] = 4320, + [SMALL_STATE(218)] = 4436, + [SMALL_STATE(219)] = 4552, + [SMALL_STATE(220)] = 4668, + [SMALL_STATE(221)] = 4784, + [SMALL_STATE(222)] = 4900, + [SMALL_STATE(223)] = 5016, + [SMALL_STATE(224)] = 5132, + [SMALL_STATE(225)] = 5248, + [SMALL_STATE(226)] = 5364, + [SMALL_STATE(227)] = 5480, + [SMALL_STATE(228)] = 5593, + [SMALL_STATE(229)] = 5706, + [SMALL_STATE(230)] = 5819, + [SMALL_STATE(231)] = 5932, + [SMALL_STATE(232)] = 6045, + [SMALL_STATE(233)] = 6160, + [SMALL_STATE(234)] = 6275, + [SMALL_STATE(235)] = 6388, + [SMALL_STATE(236)] = 6501, + [SMALL_STATE(237)] = 6614, + [SMALL_STATE(238)] = 6727, + [SMALL_STATE(239)] = 6840, + [SMALL_STATE(240)] = 6955, + [SMALL_STATE(241)] = 7070, + [SMALL_STATE(242)] = 7175, + [SMALL_STATE(243)] = 7288, + [SMALL_STATE(244)] = 7393, + [SMALL_STATE(245)] = 7506, + [SMALL_STATE(246)] = 7619, + [SMALL_STATE(247)] = 7730, + [SMALL_STATE(248)] = 7845, + [SMALL_STATE(249)] = 7960, + [SMALL_STATE(250)] = 8073, + [SMALL_STATE(251)] = 8186, + [SMALL_STATE(252)] = 8301, + [SMALL_STATE(253)] = 8414, + [SMALL_STATE(254)] = 8527, + [SMALL_STATE(255)] = 8644, + [SMALL_STATE(256)] = 8757, + [SMALL_STATE(257)] = 8870, + [SMALL_STATE(258)] = 8985, + [SMALL_STATE(259)] = 9098, + [SMALL_STATE(260)] = 9211, + [SMALL_STATE(261)] = 9324, + [SMALL_STATE(262)] = 9437, + [SMALL_STATE(263)] = 9550, + [SMALL_STATE(264)] = 9663, + [SMALL_STATE(265)] = 9778, + [SMALL_STATE(266)] = 9890, + [SMALL_STATE(267)] = 10002, + [SMALL_STATE(268)] = 10114, + [SMALL_STATE(269)] = 10226, + [SMALL_STATE(270)] = 10338, + [SMALL_STATE(271)] = 10450, + [SMALL_STATE(272)] = 10564, + [SMALL_STATE(273)] = 10676, + [SMALL_STATE(274)] = 10792, + [SMALL_STATE(275)] = 10904, + [SMALL_STATE(276)] = 11016, + [SMALL_STATE(277)] = 11128, + [SMALL_STATE(278)] = 11240, + [SMALL_STATE(279)] = 11352, + [SMALL_STATE(280)] = 11464, + [SMALL_STATE(281)] = 11578, + [SMALL_STATE(282)] = 11690, + [SMALL_STATE(283)] = 11806, + [SMALL_STATE(284)] = 11918, + [SMALL_STATE(285)] = 12030, + [SMALL_STATE(286)] = 12142, + [SMALL_STATE(287)] = 12254, + [SMALL_STATE(288)] = 12366, + [SMALL_STATE(289)] = 12480, + [SMALL_STATE(290)] = 12594, + [SMALL_STATE(291)] = 12706, + [SMALL_STATE(292)] = 12820, + [SMALL_STATE(293)] = 12932, + [SMALL_STATE(294)] = 13048, + [SMALL_STATE(295)] = 13160, + [SMALL_STATE(296)] = 13272, + [SMALL_STATE(297)] = 13384, + [SMALL_STATE(298)] = 13496, + [SMALL_STATE(299)] = 13608, + [SMALL_STATE(300)] = 13724, + [SMALL_STATE(301)] = 13838, + [SMALL_STATE(302)] = 13950, + [SMALL_STATE(303)] = 14066, + [SMALL_STATE(304)] = 14178, + [SMALL_STATE(305)] = 14290, + [SMALL_STATE(306)] = 14402, + [SMALL_STATE(307)] = 14514, + [SMALL_STATE(308)] = 14626, + [SMALL_STATE(309)] = 14740, + [SMALL_STATE(310)] = 14852, + [SMALL_STATE(311)] = 14964, + [SMALL_STATE(312)] = 15076, + [SMALL_STATE(313)] = 15188, + [SMALL_STATE(314)] = 15300, + [SMALL_STATE(315)] = 15412, + [SMALL_STATE(316)] = 15524, + [SMALL_STATE(317)] = 15638, + [SMALL_STATE(318)] = 15750, + [SMALL_STATE(319)] = 15862, + [SMALL_STATE(320)] = 15974, + [SMALL_STATE(321)] = 16086, + [SMALL_STATE(322)] = 16198, + [SMALL_STATE(323)] = 16310, + [SMALL_STATE(324)] = 16426, + [SMALL_STATE(325)] = 16538, + [SMALL_STATE(326)] = 16650, + [SMALL_STATE(327)] = 16762, + [SMALL_STATE(328)] = 16871, + [SMALL_STATE(329)] = 16980, + [SMALL_STATE(330)] = 17085, + [SMALL_STATE(331)] = 17182, + [SMALL_STATE(332)] = 17291, + [SMALL_STATE(333)] = 17400, + [SMALL_STATE(334)] = 17509, + [SMALL_STATE(335)] = 17618, + [SMALL_STATE(336)] = 17727, + [SMALL_STATE(337)] = 17836, + [SMALL_STATE(338)] = 17945, + [SMALL_STATE(339)] = 18050, + [SMALL_STATE(340)] = 18159, + [SMALL_STATE(341)] = 18268, + [SMALL_STATE(342)] = 18377, + [SMALL_STATE(343)] = 18486, + [SMALL_STATE(344)] = 18595, + [SMALL_STATE(345)] = 18704, + [SMALL_STATE(346)] = 18813, + [SMALL_STATE(347)] = 18922, + [SMALL_STATE(348)] = 19031, + [SMALL_STATE(349)] = 19140, + [SMALL_STATE(350)] = 19248, + [SMALL_STATE(351)] = 19356, + [SMALL_STATE(352)] = 19464, + [SMALL_STATE(353)] = 19570, + [SMALL_STATE(354)] = 19678, + [SMALL_STATE(355)] = 19786, + [SMALL_STATE(356)] = 19894, + [SMALL_STATE(357)] = 20002, + [SMALL_STATE(358)] = 20110, + [SMALL_STATE(359)] = 20216, + [SMALL_STATE(360)] = 20324, + [SMALL_STATE(361)] = 20432, + [SMALL_STATE(362)] = 20540, + [SMALL_STATE(363)] = 20648, + [SMALL_STATE(364)] = 20756, + [SMALL_STATE(365)] = 20864, + [SMALL_STATE(366)] = 20972, + [SMALL_STATE(367)] = 21080, + [SMALL_STATE(368)] = 21188, + [SMALL_STATE(369)] = 21294, + [SMALL_STATE(370)] = 21402, + [SMALL_STATE(371)] = 21510, + [SMALL_STATE(372)] = 21618, + [SMALL_STATE(373)] = 21725, + [SMALL_STATE(374)] = 21832, + [SMALL_STATE(375)] = 21939, + [SMALL_STATE(376)] = 22046, + [SMALL_STATE(377)] = 22153, + [SMALL_STATE(378)] = 22248, + [SMALL_STATE(379)] = 22355, + [SMALL_STATE(380)] = 22462, + [SMALL_STATE(381)] = 22569, + [SMALL_STATE(382)] = 22676, + [SMALL_STATE(383)] = 22783, + [SMALL_STATE(384)] = 22888, + [SMALL_STATE(385)] = 22993, + [SMALL_STATE(386)] = 23088, + [SMALL_STATE(387)] = 23195, + [SMALL_STATE(388)] = 23302, + [SMALL_STATE(389)] = 23407, + [SMALL_STATE(390)] = 23514, + [SMALL_STATE(391)] = 23621, + [SMALL_STATE(392)] = 23726, + [SMALL_STATE(393)] = 23833, + [SMALL_STATE(394)] = 23940, + [SMALL_STATE(395)] = 24045, + [SMALL_STATE(396)] = 24152, + [SMALL_STATE(397)] = 24259, + [SMALL_STATE(398)] = 24364, + [SMALL_STATE(399)] = 24449, + [SMALL_STATE(400)] = 24556, + [SMALL_STATE(401)] = 24663, + [SMALL_STATE(402)] = 24770, + [SMALL_STATE(403)] = 24877, + [SMALL_STATE(404)] = 24984, + [SMALL_STATE(405)] = 25091, + [SMALL_STATE(406)] = 25198, + [SMALL_STATE(407)] = 25305, + [SMALL_STATE(408)] = 25412, + [SMALL_STATE(409)] = 25519, + [SMALL_STATE(410)] = 25626, + [SMALL_STATE(411)] = 25733, + [SMALL_STATE(412)] = 25837, + [SMALL_STATE(413)] = 25939, + [SMALL_STATE(414)] = 26041, + [SMALL_STATE(415)] = 26143, + [SMALL_STATE(416)] = 26245, + [SMALL_STATE(417)] = 26347, + [SMALL_STATE(418)] = 26451, + [SMALL_STATE(419)] = 26553, + [SMALL_STATE(420)] = 26655, + [SMALL_STATE(421)] = 26757, + [SMALL_STATE(422)] = 26859, + [SMALL_STATE(423)] = 26953, + [SMALL_STATE(424)] = 27057, + [SMALL_STATE(425)] = 27159, + [SMALL_STATE(426)] = 27261, + [SMALL_STATE(427)] = 27363, + [SMALL_STATE(428)] = 27441, + [SMALL_STATE(429)] = 27545, + [SMALL_STATE(430)] = 27649, + [SMALL_STATE(431)] = 27751, + [SMALL_STATE(432)] = 27855, + [SMALL_STATE(433)] = 27957, + [SMALL_STATE(434)] = 28051, + [SMALL_STATE(435)] = 28153, + [SMALL_STATE(436)] = 28255, + [SMALL_STATE(437)] = 28359, + [SMALL_STATE(438)] = 28453, + [SMALL_STATE(439)] = 28547, + [SMALL_STATE(440)] = 28649, + [SMALL_STATE(441)] = 28753, + [SMALL_STATE(442)] = 28855, + [SMALL_STATE(443)] = 28957, + [SMALL_STATE(444)] = 29059, + [SMALL_STATE(445)] = 29161, + [SMALL_STATE(446)] = 29263, + [SMALL_STATE(447)] = 29365, + [SMALL_STATE(448)] = 29467, + [SMALL_STATE(449)] = 29569, + [SMALL_STATE(450)] = 29671, + [SMALL_STATE(451)] = 29775, + [SMALL_STATE(452)] = 29879, + [SMALL_STATE(453)] = 29983, + [SMALL_STATE(454)] = 30087, + [SMALL_STATE(455)] = 30191, + [SMALL_STATE(456)] = 30295, + [SMALL_STATE(457)] = 30399, + [SMALL_STATE(458)] = 30503, + [SMALL_STATE(459)] = 30607, + [SMALL_STATE(460)] = 30709, + [SMALL_STATE(461)] = 30805, + [SMALL_STATE(462)] = 30909, + [SMALL_STATE(463)] = 31013, + [SMALL_STATE(464)] = 31117, + [SMALL_STATE(465)] = 31221, + [SMALL_STATE(466)] = 31323, + [SMALL_STATE(467)] = 31425, + [SMALL_STATE(468)] = 31526, + [SMALL_STATE(469)] = 31627, + [SMALL_STATE(470)] = 31728, + [SMALL_STATE(471)] = 31829, + [SMALL_STATE(472)] = 31930, + [SMALL_STATE(473)] = 32031, + [SMALL_STATE(474)] = 32132, + [SMALL_STATE(475)] = 32207, + [SMALL_STATE(476)] = 32308, + [SMALL_STATE(477)] = 32409, + [SMALL_STATE(478)] = 32510, + [SMALL_STATE(479)] = 32611, + [SMALL_STATE(480)] = 32712, + [SMALL_STATE(481)] = 32813, + [SMALL_STATE(482)] = 32890, + [SMALL_STATE(483)] = 32991, + [SMALL_STATE(484)] = 33066, + [SMALL_STATE(485)] = 33167, + [SMALL_STATE(486)] = 33242, + [SMALL_STATE(487)] = 33340, + [SMALL_STATE(488)] = 33438, + [SMALL_STATE(489)] = 33510, + [SMALL_STATE(490)] = 33608, + [SMALL_STATE(491)] = 33706, + [SMALL_STATE(492)] = 33804, + [SMALL_STATE(493)] = 33902, + [SMALL_STATE(494)] = 34000, + [SMALL_STATE(495)] = 34098, + [SMALL_STATE(496)] = 34196, + [SMALL_STATE(497)] = 34294, + [SMALL_STATE(498)] = 34392, + [SMALL_STATE(499)] = 34490, + [SMALL_STATE(500)] = 34588, + [SMALL_STATE(501)] = 34686, + [SMALL_STATE(502)] = 34784, + [SMALL_STATE(503)] = 34856, + [SMALL_STATE(504)] = 34954, + [SMALL_STATE(505)] = 35052, + [SMALL_STATE(506)] = 35150, + [SMALL_STATE(507)] = 35248, + [SMALL_STATE(508)] = 35346, + [SMALL_STATE(509)] = 35444, + [SMALL_STATE(510)] = 35542, + [SMALL_STATE(511)] = 35640, + [SMALL_STATE(512)] = 35738, + [SMALL_STATE(513)] = 35836, + [SMALL_STATE(514)] = 35934, + [SMALL_STATE(515)] = 36032, + [SMALL_STATE(516)] = 36104, + [SMALL_STATE(517)] = 36202, + [SMALL_STATE(518)] = 36300, + [SMALL_STATE(519)] = 36398, + [SMALL_STATE(520)] = 36496, + [SMALL_STATE(521)] = 36594, + [SMALL_STATE(522)] = 36692, + [SMALL_STATE(523)] = 36790, + [SMALL_STATE(524)] = 36888, + [SMALL_STATE(525)] = 36986, + [SMALL_STATE(526)] = 37084, + [SMALL_STATE(527)] = 37182, + [SMALL_STATE(528)] = 37280, + [SMALL_STATE(529)] = 37378, + [SMALL_STATE(530)] = 37476, + [SMALL_STATE(531)] = 37574, + [SMALL_STATE(532)] = 37672, + [SMALL_STATE(533)] = 37770, + [SMALL_STATE(534)] = 37868, + [SMALL_STATE(535)] = 37966, + [SMALL_STATE(536)] = 38064, + [SMALL_STATE(537)] = 38162, + [SMALL_STATE(538)] = 38260, + [SMALL_STATE(539)] = 38358, + [SMALL_STATE(540)] = 38456, + [SMALL_STATE(541)] = 38554, + [SMALL_STATE(542)] = 38652, + [SMALL_STATE(543)] = 38750, + [SMALL_STATE(544)] = 38848, + [SMALL_STATE(545)] = 38946, + [SMALL_STATE(546)] = 39044, + [SMALL_STATE(547)] = 39142, + [SMALL_STATE(548)] = 39240, + [SMALL_STATE(549)] = 39338, + [SMALL_STATE(550)] = 39436, + [SMALL_STATE(551)] = 39536, + [SMALL_STATE(552)] = 39634, + [SMALL_STATE(553)] = 39732, + [SMALL_STATE(554)] = 39830, + [SMALL_STATE(555)] = 39928, + [SMALL_STATE(556)] = 40026, + [SMALL_STATE(557)] = 40124, + [SMALL_STATE(558)] = 40222, + [SMALL_STATE(559)] = 40320, + [SMALL_STATE(560)] = 40418, + [SMALL_STATE(561)] = 40516, + [SMALL_STATE(562)] = 40614, + [SMALL_STATE(563)] = 40712, + [SMALL_STATE(564)] = 40810, + [SMALL_STATE(565)] = 40908, + [SMALL_STATE(566)] = 41006, + [SMALL_STATE(567)] = 41106, + [SMALL_STATE(568)] = 41204, + [SMALL_STATE(569)] = 41302, + [SMALL_STATE(570)] = 41400, + [SMALL_STATE(571)] = 41498, + [SMALL_STATE(572)] = 41596, + [SMALL_STATE(573)] = 41694, + [SMALL_STATE(574)] = 41792, + [SMALL_STATE(575)] = 41892, + [SMALL_STATE(576)] = 41990, + [SMALL_STATE(577)] = 42062, + [SMALL_STATE(578)] = 42134, + [SMALL_STATE(579)] = 42232, + [SMALL_STATE(580)] = 42332, + [SMALL_STATE(581)] = 42430, + [SMALL_STATE(582)] = 42530, + [SMALL_STATE(583)] = 42628, + [SMALL_STATE(584)] = 42726, + [SMALL_STATE(585)] = 42824, + [SMALL_STATE(586)] = 42922, + [SMALL_STATE(587)] = 43020, + [SMALL_STATE(588)] = 43120, + [SMALL_STATE(589)] = 43218, + [SMALL_STATE(590)] = 43316, + [SMALL_STATE(591)] = 43414, + [SMALL_STATE(592)] = 43512, + [SMALL_STATE(593)] = 43610, + [SMALL_STATE(594)] = 43708, + [SMALL_STATE(595)] = 43806, + [SMALL_STATE(596)] = 43904, + [SMALL_STATE(597)] = 44002, + [SMALL_STATE(598)] = 44074, + [SMALL_STATE(599)] = 44172, + [SMALL_STATE(600)] = 44270, + [SMALL_STATE(601)] = 44368, + [SMALL_STATE(602)] = 44440, + [SMALL_STATE(603)] = 44538, + [SMALL_STATE(604)] = 44610, + [SMALL_STATE(605)] = 44708, + [SMALL_STATE(606)] = 44806, + [SMALL_STATE(607)] = 44904, + [SMALL_STATE(608)] = 45002, + [SMALL_STATE(609)] = 45100, + [SMALL_STATE(610)] = 45198, + [SMALL_STATE(611)] = 45296, + [SMALL_STATE(612)] = 45394, + [SMALL_STATE(613)] = 45467, + [SMALL_STATE(614)] = 45529, + [SMALL_STATE(615)] = 45597, + [SMALL_STATE(616)] = 45665, + [SMALL_STATE(617)] = 45731, + [SMALL_STATE(618)] = 45797, + [SMALL_STATE(619)] = 45859, + [SMALL_STATE(620)] = 45927, + [SMALL_STATE(621)] = 45995, + [SMALL_STATE(622)] = 46063, + [SMALL_STATE(623)] = 46131, + [SMALL_STATE(624)] = 46199, + [SMALL_STATE(625)] = 46267, + [SMALL_STATE(626)] = 46333, + [SMALL_STATE(627)] = 46401, + [SMALL_STATE(628)] = 46469, + [SMALL_STATE(629)] = 46532, + [SMALL_STATE(630)] = 46595, + [SMALL_STATE(631)] = 46652, + [SMALL_STATE(632)] = 46709, + [SMALL_STATE(633)] = 46766, + [SMALL_STATE(634)] = 46831, + [SMALL_STATE(635)] = 46894, + [SMALL_STATE(636)] = 46951, + [SMALL_STATE(637)] = 47014, + [SMALL_STATE(638)] = 47071, + [SMALL_STATE(639)] = 47132, + [SMALL_STATE(640)] = 47189, + [SMALL_STATE(641)] = 47246, + [SMALL_STATE(642)] = 47303, + [SMALL_STATE(643)] = 47360, + [SMALL_STATE(644)] = 47417, + [SMALL_STATE(645)] = 47480, + [SMALL_STATE(646)] = 47537, + [SMALL_STATE(647)] = 47600, + [SMALL_STATE(648)] = 47657, + [SMALL_STATE(649)] = 47720, + [SMALL_STATE(650)] = 47783, + [SMALL_STATE(651)] = 47846, + [SMALL_STATE(652)] = 47903, + [SMALL_STATE(653)] = 47966, + [SMALL_STATE(654)] = 48023, + [SMALL_STATE(655)] = 48084, + [SMALL_STATE(656)] = 48141, + [SMALL_STATE(657)] = 48202, + [SMALL_STATE(658)] = 48259, + [SMALL_STATE(659)] = 48316, + [SMALL_STATE(660)] = 48372, + [SMALL_STATE(661)] = 48428, + [SMALL_STATE(662)] = 48484, + [SMALL_STATE(663)] = 48540, + [SMALL_STATE(664)] = 48596, + [SMALL_STATE(665)] = 48652, + [SMALL_STATE(666)] = 48708, + [SMALL_STATE(667)] = 48764, + [SMALL_STATE(668)] = 48820, + [SMALL_STATE(669)] = 48912, + [SMALL_STATE(670)] = 48968, + [SMALL_STATE(671)] = 49024, + [SMALL_STATE(672)] = 49080, + [SMALL_STATE(673)] = 49136, + [SMALL_STATE(674)] = 49192, + [SMALL_STATE(675)] = 49248, + [SMALL_STATE(676)] = 49304, + [SMALL_STATE(677)] = 49360, + [SMALL_STATE(678)] = 49416, + [SMALL_STATE(679)] = 49472, + [SMALL_STATE(680)] = 49528, + [SMALL_STATE(681)] = 49620, + [SMALL_STATE(682)] = 49676, + [SMALL_STATE(683)] = 49732, + [SMALL_STATE(684)] = 49788, + [SMALL_STATE(685)] = 49844, + [SMALL_STATE(686)] = 49900, + [SMALL_STATE(687)] = 49956, + [SMALL_STATE(688)] = 50012, + [SMALL_STATE(689)] = 50068, + [SMALL_STATE(690)] = 50124, + [SMALL_STATE(691)] = 50180, + [SMALL_STATE(692)] = 50236, + [SMALL_STATE(693)] = 50292, + [SMALL_STATE(694)] = 50348, + [SMALL_STATE(695)] = 50404, + [SMALL_STATE(696)] = 50460, + [SMALL_STATE(697)] = 50516, + [SMALL_STATE(698)] = 50575, + [SMALL_STATE(699)] = 50634, + [SMALL_STATE(700)] = 50693, + [SMALL_STATE(701)] = 50748, + [SMALL_STATE(702)] = 50807, + [SMALL_STATE(703)] = 50866, + [SMALL_STATE(704)] = 50925, + [SMALL_STATE(705)] = 50984, + [SMALL_STATE(706)] = 51043, + [SMALL_STATE(707)] = 51102, + [SMALL_STATE(708)] = 51161, + [SMALL_STATE(709)] = 51216, + [SMALL_STATE(710)] = 51275, + [SMALL_STATE(711)] = 51330, + [SMALL_STATE(712)] = 51385, + [SMALL_STATE(713)] = 51444, + [SMALL_STATE(714)] = 51503, + [SMALL_STATE(715)] = 51562, + [SMALL_STATE(716)] = 51621, + [SMALL_STATE(717)] = 51676, + [SMALL_STATE(718)] = 51735, + [SMALL_STATE(719)] = 51794, + [SMALL_STATE(720)] = 51853, + [SMALL_STATE(721)] = 51912, + [SMALL_STATE(722)] = 51967, + [SMALL_STATE(723)] = 52026, + [SMALL_STATE(724)] = 52080, + [SMALL_STATE(725)] = 52134, + [SMALL_STATE(726)] = 52188, + [SMALL_STATE(727)] = 52280, + [SMALL_STATE(728)] = 52334, + [SMALL_STATE(729)] = 52426, + [SMALL_STATE(730)] = 52479, + [SMALL_STATE(731)] = 52568, + [SMALL_STATE(732)] = 52621, + [SMALL_STATE(733)] = 52674, + [SMALL_STATE(734)] = 52727, + [SMALL_STATE(735)] = 52780, + [SMALL_STATE(736)] = 52833, + [SMALL_STATE(737)] = 52886, + [SMALL_STATE(738)] = 52939, + [SMALL_STATE(739)] = 52992, + [SMALL_STATE(740)] = 53045, + [SMALL_STATE(741)] = 53098, + [SMALL_STATE(742)] = 53151, + [SMALL_STATE(743)] = 53204, + [SMALL_STATE(744)] = 53257, + [SMALL_STATE(745)] = 53310, + [SMALL_STATE(746)] = 53363, + [SMALL_STATE(747)] = 53416, + [SMALL_STATE(748)] = 53469, + [SMALL_STATE(749)] = 53558, + [SMALL_STATE(750)] = 53611, + [SMALL_STATE(751)] = 53700, + [SMALL_STATE(752)] = 53753, + [SMALL_STATE(753)] = 53806, + [SMALL_STATE(754)] = 53859, + [SMALL_STATE(755)] = 53912, + [SMALL_STATE(756)] = 53965, + [SMALL_STATE(757)] = 54018, + [SMALL_STATE(758)] = 54071, + [SMALL_STATE(759)] = 54124, + [SMALL_STATE(760)] = 54177, + [SMALL_STATE(761)] = 54230, + [SMALL_STATE(762)] = 54283, + [SMALL_STATE(763)] = 54336, + [SMALL_STATE(764)] = 54389, + [SMALL_STATE(765)] = 54442, + [SMALL_STATE(766)] = 54495, + [SMALL_STATE(767)] = 54548, + [SMALL_STATE(768)] = 54601, + [SMALL_STATE(769)] = 54654, + [SMALL_STATE(770)] = 54707, + [SMALL_STATE(771)] = 54760, + [SMALL_STATE(772)] = 54813, + [SMALL_STATE(773)] = 54866, + [SMALL_STATE(774)] = 54919, + [SMALL_STATE(775)] = 54972, + [SMALL_STATE(776)] = 55025, + [SMALL_STATE(777)] = 55078, + [SMALL_STATE(778)] = 55131, + [SMALL_STATE(779)] = 55184, + [SMALL_STATE(780)] = 55237, + [SMALL_STATE(781)] = 55290, + [SMALL_STATE(782)] = 55343, + [SMALL_STATE(783)] = 55396, + [SMALL_STATE(784)] = 55449, + [SMALL_STATE(785)] = 55502, + [SMALL_STATE(786)] = 55555, + [SMALL_STATE(787)] = 55608, + [SMALL_STATE(788)] = 55661, + [SMALL_STATE(789)] = 55714, + [SMALL_STATE(790)] = 55803, + [SMALL_STATE(791)] = 55856, + [SMALL_STATE(792)] = 55945, + [SMALL_STATE(793)] = 55998, + [SMALL_STATE(794)] = 56051, + [SMALL_STATE(795)] = 56104, + [SMALL_STATE(796)] = 56157, + [SMALL_STATE(797)] = 56210, + [SMALL_STATE(798)] = 56263, + [SMALL_STATE(799)] = 56352, + [SMALL_STATE(800)] = 56405, + [SMALL_STATE(801)] = 56458, + [SMALL_STATE(802)] = 56511, + [SMALL_STATE(803)] = 56564, + [SMALL_STATE(804)] = 56617, + [SMALL_STATE(805)] = 56670, + [SMALL_STATE(806)] = 56723, + [SMALL_STATE(807)] = 56812, + [SMALL_STATE(808)] = 56865, + [SMALL_STATE(809)] = 56918, + [SMALL_STATE(810)] = 56971, + [SMALL_STATE(811)] = 57024, + [SMALL_STATE(812)] = 57077, + [SMALL_STATE(813)] = 57130, + [SMALL_STATE(814)] = 57183, + [SMALL_STATE(815)] = 57236, + [SMALL_STATE(816)] = 57289, + [SMALL_STATE(817)] = 57342, + [SMALL_STATE(818)] = 57395, + [SMALL_STATE(819)] = 57448, + [SMALL_STATE(820)] = 57501, + [SMALL_STATE(821)] = 57554, + [SMALL_STATE(822)] = 57607, + [SMALL_STATE(823)] = 57660, + [SMALL_STATE(824)] = 57713, + [SMALL_STATE(825)] = 57802, + [SMALL_STATE(826)] = 57855, + [SMALL_STATE(827)] = 57944, + [SMALL_STATE(828)] = 57997, + [SMALL_STATE(829)] = 58086, + [SMALL_STATE(830)] = 58139, + [SMALL_STATE(831)] = 58228, + [SMALL_STATE(832)] = 58317, + [SMALL_STATE(833)] = 58370, + [SMALL_STATE(834)] = 58423, + [SMALL_STATE(835)] = 58476, + [SMALL_STATE(836)] = 58529, + [SMALL_STATE(837)] = 58582, + [SMALL_STATE(838)] = 58635, + [SMALL_STATE(839)] = 58688, + [SMALL_STATE(840)] = 58741, + [SMALL_STATE(841)] = 58794, + [SMALL_STATE(842)] = 58847, + [SMALL_STATE(843)] = 58900, + [SMALL_STATE(844)] = 58989, + [SMALL_STATE(845)] = 59042, + [SMALL_STATE(846)] = 59131, + [SMALL_STATE(847)] = 59184, + [SMALL_STATE(848)] = 59237, + [SMALL_STATE(849)] = 59290, + [SMALL_STATE(850)] = 59379, + [SMALL_STATE(851)] = 59468, + [SMALL_STATE(852)] = 59521, + [SMALL_STATE(853)] = 59574, + [SMALL_STATE(854)] = 59660, + [SMALL_STATE(855)] = 59746, + [SMALL_STATE(856)] = 59832, + [SMALL_STATE(857)] = 59918, + [SMALL_STATE(858)] = 60004, + [SMALL_STATE(859)] = 60090, + [SMALL_STATE(860)] = 60173, + [SMALL_STATE(861)] = 60256, + [SMALL_STATE(862)] = 60334, + [SMALL_STATE(863)] = 60412, + [SMALL_STATE(864)] = 60490, + [SMALL_STATE(865)] = 60568, + [SMALL_STATE(866)] = 60654, + [SMALL_STATE(867)] = 60732, + [SMALL_STATE(868)] = 60810, + [SMALL_STATE(869)] = 60888, + [SMALL_STATE(870)] = 60966, + [SMALL_STATE(871)] = 61041, + [SMALL_STATE(872)] = 61116, + [SMALL_STATE(873)] = 61191, + [SMALL_STATE(874)] = 61266, + [SMALL_STATE(875)] = 61341, + [SMALL_STATE(876)] = 61416, + [SMALL_STATE(877)] = 61491, + [SMALL_STATE(878)] = 61570, + [SMALL_STATE(879)] = 61645, + [SMALL_STATE(880)] = 61720, + [SMALL_STATE(881)] = 61795, + [SMALL_STATE(882)] = 61870, + [SMALL_STATE(883)] = 61949, + [SMALL_STATE(884)] = 62024, + [SMALL_STATE(885)] = 62099, + [SMALL_STATE(886)] = 62174, + [SMALL_STATE(887)] = 62249, + [SMALL_STATE(888)] = 62324, + [SMALL_STATE(889)] = 62399, + [SMALL_STATE(890)] = 62478, + [SMALL_STATE(891)] = 62553, + [SMALL_STATE(892)] = 62628, + [SMALL_STATE(893)] = 62703, + [SMALL_STATE(894)] = 62778, + [SMALL_STATE(895)] = 62853, + [SMALL_STATE(896)] = 62928, + [SMALL_STATE(897)] = 63007, + [SMALL_STATE(898)] = 63082, + [SMALL_STATE(899)] = 63157, + [SMALL_STATE(900)] = 63232, + [SMALL_STATE(901)] = 63307, + [SMALL_STATE(902)] = 63382, + [SMALL_STATE(903)] = 63457, + [SMALL_STATE(904)] = 63532, + [SMALL_STATE(905)] = 63611, + [SMALL_STATE(906)] = 63686, + [SMALL_STATE(907)] = 63761, + [SMALL_STATE(908)] = 63836, + [SMALL_STATE(909)] = 63911, + [SMALL_STATE(910)] = 63986, + [SMALL_STATE(911)] = 64061, + [SMALL_STATE(912)] = 64136, + [SMALL_STATE(913)] = 64211, + [SMALL_STATE(914)] = 64286, + [SMALL_STATE(915)] = 64361, + [SMALL_STATE(916)] = 64436, + [SMALL_STATE(917)] = 64511, + [SMALL_STATE(918)] = 64590, + [SMALL_STATE(919)] = 64665, + [SMALL_STATE(920)] = 64740, + [SMALL_STATE(921)] = 64815, + [SMALL_STATE(922)] = 64890, + [SMALL_STATE(923)] = 64969, + [SMALL_STATE(924)] = 65048, + [SMALL_STATE(925)] = 65123, + [SMALL_STATE(926)] = 65202, + [SMALL_STATE(927)] = 65281, + [SMALL_STATE(928)] = 65360, + [SMALL_STATE(929)] = 65435, + [SMALL_STATE(930)] = 65510, + [SMALL_STATE(931)] = 65595, + [SMALL_STATE(932)] = 65670, + [SMALL_STATE(933)] = 65745, + [SMALL_STATE(934)] = 65820, + [SMALL_STATE(935)] = 65895, + [SMALL_STATE(936)] = 65970, + [SMALL_STATE(937)] = 66045, + [SMALL_STATE(938)] = 66120, + [SMALL_STATE(939)] = 66195, + [SMALL_STATE(940)] = 66274, + [SMALL_STATE(941)] = 66349, + [SMALL_STATE(942)] = 66428, + [SMALL_STATE(943)] = 66503, + [SMALL_STATE(944)] = 66578, + [SMALL_STATE(945)] = 66653, + [SMALL_STATE(946)] = 66728, + [SMALL_STATE(947)] = 66803, + [SMALL_STATE(948)] = 66878, + [SMALL_STATE(949)] = 66963, + [SMALL_STATE(950)] = 67038, + [SMALL_STATE(951)] = 67113, + [SMALL_STATE(952)] = 67188, + [SMALL_STATE(953)] = 67267, + [SMALL_STATE(954)] = 67342, + [SMALL_STATE(955)] = 67421, + [SMALL_STATE(956)] = 67500, + [SMALL_STATE(957)] = 67579, + [SMALL_STATE(958)] = 67658, + [SMALL_STATE(959)] = 67733, + [SMALL_STATE(960)] = 67812, + [SMALL_STATE(961)] = 67887, + [SMALL_STATE(962)] = 67962, + [SMALL_STATE(963)] = 68037, + [SMALL_STATE(964)] = 68116, + [SMALL_STATE(965)] = 68168, + [SMALL_STATE(966)] = 68250, + [SMALL_STATE(967)] = 68302, + [SMALL_STATE(968)] = 68386, + [SMALL_STATE(969)] = 68470, + [SMALL_STATE(970)] = 68522, + [SMALL_STATE(971)] = 68606, + [SMALL_STATE(972)] = 68690, + [SMALL_STATE(973)] = 68741, + [SMALL_STATE(974)] = 68792, + [SMALL_STATE(975)] = 68843, + [SMALL_STATE(976)] = 68894, + [SMALL_STATE(977)] = 68951, + [SMALL_STATE(978)] = 69002, + [SMALL_STATE(979)] = 69059, + [SMALL_STATE(980)] = 69122, + [SMALL_STATE(981)] = 69193, + [SMALL_STATE(982)] = 69250, + [SMALL_STATE(983)] = 69311, + [SMALL_STATE(984)] = 69380, + [SMALL_STATE(985)] = 69447, + [SMALL_STATE(986)] = 69498, + [SMALL_STATE(987)] = 69563, + [SMALL_STATE(988)] = 69644, + [SMALL_STATE(989)] = 69701, + [SMALL_STATE(990)] = 69781, + [SMALL_STATE(991)] = 69827, + [SMALL_STATE(992)] = 69897, + [SMALL_STATE(993)] = 69953, + [SMALL_STATE(994)] = 70003, + [SMALL_STATE(995)] = 70063, + [SMALL_STATE(996)] = 70119, + [SMALL_STATE(997)] = 70169, + [SMALL_STATE(998)] = 70219, + [SMALL_STATE(999)] = 70269, + [SMALL_STATE(1000)] = 70319, + [SMALL_STATE(1001)] = 70365, + [SMALL_STATE(1002)] = 70415, + [SMALL_STATE(1003)] = 70495, + [SMALL_STATE(1004)] = 70545, + [SMALL_STATE(1005)] = 70595, + [SMALL_STATE(1006)] = 70661, + [SMALL_STATE(1007)] = 70711, + [SMALL_STATE(1008)] = 70757, + [SMALL_STATE(1009)] = 70807, + [SMALL_STATE(1010)] = 70853, + [SMALL_STATE(1011)] = 70901, + [SMALL_STATE(1012)] = 70951, + [SMALL_STATE(1013)] = 70997, + [SMALL_STATE(1014)] = 71047, + [SMALL_STATE(1015)] = 71127, + [SMALL_STATE(1016)] = 71173, + [SMALL_STATE(1017)] = 71241, + [SMALL_STATE(1018)] = 71289, + [SMALL_STATE(1019)] = 71345, + [SMALL_STATE(1020)] = 71391, + [SMALL_STATE(1021)] = 71447, + [SMALL_STATE(1022)] = 71503, + [SMALL_STATE(1023)] = 71565, + [SMALL_STATE(1024)] = 71635, + [SMALL_STATE(1025)] = 71681, + [SMALL_STATE(1026)] = 71737, + [SMALL_STATE(1027)] = 71797, + [SMALL_STATE(1028)] = 71865, + [SMALL_STATE(1029)] = 71931, + [SMALL_STATE(1030)] = 71979, + [SMALL_STATE(1031)] = 72043, + [SMALL_STATE(1032)] = 72099, + [SMALL_STATE(1033)] = 72161, + [SMALL_STATE(1034)] = 72217, + [SMALL_STATE(1035)] = 72263, + [SMALL_STATE(1036)] = 72327, + [SMALL_STATE(1037)] = 72372, + [SMALL_STATE(1038)] = 72427, + [SMALL_STATE(1039)] = 72472, + [SMALL_STATE(1040)] = 72523, + [SMALL_STATE(1041)] = 72568, + [SMALL_STATE(1042)] = 72623, + [SMALL_STATE(1043)] = 72678, + [SMALL_STATE(1044)] = 72739, + [SMALL_STATE(1045)] = 72784, + [SMALL_STATE(1046)] = 72833, + [SMALL_STATE(1047)] = 72882, + [SMALL_STATE(1048)] = 72951, + [SMALL_STATE(1049)] = 73006, + [SMALL_STATE(1050)] = 73065, + [SMALL_STATE(1051)] = 73132, + [SMALL_STATE(1052)] = 73177, + [SMALL_STATE(1053)] = 73226, + [SMALL_STATE(1054)] = 73275, + [SMALL_STATE(1055)] = 73320, + [SMALL_STATE(1056)] = 73365, + [SMALL_STATE(1057)] = 73420, + [SMALL_STATE(1058)] = 73475, + [SMALL_STATE(1059)] = 73520, + [SMALL_STATE(1060)] = 73569, + [SMALL_STATE(1061)] = 73624, + [SMALL_STATE(1062)] = 73669, + [SMALL_STATE(1063)] = 73714, + [SMALL_STATE(1064)] = 73759, + [SMALL_STATE(1065)] = 73804, + [SMALL_STATE(1066)] = 73853, + [SMALL_STATE(1067)] = 73918, + [SMALL_STATE(1068)] = 73981, + [SMALL_STATE(1069)] = 74028, + [SMALL_STATE(1070)] = 74073, + [SMALL_STATE(1071)] = 74118, + [SMALL_STATE(1072)] = 74173, + [SMALL_STATE(1073)] = 74234, + [SMALL_STATE(1074)] = 74303, + [SMALL_STATE(1075)] = 74358, + [SMALL_STATE(1076)] = 74417, + [SMALL_STATE(1077)] = 74462, + [SMALL_STATE(1078)] = 74529, + [SMALL_STATE(1079)] = 74594, + [SMALL_STATE(1080)] = 74649, + [SMALL_STATE(1081)] = 74710, + [SMALL_STATE(1082)] = 74779, + [SMALL_STATE(1083)] = 74824, + [SMALL_STATE(1084)] = 74879, + [SMALL_STATE(1085)] = 74938, + [SMALL_STATE(1086)] = 75005, + [SMALL_STATE(1087)] = 75070, + [SMALL_STATE(1088)] = 75133, + [SMALL_STATE(1089)] = 75196, + [SMALL_STATE(1090)] = 75241, + [SMALL_STATE(1091)] = 75286, + [SMALL_STATE(1092)] = 75337, + [SMALL_STATE(1093)] = 75382, + [SMALL_STATE(1094)] = 75433, + [SMALL_STATE(1095)] = 75478, + [SMALL_STATE(1096)] = 75525, + [SMALL_STATE(1097)] = 75572, + [SMALL_STATE(1098)] = 75617, + [SMALL_STATE(1099)] = 75662, + [SMALL_STATE(1100)] = 75711, + [SMALL_STATE(1101)] = 75756, + [SMALL_STATE(1102)] = 75801, + [SMALL_STATE(1103)] = 75850, + [SMALL_STATE(1104)] = 75895, + [SMALL_STATE(1105)] = 75944, + [SMALL_STATE(1106)] = 75989, + [SMALL_STATE(1107)] = 76036, + [SMALL_STATE(1108)] = 76081, + [SMALL_STATE(1109)] = 76126, + [SMALL_STATE(1110)] = 76181, + [SMALL_STATE(1111)] = 76232, + [SMALL_STATE(1112)] = 76279, + [SMALL_STATE(1113)] = 76340, + [SMALL_STATE(1114)] = 76409, + [SMALL_STATE(1115)] = 76458, + [SMALL_STATE(1116)] = 76509, + [SMALL_STATE(1117)] = 76564, + [SMALL_STATE(1118)] = 76623, + [SMALL_STATE(1119)] = 76690, + [SMALL_STATE(1120)] = 76735, + [SMALL_STATE(1121)] = 76800, + [SMALL_STATE(1122)] = 76851, + [SMALL_STATE(1123)] = 76896, + [SMALL_STATE(1124)] = 76941, + [SMALL_STATE(1125)] = 76986, + [SMALL_STATE(1126)] = 77031, + [SMALL_STATE(1127)] = 77076, + [SMALL_STATE(1128)] = 77139, + [SMALL_STATE(1129)] = 77194, + [SMALL_STATE(1130)] = 77239, + [SMALL_STATE(1131)] = 77284, + [SMALL_STATE(1132)] = 77333, + [SMALL_STATE(1133)] = 77378, + [SMALL_STATE(1134)] = 77425, + [SMALL_STATE(1135)] = 77470, + [SMALL_STATE(1136)] = 77519, + [SMALL_STATE(1137)] = 77564, + [SMALL_STATE(1138)] = 77609, + [SMALL_STATE(1139)] = 77654, + [SMALL_STATE(1140)] = 77709, + [SMALL_STATE(1141)] = 77754, + [SMALL_STATE(1142)] = 77809, + [SMALL_STATE(1143)] = 77860, + [SMALL_STATE(1144)] = 77908, + [SMALL_STATE(1145)] = 77952, + [SMALL_STATE(1146)] = 77996, + [SMALL_STATE(1147)] = 78044, + [SMALL_STATE(1148)] = 78088, + [SMALL_STATE(1149)] = 78132, + [SMALL_STATE(1150)] = 78176, + [SMALL_STATE(1151)] = 78220, + [SMALL_STATE(1152)] = 78264, + [SMALL_STATE(1153)] = 78314, + [SMALL_STATE(1154)] = 78364, + [SMALL_STATE(1155)] = 78410, + [SMALL_STATE(1156)] = 78456, + [SMALL_STATE(1157)] = 78502, + [SMALL_STATE(1158)] = 78546, + [SMALL_STATE(1159)] = 78592, + [SMALL_STATE(1160)] = 78638, + [SMALL_STATE(1161)] = 78682, + [SMALL_STATE(1162)] = 78728, + [SMALL_STATE(1163)] = 78776, + [SMALL_STATE(1164)] = 78824, + [SMALL_STATE(1165)] = 78870, + [SMALL_STATE(1166)] = 78916, + [SMALL_STATE(1167)] = 78962, + [SMALL_STATE(1168)] = 79008, + [SMALL_STATE(1169)] = 79052, + [SMALL_STATE(1170)] = 79096, + [SMALL_STATE(1171)] = 79140, + [SMALL_STATE(1172)] = 79184, + [SMALL_STATE(1173)] = 79228, + [SMALL_STATE(1174)] = 79272, + [SMALL_STATE(1175)] = 79316, + [SMALL_STATE(1176)] = 79360, + [SMALL_STATE(1177)] = 79404, + [SMALL_STATE(1178)] = 79448, + [SMALL_STATE(1179)] = 79492, + [SMALL_STATE(1180)] = 79536, + [SMALL_STATE(1181)] = 79580, + [SMALL_STATE(1182)] = 79624, + [SMALL_STATE(1183)] = 79668, + [SMALL_STATE(1184)] = 79712, + [SMALL_STATE(1185)] = 79756, + [SMALL_STATE(1186)] = 79800, + [SMALL_STATE(1187)] = 79844, + [SMALL_STATE(1188)] = 79888, + [SMALL_STATE(1189)] = 79932, + [SMALL_STATE(1190)] = 79976, + [SMALL_STATE(1191)] = 80020, + [SMALL_STATE(1192)] = 80064, + [SMALL_STATE(1193)] = 80108, + [SMALL_STATE(1194)] = 80152, + [SMALL_STATE(1195)] = 80196, + [SMALL_STATE(1196)] = 80240, + [SMALL_STATE(1197)] = 80284, + [SMALL_STATE(1198)] = 80330, + [SMALL_STATE(1199)] = 80376, + [SMALL_STATE(1200)] = 80422, + [SMALL_STATE(1201)] = 80468, + [SMALL_STATE(1202)] = 80512, + [SMALL_STATE(1203)] = 80556, + [SMALL_STATE(1204)] = 80600, + [SMALL_STATE(1205)] = 80644, + [SMALL_STATE(1206)] = 80688, + [SMALL_STATE(1207)] = 80732, + [SMALL_STATE(1208)] = 80776, + [SMALL_STATE(1209)] = 80820, + [SMALL_STATE(1210)] = 80864, + [SMALL_STATE(1211)] = 80908, + [SMALL_STATE(1212)] = 80952, + [SMALL_STATE(1213)] = 80996, + [SMALL_STATE(1214)] = 81040, + [SMALL_STATE(1215)] = 81084, + [SMALL_STATE(1216)] = 81128, + [SMALL_STATE(1217)] = 81172, + [SMALL_STATE(1218)] = 81216, + [SMALL_STATE(1219)] = 81260, + [SMALL_STATE(1220)] = 81304, + [SMALL_STATE(1221)] = 81348, + [SMALL_STATE(1222)] = 81392, + [SMALL_STATE(1223)] = 81436, + [SMALL_STATE(1224)] = 81480, + [SMALL_STATE(1225)] = 81524, + [SMALL_STATE(1226)] = 81568, + [SMALL_STATE(1227)] = 81612, + [SMALL_STATE(1228)] = 81656, + [SMALL_STATE(1229)] = 81700, + [SMALL_STATE(1230)] = 81748, + [SMALL_STATE(1231)] = 81792, + [SMALL_STATE(1232)] = 81836, + [SMALL_STATE(1233)] = 81880, + [SMALL_STATE(1234)] = 81924, + [SMALL_STATE(1235)] = 81968, + [SMALL_STATE(1236)] = 82012, + [SMALL_STATE(1237)] = 82060, + [SMALL_STATE(1238)] = 82104, + [SMALL_STATE(1239)] = 82152, + [SMALL_STATE(1240)] = 82196, + [SMALL_STATE(1241)] = 82250, + [SMALL_STATE(1242)] = 82304, + [SMALL_STATE(1243)] = 82348, + [SMALL_STATE(1244)] = 82392, + [SMALL_STATE(1245)] = 82436, + [SMALL_STATE(1246)] = 82490, + [SMALL_STATE(1247)] = 82550, + [SMALL_STATE(1248)] = 82618, + [SMALL_STATE(1249)] = 82672, + [SMALL_STATE(1250)] = 82730, + [SMALL_STATE(1251)] = 82796, + [SMALL_STATE(1252)] = 82860, + [SMALL_STATE(1253)] = 82922, + [SMALL_STATE(1254)] = 82970, + [SMALL_STATE(1255)] = 83018, + [SMALL_STATE(1256)] = 83066, + [SMALL_STATE(1257)] = 83114, + [SMALL_STATE(1258)] = 83158, + [SMALL_STATE(1259)] = 83206, + [SMALL_STATE(1260)] = 83254, + [SMALL_STATE(1261)] = 83300, + [SMALL_STATE(1262)] = 83346, + [SMALL_STATE(1263)] = 83392, + [SMALL_STATE(1264)] = 83436, + [SMALL_STATE(1265)] = 83484, + [SMALL_STATE(1266)] = 83532, + [SMALL_STATE(1267)] = 83580, + [SMALL_STATE(1268)] = 83630, + [SMALL_STATE(1269)] = 83680, + [SMALL_STATE(1270)] = 83724, + [SMALL_STATE(1271)] = 83768, + [SMALL_STATE(1272)] = 83816, + [SMALL_STATE(1273)] = 83864, + [SMALL_STATE(1274)] = 83908, + [SMALL_STATE(1275)] = 83952, + [SMALL_STATE(1276)] = 83996, + [SMALL_STATE(1277)] = 84043, + [SMALL_STATE(1278)] = 84086, + [SMALL_STATE(1279)] = 84129, + [SMALL_STATE(1280)] = 84172, + [SMALL_STATE(1281)] = 84215, + [SMALL_STATE(1282)] = 84262, + [SMALL_STATE(1283)] = 84309, + [SMALL_STATE(1284)] = 84352, + [SMALL_STATE(1285)] = 84395, + [SMALL_STATE(1286)] = 84438, + [SMALL_STATE(1287)] = 84481, + [SMALL_STATE(1288)] = 84524, + [SMALL_STATE(1289)] = 84569, + [SMALL_STATE(1290)] = 84614, + [SMALL_STATE(1291)] = 84657, + [SMALL_STATE(1292)] = 84700, + [SMALL_STATE(1293)] = 84743, + [SMALL_STATE(1294)] = 84786, + [SMALL_STATE(1295)] = 84829, + [SMALL_STATE(1296)] = 84872, + [SMALL_STATE(1297)] = 84915, + [SMALL_STATE(1298)] = 84958, + [SMALL_STATE(1299)] = 85001, + [SMALL_STATE(1300)] = 85044, + [SMALL_STATE(1301)] = 85087, + [SMALL_STATE(1302)] = 85138, + [SMALL_STATE(1303)] = 85181, + [SMALL_STATE(1304)] = 85224, + [SMALL_STATE(1305)] = 85267, + [SMALL_STATE(1306)] = 85310, + [SMALL_STATE(1307)] = 85353, + [SMALL_STATE(1308)] = 85396, + [SMALL_STATE(1309)] = 85439, + [SMALL_STATE(1310)] = 85482, + [SMALL_STATE(1311)] = 85525, + [SMALL_STATE(1312)] = 85568, + [SMALL_STATE(1313)] = 85611, + [SMALL_STATE(1314)] = 85654, + [SMALL_STATE(1315)] = 85697, + [SMALL_STATE(1316)] = 85740, + [SMALL_STATE(1317)] = 85783, + [SMALL_STATE(1318)] = 85826, + [SMALL_STATE(1319)] = 85869, + [SMALL_STATE(1320)] = 85912, + [SMALL_STATE(1321)] = 85959, + [SMALL_STATE(1322)] = 86006, + [SMALL_STATE(1323)] = 86051, + [SMALL_STATE(1324)] = 86096, + [SMALL_STATE(1325)] = 86141, + [SMALL_STATE(1326)] = 86184, + [SMALL_STATE(1327)] = 86227, + [SMALL_STATE(1328)] = 86270, + [SMALL_STATE(1329)] = 86313, + [SMALL_STATE(1330)] = 86356, + [SMALL_STATE(1331)] = 86399, + [SMALL_STATE(1332)] = 86442, + [SMALL_STATE(1333)] = 86485, + [SMALL_STATE(1334)] = 86528, + [SMALL_STATE(1335)] = 86571, + [SMALL_STATE(1336)] = 86614, + [SMALL_STATE(1337)] = 86657, + [SMALL_STATE(1338)] = 86700, + [SMALL_STATE(1339)] = 86743, + [SMALL_STATE(1340)] = 86786, + [SMALL_STATE(1341)] = 86829, + [SMALL_STATE(1342)] = 86872, + [SMALL_STATE(1343)] = 86915, + [SMALL_STATE(1344)] = 86958, + [SMALL_STATE(1345)] = 87001, + [SMALL_STATE(1346)] = 87044, + [SMALL_STATE(1347)] = 87087, + [SMALL_STATE(1348)] = 87130, + [SMALL_STATE(1349)] = 87173, + [SMALL_STATE(1350)] = 87216, + [SMALL_STATE(1351)] = 87259, + [SMALL_STATE(1352)] = 87302, + [SMALL_STATE(1353)] = 87345, + [SMALL_STATE(1354)] = 87388, + [SMALL_STATE(1355)] = 87431, + [SMALL_STATE(1356)] = 87474, + [SMALL_STATE(1357)] = 87517, + [SMALL_STATE(1358)] = 87560, + [SMALL_STATE(1359)] = 87603, + [SMALL_STATE(1360)] = 87646, + [SMALL_STATE(1361)] = 87691, + [SMALL_STATE(1362)] = 87734, + [SMALL_STATE(1363)] = 87777, + [SMALL_STATE(1364)] = 87820, + [SMALL_STATE(1365)] = 87863, + [SMALL_STATE(1366)] = 87906, + [SMALL_STATE(1367)] = 87949, + [SMALL_STATE(1368)] = 87992, + [SMALL_STATE(1369)] = 88035, + [SMALL_STATE(1370)] = 88078, + [SMALL_STATE(1371)] = 88121, + [SMALL_STATE(1372)] = 88164, + [SMALL_STATE(1373)] = 88207, + [SMALL_STATE(1374)] = 88250, + [SMALL_STATE(1375)] = 88293, + [SMALL_STATE(1376)] = 88336, + [SMALL_STATE(1377)] = 88379, + [SMALL_STATE(1378)] = 88422, + [SMALL_STATE(1379)] = 88465, + [SMALL_STATE(1380)] = 88508, + [SMALL_STATE(1381)] = 88551, + [SMALL_STATE(1382)] = 88594, + [SMALL_STATE(1383)] = 88637, + [SMALL_STATE(1384)] = 88680, + [SMALL_STATE(1385)] = 88723, + [SMALL_STATE(1386)] = 88766, + [SMALL_STATE(1387)] = 88813, + [SMALL_STATE(1388)] = 88860, + [SMALL_STATE(1389)] = 88907, + [SMALL_STATE(1390)] = 88950, + [SMALL_STATE(1391)] = 88995, + [SMALL_STATE(1392)] = 89040, + [SMALL_STATE(1393)] = 89085, + [SMALL_STATE(1394)] = 89128, + [SMALL_STATE(1395)] = 89171, + [SMALL_STATE(1396)] = 89218, + [SMALL_STATE(1397)] = 89263, + [SMALL_STATE(1398)] = 89310, + [SMALL_STATE(1399)] = 89353, + [SMALL_STATE(1400)] = 89396, + [SMALL_STATE(1401)] = 89439, + [SMALL_STATE(1402)] = 89484, + [SMALL_STATE(1403)] = 89529, + [SMALL_STATE(1404)] = 89572, + [SMALL_STATE(1405)] = 89617, + [SMALL_STATE(1406)] = 89660, + [SMALL_STATE(1407)] = 89703, + [SMALL_STATE(1408)] = 89750, + [SMALL_STATE(1409)] = 89797, + [SMALL_STATE(1410)] = 89842, + [SMALL_STATE(1411)] = 89885, + [SMALL_STATE(1412)] = 89930, + [SMALL_STATE(1413)] = 89975, + [SMALL_STATE(1414)] = 90020, + [SMALL_STATE(1415)] = 90063, + [SMALL_STATE(1416)] = 90106, + [SMALL_STATE(1417)] = 90149, + [SMALL_STATE(1418)] = 90192, + [SMALL_STATE(1419)] = 90235, + [SMALL_STATE(1420)] = 90280, + [SMALL_STATE(1421)] = 90323, + [SMALL_STATE(1422)] = 90366, + [SMALL_STATE(1423)] = 90409, + [SMALL_STATE(1424)] = 90452, + [SMALL_STATE(1425)] = 90495, + [SMALL_STATE(1426)] = 90538, + [SMALL_STATE(1427)] = 90581, + [SMALL_STATE(1428)] = 90624, + [SMALL_STATE(1429)] = 90671, + [SMALL_STATE(1430)] = 90714, + [SMALL_STATE(1431)] = 90759, + [SMALL_STATE(1432)] = 90802, + [SMALL_STATE(1433)] = 90845, + [SMALL_STATE(1434)] = 90892, + [SMALL_STATE(1435)] = 90939, + [SMALL_STATE(1436)] = 90990, + [SMALL_STATE(1437)] = 91033, + [SMALL_STATE(1438)] = 91076, + [SMALL_STATE(1439)] = 91119, + [SMALL_STATE(1440)] = 91162, + [SMALL_STATE(1441)] = 91205, + [SMALL_STATE(1442)] = 91248, + [SMALL_STATE(1443)] = 91291, + [SMALL_STATE(1444)] = 91334, + [SMALL_STATE(1445)] = 91377, + [SMALL_STATE(1446)] = 91420, + [SMALL_STATE(1447)] = 91463, + [SMALL_STATE(1448)] = 91506, + [SMALL_STATE(1449)] = 91549, + [SMALL_STATE(1450)] = 91592, + [SMALL_STATE(1451)] = 91635, + [SMALL_STATE(1452)] = 91678, + [SMALL_STATE(1453)] = 91721, + [SMALL_STATE(1454)] = 91764, + [SMALL_STATE(1455)] = 91807, + [SMALL_STATE(1456)] = 91850, + [SMALL_STATE(1457)] = 91893, + [SMALL_STATE(1458)] = 91936, + [SMALL_STATE(1459)] = 91979, + [SMALL_STATE(1460)] = 92021, + [SMALL_STATE(1461)] = 92063, + [SMALL_STATE(1462)] = 92105, + [SMALL_STATE(1463)] = 92147, + [SMALL_STATE(1464)] = 92189, + [SMALL_STATE(1465)] = 92231, + [SMALL_STATE(1466)] = 92273, + [SMALL_STATE(1467)] = 92315, + [SMALL_STATE(1468)] = 92359, + [SMALL_STATE(1469)] = 92403, + [SMALL_STATE(1470)] = 92447, + [SMALL_STATE(1471)] = 92493, + [SMALL_STATE(1472)] = 92535, + [SMALL_STATE(1473)] = 92581, + [SMALL_STATE(1474)] = 92627, + [SMALL_STATE(1475)] = 92671, + [SMALL_STATE(1476)] = 92713, + [SMALL_STATE(1477)] = 92755, + [SMALL_STATE(1478)] = 92799, + [SMALL_STATE(1479)] = 92841, + [SMALL_STATE(1480)] = 92885, + [SMALL_STATE(1481)] = 92927, + [SMALL_STATE(1482)] = 92969, + [SMALL_STATE(1483)] = 93011, + [SMALL_STATE(1484)] = 93053, + [SMALL_STATE(1485)] = 93095, + [SMALL_STATE(1486)] = 93137, + [SMALL_STATE(1487)] = 93179, + [SMALL_STATE(1488)] = 93221, + [SMALL_STATE(1489)] = 93271, + [SMALL_STATE(1490)] = 93313, + [SMALL_STATE(1491)] = 93355, + [SMALL_STATE(1492)] = 93397, + [SMALL_STATE(1493)] = 93439, + [SMALL_STATE(1494)] = 93481, + [SMALL_STATE(1495)] = 93523, + [SMALL_STATE(1496)] = 93565, + [SMALL_STATE(1497)] = 93607, + [SMALL_STATE(1498)] = 93651, + [SMALL_STATE(1499)] = 93693, + [SMALL_STATE(1500)] = 93741, + [SMALL_STATE(1501)] = 93783, + [SMALL_STATE(1502)] = 93825, + [SMALL_STATE(1503)] = 93867, + [SMALL_STATE(1504)] = 93909, + [SMALL_STATE(1505)] = 93951, + [SMALL_STATE(1506)] = 93995, + [SMALL_STATE(1507)] = 94039, + [SMALL_STATE(1508)] = 94081, + [SMALL_STATE(1509)] = 94123, + [SMALL_STATE(1510)] = 94165, + [SMALL_STATE(1511)] = 94207, + [SMALL_STATE(1512)] = 94250, + [SMALL_STATE(1513)] = 94293, + [SMALL_STATE(1514)] = 94336, + [SMALL_STATE(1515)] = 94377, + [SMALL_STATE(1516)] = 94418, + [SMALL_STATE(1517)] = 94459, + [SMALL_STATE(1518)] = 94500, + [SMALL_STATE(1519)] = 94541, + [SMALL_STATE(1520)] = 94582, + [SMALL_STATE(1521)] = 94623, + [SMALL_STATE(1522)] = 94664, + [SMALL_STATE(1523)] = 94705, + [SMALL_STATE(1524)] = 94746, + [SMALL_STATE(1525)] = 94789, + [SMALL_STATE(1526)] = 94832, + [SMALL_STATE(1527)] = 94875, + [SMALL_STATE(1528)] = 94918, + [SMALL_STATE(1529)] = 94961, + [SMALL_STATE(1530)] = 95004, + [SMALL_STATE(1531)] = 95078, + [SMALL_STATE(1532)] = 95152, + [SMALL_STATE(1533)] = 95220, + [SMALL_STATE(1534)] = 95288, + [SMALL_STATE(1535)] = 95356, + [SMALL_STATE(1536)] = 95424, + [SMALL_STATE(1537)] = 95492, + [SMALL_STATE(1538)] = 95560, + [SMALL_STATE(1539)] = 95628, + [SMALL_STATE(1540)] = 95696, + [SMALL_STATE(1541)] = 95764, + [SMALL_STATE(1542)] = 95832, + [SMALL_STATE(1543)] = 95900, + [SMALL_STATE(1544)] = 95968, + [SMALL_STATE(1545)] = 96036, + [SMALL_STATE(1546)] = 96104, + [SMALL_STATE(1547)] = 96172, + [SMALL_STATE(1548)] = 96240, + [SMALL_STATE(1549)] = 96308, + [SMALL_STATE(1550)] = 96376, + [SMALL_STATE(1551)] = 96444, + [SMALL_STATE(1552)] = 96512, + [SMALL_STATE(1553)] = 96580, + [SMALL_STATE(1554)] = 96648, + [SMALL_STATE(1555)] = 96716, + [SMALL_STATE(1556)] = 96784, + [SMALL_STATE(1557)] = 96852, + [SMALL_STATE(1558)] = 96920, + [SMALL_STATE(1559)] = 96988, + [SMALL_STATE(1560)] = 97056, + [SMALL_STATE(1561)] = 97124, + [SMALL_STATE(1562)] = 97192, + [SMALL_STATE(1563)] = 97260, + [SMALL_STATE(1564)] = 97328, + [SMALL_STATE(1565)] = 97396, + [SMALL_STATE(1566)] = 97464, + [SMALL_STATE(1567)] = 97532, + [SMALL_STATE(1568)] = 97600, + [SMALL_STATE(1569)] = 97665, + [SMALL_STATE(1570)] = 97730, + [SMALL_STATE(1571)] = 97795, + [SMALL_STATE(1572)] = 97860, + [SMALL_STATE(1573)] = 97925, + [SMALL_STATE(1574)] = 97991, + [SMALL_STATE(1575)] = 98057, + [SMALL_STATE(1576)] = 98123, + [SMALL_STATE(1577)] = 98189, + [SMALL_STATE(1578)] = 98255, + [SMALL_STATE(1579)] = 98321, + [SMALL_STATE(1580)] = 98387, + [SMALL_STATE(1581)] = 98453, + [SMALL_STATE(1582)] = 98519, + [SMALL_STATE(1583)] = 98585, + [SMALL_STATE(1584)] = 98651, + [SMALL_STATE(1585)] = 98717, + [SMALL_STATE(1586)] = 98783, + [SMALL_STATE(1587)] = 98849, + [SMALL_STATE(1588)] = 98915, + [SMALL_STATE(1589)] = 98981, + [SMALL_STATE(1590)] = 99047, + [SMALL_STATE(1591)] = 99113, + [SMALL_STATE(1592)] = 99179, + [SMALL_STATE(1593)] = 99245, + [SMALL_STATE(1594)] = 99308, + [SMALL_STATE(1595)] = 99366, + [SMALL_STATE(1596)] = 99412, + [SMALL_STATE(1597)] = 99458, + [SMALL_STATE(1598)] = 99516, + [SMALL_STATE(1599)] = 99574, + [SMALL_STATE(1600)] = 99632, + [SMALL_STATE(1601)] = 99690, + [SMALL_STATE(1602)] = 99748, + [SMALL_STATE(1603)] = 99806, + [SMALL_STATE(1604)] = 99864, + [SMALL_STATE(1605)] = 99908, + [SMALL_STATE(1606)] = 99952, + [SMALL_STATE(1607)] = 99996, + [SMALL_STATE(1608)] = 100040, + [SMALL_STATE(1609)] = 100083, + [SMALL_STATE(1610)] = 100126, + [SMALL_STATE(1611)] = 100169, + [SMALL_STATE(1612)] = 100212, + [SMALL_STATE(1613)] = 100253, + [SMALL_STATE(1614)] = 100294, + [SMALL_STATE(1615)] = 100336, + [SMALL_STATE(1616)] = 100368, + [SMALL_STATE(1617)] = 100410, + [SMALL_STATE(1618)] = 100442, + [SMALL_STATE(1619)] = 100474, + [SMALL_STATE(1620)] = 100506, + [SMALL_STATE(1621)] = 100548, + [SMALL_STATE(1622)] = 100590, + [SMALL_STATE(1623)] = 100620, + [SMALL_STATE(1624)] = 100650, + [SMALL_STATE(1625)] = 100682, + [SMALL_STATE(1626)] = 100714, + [SMALL_STATE(1627)] = 100744, + [SMALL_STATE(1628)] = 100774, + [SMALL_STATE(1629)] = 100804, + [SMALL_STATE(1630)] = 100834, + [SMALL_STATE(1631)] = 100864, + [SMALL_STATE(1632)] = 100894, + [SMALL_STATE(1633)] = 100924, + [SMALL_STATE(1634)] = 100954, + [SMALL_STATE(1635)] = 101001, + [SMALL_STATE(1636)] = 101030, + [SMALL_STATE(1637)] = 101059, + [SMALL_STATE(1638)] = 101088, + [SMALL_STATE(1639)] = 101117, + [SMALL_STATE(1640)] = 101146, + [SMALL_STATE(1641)] = 101175, + [SMALL_STATE(1642)] = 101200, + [SMALL_STATE(1643)] = 101229, + [SMALL_STATE(1644)] = 101258, + [SMALL_STATE(1645)] = 101287, + [SMALL_STATE(1646)] = 101316, + [SMALL_STATE(1647)] = 101341, + [SMALL_STATE(1648)] = 101366, + [SMALL_STATE(1649)] = 101395, + [SMALL_STATE(1650)] = 101424, + [SMALL_STATE(1651)] = 101453, + [SMALL_STATE(1652)] = 101482, + [SMALL_STATE(1653)] = 101511, + [SMALL_STATE(1654)] = 101540, + [SMALL_STATE(1655)] = 101587, + [SMALL_STATE(1656)] = 101612, + [SMALL_STATE(1657)] = 101641, + [SMALL_STATE(1658)] = 101670, + [SMALL_STATE(1659)] = 101717, + [SMALL_STATE(1660)] = 101746, + [SMALL_STATE(1661)] = 101775, + [SMALL_STATE(1662)] = 101822, + [SMALL_STATE(1663)] = 101869, + [SMALL_STATE(1664)] = 101916, + [SMALL_STATE(1665)] = 101963, + [SMALL_STATE(1666)] = 102010, + [SMALL_STATE(1667)] = 102057, + [SMALL_STATE(1668)] = 102104, + [SMALL_STATE(1669)] = 102133, + [SMALL_STATE(1670)] = 102162, + [SMALL_STATE(1671)] = 102191, + [SMALL_STATE(1672)] = 102220, + [SMALL_STATE(1673)] = 102266, + [SMALL_STATE(1674)] = 102312, + [SMALL_STATE(1675)] = 102344, + [SMALL_STATE(1676)] = 102390, + [SMALL_STATE(1677)] = 102436, + [SMALL_STATE(1678)] = 102468, + [SMALL_STATE(1679)] = 102514, + [SMALL_STATE(1680)] = 102538, + [SMALL_STATE(1681)] = 102562, + [SMALL_STATE(1682)] = 102586, + [SMALL_STATE(1683)] = 102632, + [SMALL_STATE(1684)] = 102662, + [SMALL_STATE(1685)] = 102708, + [SMALL_STATE(1686)] = 102736, + [SMALL_STATE(1687)] = 102782, + [SMALL_STATE(1688)] = 102806, + [SMALL_STATE(1689)] = 102852, + [SMALL_STATE(1690)] = 102898, + [SMALL_STATE(1691)] = 102926, + [SMALL_STATE(1692)] = 102972, + [SMALL_STATE(1693)] = 103015, + [SMALL_STATE(1694)] = 103055, + [SMALL_STATE(1695)] = 103095, + [SMALL_STATE(1696)] = 103135, + [SMALL_STATE(1697)] = 103161, + [SMALL_STATE(1698)] = 103201, + [SMALL_STATE(1699)] = 103238, + [SMALL_STATE(1700)] = 103275, + [SMALL_STATE(1701)] = 103296, + [SMALL_STATE(1702)] = 103323, + [SMALL_STATE(1703)] = 103348, + [SMALL_STATE(1704)] = 103375, + [SMALL_STATE(1705)] = 103416, + [SMALL_STATE(1706)] = 103435, + [SMALL_STATE(1707)] = 103476, + [SMALL_STATE(1708)] = 103517, + [SMALL_STATE(1709)] = 103540, + [SMALL_STATE(1710)] = 103581, + [SMALL_STATE(1711)] = 103622, + [SMALL_STATE(1712)] = 103649, + [SMALL_STATE(1713)] = 103690, + [SMALL_STATE(1714)] = 103731, + [SMALL_STATE(1715)] = 103772, + [SMALL_STATE(1716)] = 103791, + [SMALL_STATE(1717)] = 103810, + [SMALL_STATE(1718)] = 103848, + [SMALL_STATE(1719)] = 103878, + [SMALL_STATE(1720)] = 103916, + [SMALL_STATE(1721)] = 103954, + [SMALL_STATE(1722)] = 103992, + [SMALL_STATE(1723)] = 104030, + [SMALL_STATE(1724)] = 104060, + [SMALL_STATE(1725)] = 104090, + [SMALL_STATE(1726)] = 104120, + [SMALL_STATE(1727)] = 104150, + [SMALL_STATE(1728)] = 104188, + [SMALL_STATE(1729)] = 104226, + [SMALL_STATE(1730)] = 104264, + [SMALL_STATE(1731)] = 104294, + [SMALL_STATE(1732)] = 104332, + [SMALL_STATE(1733)] = 104362, + [SMALL_STATE(1734)] = 104392, + [SMALL_STATE(1735)] = 104422, + [SMALL_STATE(1736)] = 104460, + [SMALL_STATE(1737)] = 104490, + [SMALL_STATE(1738)] = 104528, + [SMALL_STATE(1739)] = 104566, + [SMALL_STATE(1740)] = 104596, + [SMALL_STATE(1741)] = 104634, + [SMALL_STATE(1742)] = 104672, + [SMALL_STATE(1743)] = 104710, + [SMALL_STATE(1744)] = 104740, + [SMALL_STATE(1745)] = 104778, + [SMALL_STATE(1746)] = 104816, + [SMALL_STATE(1747)] = 104854, + [SMALL_STATE(1748)] = 104884, + [SMALL_STATE(1749)] = 104922, + [SMALL_STATE(1750)] = 104960, + [SMALL_STATE(1751)] = 104990, + [SMALL_STATE(1752)] = 105028, + [SMALL_STATE(1753)] = 105058, + [SMALL_STATE(1754)] = 105088, + [SMALL_STATE(1755)] = 105126, + [SMALL_STATE(1756)] = 105164, + [SMALL_STATE(1757)] = 105194, + [SMALL_STATE(1758)] = 105232, + [SMALL_STATE(1759)] = 105262, + [SMALL_STATE(1760)] = 105292, + [SMALL_STATE(1761)] = 105330, + [SMALL_STATE(1762)] = 105355, + [SMALL_STATE(1763)] = 105378, + [SMALL_STATE(1764)] = 105399, + [SMALL_STATE(1765)] = 105416, + [SMALL_STATE(1766)] = 105435, + [SMALL_STATE(1767)] = 105460, + [SMALL_STATE(1768)] = 105477, + [SMALL_STATE(1769)] = 105502, + [SMALL_STATE(1770)] = 105527, + [SMALL_STATE(1771)] = 105552, + [SMALL_STATE(1772)] = 105575, + [SMALL_STATE(1773)] = 105596, + [SMALL_STATE(1774)] = 105613, + [SMALL_STATE(1775)] = 105632, + [SMALL_STATE(1776)] = 105661, + [SMALL_STATE(1777)] = 105686, + [SMALL_STATE(1778)] = 105711, + [SMALL_STATE(1779)] = 105736, + [SMALL_STATE(1780)] = 105765, + [SMALL_STATE(1781)] = 105782, + [SMALL_STATE(1782)] = 105799, + [SMALL_STATE(1783)] = 105816, + [SMALL_STATE(1784)] = 105845, + [SMALL_STATE(1785)] = 105865, + [SMALL_STATE(1786)] = 105881, + [SMALL_STATE(1787)] = 105897, + [SMALL_STATE(1788)] = 105921, + [SMALL_STATE(1789)] = 105939, + [SMALL_STATE(1790)] = 105959, + [SMALL_STATE(1791)] = 105981, + [SMALL_STATE(1792)] = 106001, + [SMALL_STATE(1793)] = 106025, + [SMALL_STATE(1794)] = 106047, + [SMALL_STATE(1795)] = 106069, + [SMALL_STATE(1796)] = 106087, + [SMALL_STATE(1797)] = 106107, + [SMALL_STATE(1798)] = 106127, + [SMALL_STATE(1799)] = 106143, + [SMALL_STATE(1800)] = 106161, + [SMALL_STATE(1801)] = 106179, + [SMALL_STATE(1802)] = 106203, + [SMALL_STATE(1803)] = 106219, + [SMALL_STATE(1804)] = 106243, + [SMALL_STATE(1805)] = 106267, + [SMALL_STATE(1806)] = 106283, + [SMALL_STATE(1807)] = 106303, + [SMALL_STATE(1808)] = 106327, + [SMALL_STATE(1809)] = 106351, + [SMALL_STATE(1810)] = 106373, + [SMALL_STATE(1811)] = 106397, + [SMALL_STATE(1812)] = 106413, + [SMALL_STATE(1813)] = 106431, + [SMALL_STATE(1814)] = 106455, + [SMALL_STATE(1815)] = 106479, + [SMALL_STATE(1816)] = 106503, + [SMALL_STATE(1817)] = 106525, + [SMALL_STATE(1818)] = 106549, + [SMALL_STATE(1819)] = 106579, + [SMALL_STATE(1820)] = 106603, + [SMALL_STATE(1821)] = 106624, + [SMALL_STATE(1822)] = 106647, + [SMALL_STATE(1823)] = 106668, + [SMALL_STATE(1824)] = 106697, + [SMALL_STATE(1825)] = 106724, + [SMALL_STATE(1826)] = 106747, + [SMALL_STATE(1827)] = 106764, + [SMALL_STATE(1828)] = 106791, + [SMALL_STATE(1829)] = 106818, + [SMALL_STATE(1830)] = 106841, + [SMALL_STATE(1831)] = 106862, + [SMALL_STATE(1832)] = 106883, + [SMALL_STATE(1833)] = 106906, + [SMALL_STATE(1834)] = 106929, + [SMALL_STATE(1835)] = 106956, + [SMALL_STATE(1836)] = 106985, + [SMALL_STATE(1837)] = 107006, + [SMALL_STATE(1838)] = 107029, + [SMALL_STATE(1839)] = 107050, + [SMALL_STATE(1840)] = 107071, + [SMALL_STATE(1841)] = 107098, + [SMALL_STATE(1842)] = 107119, + [SMALL_STATE(1843)] = 107142, + [SMALL_STATE(1844)] = 107163, + [SMALL_STATE(1845)] = 107180, + [SMALL_STATE(1846)] = 107199, + [SMALL_STATE(1847)] = 107228, + [SMALL_STATE(1848)] = 107255, + [SMALL_STATE(1849)] = 107276, + [SMALL_STATE(1850)] = 107297, + [SMALL_STATE(1851)] = 107314, + [SMALL_STATE(1852)] = 107329, + [SMALL_STATE(1853)] = 107348, + [SMALL_STATE(1854)] = 107377, + [SMALL_STATE(1855)] = 107396, + [SMALL_STATE(1856)] = 107419, + [SMALL_STATE(1857)] = 107440, + [SMALL_STATE(1858)] = 107469, + [SMALL_STATE(1859)] = 107492, + [SMALL_STATE(1860)] = 107521, + [SMALL_STATE(1861)] = 107550, + [SMALL_STATE(1862)] = 107579, + [SMALL_STATE(1863)] = 107606, + [SMALL_STATE(1864)] = 107627, + [SMALL_STATE(1865)] = 107656, + [SMALL_STATE(1866)] = 107673, + [SMALL_STATE(1867)] = 107700, + [SMALL_STATE(1868)] = 107723, + [SMALL_STATE(1869)] = 107744, + [SMALL_STATE(1870)] = 107769, + [SMALL_STATE(1871)] = 107786, + [SMALL_STATE(1872)] = 107807, + [SMALL_STATE(1873)] = 107832, + [SMALL_STATE(1874)] = 107853, + [SMALL_STATE(1875)] = 107870, + [SMALL_STATE(1876)] = 107899, + [SMALL_STATE(1877)] = 107917, + [SMALL_STATE(1878)] = 107935, + [SMALL_STATE(1879)] = 107961, + [SMALL_STATE(1880)] = 107979, + [SMALL_STATE(1881)] = 107995, + [SMALL_STATE(1882)] = 108019, + [SMALL_STATE(1883)] = 108045, + [SMALL_STATE(1884)] = 108071, + [SMALL_STATE(1885)] = 108097, + [SMALL_STATE(1886)] = 108123, + [SMALL_STATE(1887)] = 108141, + [SMALL_STATE(1888)] = 108163, + [SMALL_STATE(1889)] = 108181, + [SMALL_STATE(1890)] = 108197, + [SMALL_STATE(1891)] = 108215, + [SMALL_STATE(1892)] = 108235, + [SMALL_STATE(1893)] = 108257, + [SMALL_STATE(1894)] = 108283, + [SMALL_STATE(1895)] = 108301, + [SMALL_STATE(1896)] = 108321, + [SMALL_STATE(1897)] = 108343, + [SMALL_STATE(1898)] = 108365, + [SMALL_STATE(1899)] = 108389, + [SMALL_STATE(1900)] = 108415, + [SMALL_STATE(1901)] = 108435, + [SMALL_STATE(1902)] = 108459, + [SMALL_STATE(1903)] = 108485, + [SMALL_STATE(1904)] = 108507, + [SMALL_STATE(1905)] = 108533, + [SMALL_STATE(1906)] = 108559, + [SMALL_STATE(1907)] = 108581, + [SMALL_STATE(1908)] = 108607, + [SMALL_STATE(1909)] = 108633, + [SMALL_STATE(1910)] = 108659, + [SMALL_STATE(1911)] = 108677, + [SMALL_STATE(1912)] = 108699, + [SMALL_STATE(1913)] = 108723, + [SMALL_STATE(1914)] = 108745, + [SMALL_STATE(1915)] = 108769, + [SMALL_STATE(1916)] = 108787, + [SMALL_STATE(1917)] = 108813, + [SMALL_STATE(1918)] = 108831, + [SMALL_STATE(1919)] = 108849, + [SMALL_STATE(1920)] = 108875, + [SMALL_STATE(1921)] = 108901, + [SMALL_STATE(1922)] = 108927, + [SMALL_STATE(1923)] = 108953, + [SMALL_STATE(1924)] = 108971, + [SMALL_STATE(1925)] = 108997, + [SMALL_STATE(1926)] = 109023, + [SMALL_STATE(1927)] = 109045, + [SMALL_STATE(1928)] = 109067, + [SMALL_STATE(1929)] = 109089, + [SMALL_STATE(1930)] = 109115, + [SMALL_STATE(1931)] = 109141, + [SMALL_STATE(1932)] = 109154, + [SMALL_STATE(1933)] = 109167, + [SMALL_STATE(1934)] = 109184, + [SMALL_STATE(1935)] = 109205, + [SMALL_STATE(1936)] = 109222, + [SMALL_STATE(1937)] = 109239, + [SMALL_STATE(1938)] = 109254, + [SMALL_STATE(1939)] = 109275, + [SMALL_STATE(1940)] = 109296, + [SMALL_STATE(1941)] = 109311, + [SMALL_STATE(1942)] = 109324, + [SMALL_STATE(1943)] = 109337, + [SMALL_STATE(1944)] = 109350, + [SMALL_STATE(1945)] = 109371, + [SMALL_STATE(1946)] = 109388, + [SMALL_STATE(1947)] = 109411, + [SMALL_STATE(1948)] = 109428, + [SMALL_STATE(1949)] = 109449, + [SMALL_STATE(1950)] = 109462, + [SMALL_STATE(1951)] = 109479, + [SMALL_STATE(1952)] = 109500, + [SMALL_STATE(1953)] = 109517, + [SMALL_STATE(1954)] = 109534, + [SMALL_STATE(1955)] = 109551, + [SMALL_STATE(1956)] = 109572, + [SMALL_STATE(1957)] = 109589, + [SMALL_STATE(1958)] = 109602, + [SMALL_STATE(1959)] = 109615, + [SMALL_STATE(1960)] = 109636, + [SMALL_STATE(1961)] = 109651, + [SMALL_STATE(1962)] = 109668, + [SMALL_STATE(1963)] = 109687, + [SMALL_STATE(1964)] = 109704, + [SMALL_STATE(1965)] = 109721, + [SMALL_STATE(1966)] = 109742, + [SMALL_STATE(1967)] = 109759, + [SMALL_STATE(1968)] = 109772, + [SMALL_STATE(1969)] = 109795, + [SMALL_STATE(1970)] = 109808, + [SMALL_STATE(1971)] = 109821, + [SMALL_STATE(1972)] = 109842, + [SMALL_STATE(1973)] = 109863, + [SMALL_STATE(1974)] = 109884, + [SMALL_STATE(1975)] = 109897, + [SMALL_STATE(1976)] = 109920, + [SMALL_STATE(1977)] = 109937, + [SMALL_STATE(1978)] = 109954, + [SMALL_STATE(1979)] = 109971, + [SMALL_STATE(1980)] = 109992, + [SMALL_STATE(1981)] = 110007, + [SMALL_STATE(1982)] = 110020, + [SMALL_STATE(1983)] = 110043, + [SMALL_STATE(1984)] = 110060, + [SMALL_STATE(1985)] = 110081, + [SMALL_STATE(1986)] = 110094, + [SMALL_STATE(1987)] = 110111, + [SMALL_STATE(1988)] = 110132, + [SMALL_STATE(1989)] = 110145, + [SMALL_STATE(1990)] = 110162, + [SMALL_STATE(1991)] = 110183, + [SMALL_STATE(1992)] = 110200, + [SMALL_STATE(1993)] = 110217, + [SMALL_STATE(1994)] = 110230, + [SMALL_STATE(1995)] = 110247, + [SMALL_STATE(1996)] = 110268, + [SMALL_STATE(1997)] = 110285, + [SMALL_STATE(1998)] = 110300, + [SMALL_STATE(1999)] = 110313, + [SMALL_STATE(2000)] = 110334, + [SMALL_STATE(2001)] = 110351, + [SMALL_STATE(2002)] = 110372, + [SMALL_STATE(2003)] = 110389, + [SMALL_STATE(2004)] = 110410, + [SMALL_STATE(2005)] = 110431, + [SMALL_STATE(2006)] = 110444, + [SMALL_STATE(2007)] = 110457, + [SMALL_STATE(2008)] = 110476, + [SMALL_STATE(2009)] = 110497, + [SMALL_STATE(2010)] = 110518, + [SMALL_STATE(2011)] = 110539, + [SMALL_STATE(2012)] = 110554, + [SMALL_STATE(2013)] = 110571, + [SMALL_STATE(2014)] = 110592, + [SMALL_STATE(2015)] = 110613, + [SMALL_STATE(2016)] = 110630, + [SMALL_STATE(2017)] = 110647, + [SMALL_STATE(2018)] = 110668, + [SMALL_STATE(2019)] = 110685, + [SMALL_STATE(2020)] = 110708, + [SMALL_STATE(2021)] = 110729, + [SMALL_STATE(2022)] = 110746, + [SMALL_STATE(2023)] = 110767, + [SMALL_STATE(2024)] = 110780, + [SMALL_STATE(2025)] = 110797, + [SMALL_STATE(2026)] = 110810, + [SMALL_STATE(2027)] = 110831, + [SMALL_STATE(2028)] = 110844, + [SMALL_STATE(2029)] = 110861, + [SMALL_STATE(2030)] = 110878, + [SMALL_STATE(2031)] = 110893, + [SMALL_STATE(2032)] = 110914, + [SMALL_STATE(2033)] = 110931, + [SMALL_STATE(2034)] = 110948, + [SMALL_STATE(2035)] = 110961, + [SMALL_STATE(2036)] = 110976, + [SMALL_STATE(2037)] = 110989, + [SMALL_STATE(2038)] = 111002, + [SMALL_STATE(2039)] = 111023, + [SMALL_STATE(2040)] = 111040, + [SMALL_STATE(2041)] = 111053, + [SMALL_STATE(2042)] = 111066, + [SMALL_STATE(2043)] = 111087, + [SMALL_STATE(2044)] = 111099, + [SMALL_STATE(2045)] = 111111, + [SMALL_STATE(2046)] = 111123, + [SMALL_STATE(2047)] = 111135, + [SMALL_STATE(2048)] = 111151, + [SMALL_STATE(2049)] = 111169, + [SMALL_STATE(2050)] = 111183, + [SMALL_STATE(2051)] = 111199, + [SMALL_STATE(2052)] = 111211, + [SMALL_STATE(2053)] = 111231, + [SMALL_STATE(2054)] = 111249, + [SMALL_STATE(2055)] = 111261, + [SMALL_STATE(2056)] = 111281, + [SMALL_STATE(2057)] = 111301, + [SMALL_STATE(2058)] = 111313, + [SMALL_STATE(2059)] = 111331, + [SMALL_STATE(2060)] = 111343, + [SMALL_STATE(2061)] = 111355, + [SMALL_STATE(2062)] = 111367, + [SMALL_STATE(2063)] = 111379, + [SMALL_STATE(2064)] = 111391, + [SMALL_STATE(2065)] = 111403, + [SMALL_STATE(2066)] = 111415, + [SMALL_STATE(2067)] = 111431, + [SMALL_STATE(2068)] = 111443, + [SMALL_STATE(2069)] = 111463, + [SMALL_STATE(2070)] = 111479, + [SMALL_STATE(2071)] = 111491, + [SMALL_STATE(2072)] = 111503, + [SMALL_STATE(2073)] = 111515, + [SMALL_STATE(2074)] = 111529, + [SMALL_STATE(2075)] = 111545, + [SMALL_STATE(2076)] = 111565, + [SMALL_STATE(2077)] = 111577, + [SMALL_STATE(2078)] = 111589, + [SMALL_STATE(2079)] = 111609, + [SMALL_STATE(2080)] = 111627, + [SMALL_STATE(2081)] = 111639, + [SMALL_STATE(2082)] = 111655, + [SMALL_STATE(2083)] = 111675, + [SMALL_STATE(2084)] = 111687, + [SMALL_STATE(2085)] = 111705, + [SMALL_STATE(2086)] = 111725, + [SMALL_STATE(2087)] = 111743, + [SMALL_STATE(2088)] = 111757, + [SMALL_STATE(2089)] = 111777, + [SMALL_STATE(2090)] = 111789, + [SMALL_STATE(2091)] = 111801, + [SMALL_STATE(2092)] = 111813, + [SMALL_STATE(2093)] = 111825, + [SMALL_STATE(2094)] = 111837, + [SMALL_STATE(2095)] = 111849, + [SMALL_STATE(2096)] = 111861, + [SMALL_STATE(2097)] = 111881, + [SMALL_STATE(2098)] = 111899, + [SMALL_STATE(2099)] = 111915, + [SMALL_STATE(2100)] = 111927, + [SMALL_STATE(2101)] = 111947, + [SMALL_STATE(2102)] = 111967, + [SMALL_STATE(2103)] = 111981, + [SMALL_STATE(2104)] = 112001, + [SMALL_STATE(2105)] = 112021, + [SMALL_STATE(2106)] = 112033, + [SMALL_STATE(2107)] = 112051, + [SMALL_STATE(2108)] = 112063, + [SMALL_STATE(2109)] = 112075, + [SMALL_STATE(2110)] = 112087, + [SMALL_STATE(2111)] = 112107, + [SMALL_STATE(2112)] = 112119, + [SMALL_STATE(2113)] = 112139, + [SMALL_STATE(2114)] = 112151, + [SMALL_STATE(2115)] = 112171, + [SMALL_STATE(2116)] = 112183, + [SMALL_STATE(2117)] = 112195, + [SMALL_STATE(2118)] = 112213, + [SMALL_STATE(2119)] = 112225, + [SMALL_STATE(2120)] = 112237, + [SMALL_STATE(2121)] = 112255, + [SMALL_STATE(2122)] = 112267, + [SMALL_STATE(2123)] = 112279, + [SMALL_STATE(2124)] = 112299, + [SMALL_STATE(2125)] = 112319, + [SMALL_STATE(2126)] = 112339, + [SMALL_STATE(2127)] = 112351, + [SMALL_STATE(2128)] = 112369, + [SMALL_STATE(2129)] = 112381, + [SMALL_STATE(2130)] = 112397, + [SMALL_STATE(2131)] = 112409, + [SMALL_STATE(2132)] = 112427, + [SMALL_STATE(2133)] = 112447, + [SMALL_STATE(2134)] = 112459, + [SMALL_STATE(2135)] = 112479, + [SMALL_STATE(2136)] = 112491, + [SMALL_STATE(2137)] = 112509, + [SMALL_STATE(2138)] = 112521, + [SMALL_STATE(2139)] = 112533, + [SMALL_STATE(2140)] = 112545, + [SMALL_STATE(2141)] = 112557, + [SMALL_STATE(2142)] = 112573, + [SMALL_STATE(2143)] = 112593, + [SMALL_STATE(2144)] = 112605, + [SMALL_STATE(2145)] = 112621, + [SMALL_STATE(2146)] = 112641, + [SMALL_STATE(2147)] = 112653, + [SMALL_STATE(2148)] = 112669, + [SMALL_STATE(2149)] = 112683, + [SMALL_STATE(2150)] = 112703, + [SMALL_STATE(2151)] = 112719, + [SMALL_STATE(2152)] = 112733, + [SMALL_STATE(2153)] = 112749, + [SMALL_STATE(2154)] = 112761, + [SMALL_STATE(2155)] = 112781, + [SMALL_STATE(2156)] = 112793, + [SMALL_STATE(2157)] = 112813, + [SMALL_STATE(2158)] = 112825, + [SMALL_STATE(2159)] = 112841, + [SMALL_STATE(2160)] = 112852, + [SMALL_STATE(2161)] = 112863, + [SMALL_STATE(2162)] = 112880, + [SMALL_STATE(2163)] = 112891, + [SMALL_STATE(2164)] = 112902, + [SMALL_STATE(2165)] = 112917, + [SMALL_STATE(2166)] = 112928, + [SMALL_STATE(2167)] = 112945, + [SMALL_STATE(2168)] = 112960, + [SMALL_STATE(2169)] = 112971, + [SMALL_STATE(2170)] = 112982, + [SMALL_STATE(2171)] = 112993, + [SMALL_STATE(2172)] = 113004, + [SMALL_STATE(2173)] = 113015, + [SMALL_STATE(2174)] = 113026, + [SMALL_STATE(2175)] = 113037, + [SMALL_STATE(2176)] = 113048, + [SMALL_STATE(2177)] = 113065, + [SMALL_STATE(2178)] = 113080, + [SMALL_STATE(2179)] = 113097, + [SMALL_STATE(2180)] = 113108, + [SMALL_STATE(2181)] = 113125, + [SMALL_STATE(2182)] = 113136, + [SMALL_STATE(2183)] = 113147, + [SMALL_STATE(2184)] = 113158, + [SMALL_STATE(2185)] = 113169, + [SMALL_STATE(2186)] = 113184, + [SMALL_STATE(2187)] = 113201, + [SMALL_STATE(2188)] = 113212, + [SMALL_STATE(2189)] = 113223, + [SMALL_STATE(2190)] = 113234, + [SMALL_STATE(2191)] = 113251, + [SMALL_STATE(2192)] = 113262, + [SMALL_STATE(2193)] = 113273, + [SMALL_STATE(2194)] = 113284, + [SMALL_STATE(2195)] = 113299, + [SMALL_STATE(2196)] = 113310, + [SMALL_STATE(2197)] = 113321, + [SMALL_STATE(2198)] = 113332, + [SMALL_STATE(2199)] = 113343, + [SMALL_STATE(2200)] = 113354, + [SMALL_STATE(2201)] = 113365, + [SMALL_STATE(2202)] = 113376, + [SMALL_STATE(2203)] = 113387, + [SMALL_STATE(2204)] = 113404, + [SMALL_STATE(2205)] = 113415, + [SMALL_STATE(2206)] = 113426, + [SMALL_STATE(2207)] = 113437, + [SMALL_STATE(2208)] = 113448, + [SMALL_STATE(2209)] = 113465, + [SMALL_STATE(2210)] = 113482, + [SMALL_STATE(2211)] = 113493, + [SMALL_STATE(2212)] = 113510, + [SMALL_STATE(2213)] = 113521, + [SMALL_STATE(2214)] = 113538, + [SMALL_STATE(2215)] = 113553, + [SMALL_STATE(2216)] = 113564, + [SMALL_STATE(2217)] = 113577, + [SMALL_STATE(2218)] = 113594, + [SMALL_STATE(2219)] = 113609, + [SMALL_STATE(2220)] = 113620, + [SMALL_STATE(2221)] = 113637, + [SMALL_STATE(2222)] = 113648, + [SMALL_STATE(2223)] = 113665, + [SMALL_STATE(2224)] = 113676, + [SMALL_STATE(2225)] = 113687, + [SMALL_STATE(2226)] = 113704, + [SMALL_STATE(2227)] = 113721, + [SMALL_STATE(2228)] = 113732, + [SMALL_STATE(2229)] = 113747, + [SMALL_STATE(2230)] = 113764, + [SMALL_STATE(2231)] = 113781, + [SMALL_STATE(2232)] = 113792, + [SMALL_STATE(2233)] = 113803, + [SMALL_STATE(2234)] = 113814, + [SMALL_STATE(2235)] = 113831, + [SMALL_STATE(2236)] = 113848, + [SMALL_STATE(2237)] = 113863, + [SMALL_STATE(2238)] = 113874, + [SMALL_STATE(2239)] = 113885, + [SMALL_STATE(2240)] = 113896, + [SMALL_STATE(2241)] = 113907, + [SMALL_STATE(2242)] = 113920, + [SMALL_STATE(2243)] = 113935, + [SMALL_STATE(2244)] = 113950, + [SMALL_STATE(2245)] = 113967, + [SMALL_STATE(2246)] = 113982, + [SMALL_STATE(2247)] = 113993, + [SMALL_STATE(2248)] = 114010, + [SMALL_STATE(2249)] = 114021, + [SMALL_STATE(2250)] = 114036, + [SMALL_STATE(2251)] = 114053, + [SMALL_STATE(2252)] = 114064, + [SMALL_STATE(2253)] = 114075, + [SMALL_STATE(2254)] = 114090, + [SMALL_STATE(2255)] = 114107, + [SMALL_STATE(2256)] = 114118, + [SMALL_STATE(2257)] = 114133, + [SMALL_STATE(2258)] = 114144, + [SMALL_STATE(2259)] = 114161, + [SMALL_STATE(2260)] = 114178, + [SMALL_STATE(2261)] = 114189, + [SMALL_STATE(2262)] = 114206, + [SMALL_STATE(2263)] = 114217, + [SMALL_STATE(2264)] = 114228, + [SMALL_STATE(2265)] = 114239, + [SMALL_STATE(2266)] = 114250, + [SMALL_STATE(2267)] = 114265, + [SMALL_STATE(2268)] = 114276, + [SMALL_STATE(2269)] = 114287, + [SMALL_STATE(2270)] = 114302, + [SMALL_STATE(2271)] = 114313, + [SMALL_STATE(2272)] = 114330, + [SMALL_STATE(2273)] = 114341, + [SMALL_STATE(2274)] = 114358, + [SMALL_STATE(2275)] = 114369, + [SMALL_STATE(2276)] = 114386, + [SMALL_STATE(2277)] = 114401, + [SMALL_STATE(2278)] = 114412, + [SMALL_STATE(2279)] = 114423, + [SMALL_STATE(2280)] = 114434, + [SMALL_STATE(2281)] = 114447, + [SMALL_STATE(2282)] = 114458, + [SMALL_STATE(2283)] = 114473, + [SMALL_STATE(2284)] = 114488, + [SMALL_STATE(2285)] = 114499, + [SMALL_STATE(2286)] = 114510, + [SMALL_STATE(2287)] = 114521, + [SMALL_STATE(2288)] = 114531, + [SMALL_STATE(2289)] = 114545, + [SMALL_STATE(2290)] = 114559, + [SMALL_STATE(2291)] = 114573, + [SMALL_STATE(2292)] = 114583, + [SMALL_STATE(2293)] = 114597, + [SMALL_STATE(2294)] = 114611, + [SMALL_STATE(2295)] = 114625, + [SMALL_STATE(2296)] = 114639, + [SMALL_STATE(2297)] = 114653, + [SMALL_STATE(2298)] = 114667, + [SMALL_STATE(2299)] = 114681, + [SMALL_STATE(2300)] = 114695, + [SMALL_STATE(2301)] = 114709, + [SMALL_STATE(2302)] = 114723, + [SMALL_STATE(2303)] = 114737, + [SMALL_STATE(2304)] = 114751, + [SMALL_STATE(2305)] = 114765, + [SMALL_STATE(2306)] = 114779, + [SMALL_STATE(2307)] = 114789, + [SMALL_STATE(2308)] = 114803, + [SMALL_STATE(2309)] = 114817, + [SMALL_STATE(2310)] = 114831, + [SMALL_STATE(2311)] = 114845, + [SMALL_STATE(2312)] = 114859, + [SMALL_STATE(2313)] = 114873, + [SMALL_STATE(2314)] = 114883, + [SMALL_STATE(2315)] = 114897, + [SMALL_STATE(2316)] = 114911, + [SMALL_STATE(2317)] = 114925, + [SMALL_STATE(2318)] = 114935, + [SMALL_STATE(2319)] = 114949, + [SMALL_STATE(2320)] = 114963, + [SMALL_STATE(2321)] = 114977, + [SMALL_STATE(2322)] = 114991, + [SMALL_STATE(2323)] = 115001, + [SMALL_STATE(2324)] = 115015, + [SMALL_STATE(2325)] = 115027, + [SMALL_STATE(2326)] = 115041, + [SMALL_STATE(2327)] = 115055, + [SMALL_STATE(2328)] = 115069, + [SMALL_STATE(2329)] = 115083, + [SMALL_STATE(2330)] = 115097, + [SMALL_STATE(2331)] = 115111, + [SMALL_STATE(2332)] = 115125, + [SMALL_STATE(2333)] = 115139, + [SMALL_STATE(2334)] = 115153, + [SMALL_STATE(2335)] = 115167, + [SMALL_STATE(2336)] = 115181, + [SMALL_STATE(2337)] = 115195, + [SMALL_STATE(2338)] = 115207, + [SMALL_STATE(2339)] = 115221, + [SMALL_STATE(2340)] = 115235, + [SMALL_STATE(2341)] = 115249, + [SMALL_STATE(2342)] = 115263, + [SMALL_STATE(2343)] = 115277, + [SMALL_STATE(2344)] = 115291, + [SMALL_STATE(2345)] = 115301, + [SMALL_STATE(2346)] = 115311, + [SMALL_STATE(2347)] = 115325, + [SMALL_STATE(2348)] = 115339, + [SMALL_STATE(2349)] = 115353, + [SMALL_STATE(2350)] = 115367, + [SMALL_STATE(2351)] = 115381, + [SMALL_STATE(2352)] = 115395, + [SMALL_STATE(2353)] = 115409, + [SMALL_STATE(2354)] = 115423, + [SMALL_STATE(2355)] = 115437, + [SMALL_STATE(2356)] = 115451, + [SMALL_STATE(2357)] = 115465, + [SMALL_STATE(2358)] = 115477, + [SMALL_STATE(2359)] = 115491, + [SMALL_STATE(2360)] = 115505, + [SMALL_STATE(2361)] = 115519, + [SMALL_STATE(2362)] = 115533, + [SMALL_STATE(2363)] = 115547, + [SMALL_STATE(2364)] = 115561, + [SMALL_STATE(2365)] = 115575, + [SMALL_STATE(2366)] = 115589, + [SMALL_STATE(2367)] = 115601, + [SMALL_STATE(2368)] = 115615, + [SMALL_STATE(2369)] = 115625, + [SMALL_STATE(2370)] = 115639, + [SMALL_STATE(2371)] = 115653, + [SMALL_STATE(2372)] = 115667, + [SMALL_STATE(2373)] = 115681, + [SMALL_STATE(2374)] = 115695, + [SMALL_STATE(2375)] = 115709, + [SMALL_STATE(2376)] = 115723, + [SMALL_STATE(2377)] = 115737, + [SMALL_STATE(2378)] = 115751, + [SMALL_STATE(2379)] = 115765, + [SMALL_STATE(2380)] = 115777, + [SMALL_STATE(2381)] = 115791, + [SMALL_STATE(2382)] = 115803, + [SMALL_STATE(2383)] = 115817, + [SMALL_STATE(2384)] = 115831, + [SMALL_STATE(2385)] = 115845, + [SMALL_STATE(2386)] = 115859, + [SMALL_STATE(2387)] = 115873, + [SMALL_STATE(2388)] = 115887, + [SMALL_STATE(2389)] = 115901, + [SMALL_STATE(2390)] = 115915, + [SMALL_STATE(2391)] = 115929, + [SMALL_STATE(2392)] = 115943, + [SMALL_STATE(2393)] = 115957, + [SMALL_STATE(2394)] = 115971, + [SMALL_STATE(2395)] = 115985, + [SMALL_STATE(2396)] = 115999, + [SMALL_STATE(2397)] = 116013, + [SMALL_STATE(2398)] = 116027, + [SMALL_STATE(2399)] = 116041, + [SMALL_STATE(2400)] = 116055, + [SMALL_STATE(2401)] = 116069, + [SMALL_STATE(2402)] = 116083, + [SMALL_STATE(2403)] = 116097, + [SMALL_STATE(2404)] = 116111, + [SMALL_STATE(2405)] = 116125, + [SMALL_STATE(2406)] = 116139, + [SMALL_STATE(2407)] = 116153, + [SMALL_STATE(2408)] = 116167, + [SMALL_STATE(2409)] = 116181, + [SMALL_STATE(2410)] = 116195, + [SMALL_STATE(2411)] = 116209, + [SMALL_STATE(2412)] = 116223, + [SMALL_STATE(2413)] = 116237, + [SMALL_STATE(2414)] = 116251, + [SMALL_STATE(2415)] = 116265, + [SMALL_STATE(2416)] = 116279, + [SMALL_STATE(2417)] = 116293, + [SMALL_STATE(2418)] = 116307, + [SMALL_STATE(2419)] = 116321, + [SMALL_STATE(2420)] = 116335, + [SMALL_STATE(2421)] = 116349, + [SMALL_STATE(2422)] = 116363, + [SMALL_STATE(2423)] = 116377, + [SMALL_STATE(2424)] = 116391, + [SMALL_STATE(2425)] = 116405, + [SMALL_STATE(2426)] = 116419, + [SMALL_STATE(2427)] = 116433, + [SMALL_STATE(2428)] = 116447, + [SMALL_STATE(2429)] = 116461, + [SMALL_STATE(2430)] = 116475, + [SMALL_STATE(2431)] = 116489, + [SMALL_STATE(2432)] = 116503, + [SMALL_STATE(2433)] = 116517, + [SMALL_STATE(2434)] = 116531, + [SMALL_STATE(2435)] = 116545, + [SMALL_STATE(2436)] = 116559, + [SMALL_STATE(2437)] = 116573, + [SMALL_STATE(2438)] = 116587, + [SMALL_STATE(2439)] = 116597, + [SMALL_STATE(2440)] = 116611, + [SMALL_STATE(2441)] = 116625, + [SMALL_STATE(2442)] = 116639, + [SMALL_STATE(2443)] = 116653, + [SMALL_STATE(2444)] = 116667, + [SMALL_STATE(2445)] = 116679, + [SMALL_STATE(2446)] = 116693, + [SMALL_STATE(2447)] = 116707, + [SMALL_STATE(2448)] = 116721, + [SMALL_STATE(2449)] = 116735, + [SMALL_STATE(2450)] = 116749, + [SMALL_STATE(2451)] = 116763, + [SMALL_STATE(2452)] = 116777, + [SMALL_STATE(2453)] = 116791, + [SMALL_STATE(2454)] = 116803, + [SMALL_STATE(2455)] = 116815, + [SMALL_STATE(2456)] = 116829, + [SMALL_STATE(2457)] = 116841, + [SMALL_STATE(2458)] = 116855, + [SMALL_STATE(2459)] = 116869, + [SMALL_STATE(2460)] = 116883, + [SMALL_STATE(2461)] = 116895, + [SMALL_STATE(2462)] = 116909, + [SMALL_STATE(2463)] = 116923, + [SMALL_STATE(2464)] = 116937, + [SMALL_STATE(2465)] = 116951, + [SMALL_STATE(2466)] = 116965, + [SMALL_STATE(2467)] = 116979, + [SMALL_STATE(2468)] = 116993, + [SMALL_STATE(2469)] = 117003, + [SMALL_STATE(2470)] = 117017, + [SMALL_STATE(2471)] = 117031, + [SMALL_STATE(2472)] = 117045, + [SMALL_STATE(2473)] = 117059, + [SMALL_STATE(2474)] = 117073, + [SMALL_STATE(2475)] = 117087, + [SMALL_STATE(2476)] = 117101, + [SMALL_STATE(2477)] = 117115, + [SMALL_STATE(2478)] = 117129, + [SMALL_STATE(2479)] = 117143, + [SMALL_STATE(2480)] = 117157, + [SMALL_STATE(2481)] = 117171, + [SMALL_STATE(2482)] = 117185, + [SMALL_STATE(2483)] = 117199, + [SMALL_STATE(2484)] = 117213, + [SMALL_STATE(2485)] = 117227, + [SMALL_STATE(2486)] = 117241, + [SMALL_STATE(2487)] = 117255, + [SMALL_STATE(2488)] = 117269, + [SMALL_STATE(2489)] = 117283, + [SMALL_STATE(2490)] = 117295, + [SMALL_STATE(2491)] = 117309, + [SMALL_STATE(2492)] = 117323, + [SMALL_STATE(2493)] = 117337, + [SMALL_STATE(2494)] = 117351, + [SMALL_STATE(2495)] = 117365, + [SMALL_STATE(2496)] = 117379, + [SMALL_STATE(2497)] = 117393, + [SMALL_STATE(2498)] = 117405, + [SMALL_STATE(2499)] = 117417, + [SMALL_STATE(2500)] = 117431, + [SMALL_STATE(2501)] = 117445, + [SMALL_STATE(2502)] = 117459, + [SMALL_STATE(2503)] = 117473, + [SMALL_STATE(2504)] = 117487, + [SMALL_STATE(2505)] = 117501, + [SMALL_STATE(2506)] = 117515, + [SMALL_STATE(2507)] = 117529, + [SMALL_STATE(2508)] = 117543, + [SMALL_STATE(2509)] = 117557, + [SMALL_STATE(2510)] = 117571, + [SMALL_STATE(2511)] = 117585, + [SMALL_STATE(2512)] = 117599, + [SMALL_STATE(2513)] = 117613, + [SMALL_STATE(2514)] = 117623, + [SMALL_STATE(2515)] = 117637, + [SMALL_STATE(2516)] = 117651, + [SMALL_STATE(2517)] = 117665, + [SMALL_STATE(2518)] = 117679, + [SMALL_STATE(2519)] = 117693, + [SMALL_STATE(2520)] = 117705, + [SMALL_STATE(2521)] = 117717, + [SMALL_STATE(2522)] = 117729, + [SMALL_STATE(2523)] = 117741, + [SMALL_STATE(2524)] = 117755, + [SMALL_STATE(2525)] = 117769, + [SMALL_STATE(2526)] = 117783, + [SMALL_STATE(2527)] = 117797, + [SMALL_STATE(2528)] = 117811, + [SMALL_STATE(2529)] = 117825, + [SMALL_STATE(2530)] = 117839, + [SMALL_STATE(2531)] = 117853, + [SMALL_STATE(2532)] = 117867, + [SMALL_STATE(2533)] = 117881, + [SMALL_STATE(2534)] = 117895, + [SMALL_STATE(2535)] = 117907, + [SMALL_STATE(2536)] = 117917, + [SMALL_STATE(2537)] = 117931, + [SMALL_STATE(2538)] = 117945, + [SMALL_STATE(2539)] = 117959, + [SMALL_STATE(2540)] = 117969, + [SMALL_STATE(2541)] = 117983, + [SMALL_STATE(2542)] = 117997, + [SMALL_STATE(2543)] = 118011, + [SMALL_STATE(2544)] = 118025, + [SMALL_STATE(2545)] = 118039, + [SMALL_STATE(2546)] = 118053, + [SMALL_STATE(2547)] = 118062, + [SMALL_STATE(2548)] = 118071, + [SMALL_STATE(2549)] = 118080, + [SMALL_STATE(2550)] = 118089, + [SMALL_STATE(2551)] = 118098, + [SMALL_STATE(2552)] = 118107, + [SMALL_STATE(2553)] = 118116, + [SMALL_STATE(2554)] = 118125, + [SMALL_STATE(2555)] = 118134, + [SMALL_STATE(2556)] = 118143, + [SMALL_STATE(2557)] = 118152, + [SMALL_STATE(2558)] = 118161, + [SMALL_STATE(2559)] = 118170, + [SMALL_STATE(2560)] = 118179, + [SMALL_STATE(2561)] = 118188, + [SMALL_STATE(2562)] = 118197, + [SMALL_STATE(2563)] = 118206, + [SMALL_STATE(2564)] = 118215, + [SMALL_STATE(2565)] = 118226, + [SMALL_STATE(2566)] = 118235, + [SMALL_STATE(2567)] = 118246, + [SMALL_STATE(2568)] = 118255, + [SMALL_STATE(2569)] = 118264, + [SMALL_STATE(2570)] = 118273, + [SMALL_STATE(2571)] = 118284, + [SMALL_STATE(2572)] = 118293, + [SMALL_STATE(2573)] = 118302, + [SMALL_STATE(2574)] = 118311, + [SMALL_STATE(2575)] = 118320, + [SMALL_STATE(2576)] = 118331, + [SMALL_STATE(2577)] = 118340, + [SMALL_STATE(2578)] = 118349, + [SMALL_STATE(2579)] = 118360, + [SMALL_STATE(2580)] = 118371, + [SMALL_STATE(2581)] = 118382, + [SMALL_STATE(2582)] = 118391, + [SMALL_STATE(2583)] = 118400, + [SMALL_STATE(2584)] = 118409, + [SMALL_STATE(2585)] = 118418, + [SMALL_STATE(2586)] = 118427, + [SMALL_STATE(2587)] = 118438, + [SMALL_STATE(2588)] = 118447, + [SMALL_STATE(2589)] = 118456, + [SMALL_STATE(2590)] = 118465, + [SMALL_STATE(2591)] = 118476, + [SMALL_STATE(2592)] = 118485, + [SMALL_STATE(2593)] = 118494, + [SMALL_STATE(2594)] = 118503, + [SMALL_STATE(2595)] = 118512, + [SMALL_STATE(2596)] = 118521, + [SMALL_STATE(2597)] = 118532, + [SMALL_STATE(2598)] = 118541, + [SMALL_STATE(2599)] = 118550, + [SMALL_STATE(2600)] = 118559, + [SMALL_STATE(2601)] = 118568, + [SMALL_STATE(2602)] = 118579, + [SMALL_STATE(2603)] = 118588, + [SMALL_STATE(2604)] = 118597, + [SMALL_STATE(2605)] = 118606, + [SMALL_STATE(2606)] = 118615, + [SMALL_STATE(2607)] = 118626, + [SMALL_STATE(2608)] = 118637, + [SMALL_STATE(2609)] = 118646, + [SMALL_STATE(2610)] = 118655, + [SMALL_STATE(2611)] = 118666, + [SMALL_STATE(2612)] = 118677, + [SMALL_STATE(2613)] = 118686, + [SMALL_STATE(2614)] = 118697, + [SMALL_STATE(2615)] = 118706, + [SMALL_STATE(2616)] = 118715, + [SMALL_STATE(2617)] = 118724, + [SMALL_STATE(2618)] = 118733, + [SMALL_STATE(2619)] = 118744, + [SMALL_STATE(2620)] = 118753, + [SMALL_STATE(2621)] = 118762, + [SMALL_STATE(2622)] = 118771, + [SMALL_STATE(2623)] = 118780, + [SMALL_STATE(2624)] = 118789, + [SMALL_STATE(2625)] = 118798, + [SMALL_STATE(2626)] = 118809, + [SMALL_STATE(2627)] = 118818, + [SMALL_STATE(2628)] = 118827, + [SMALL_STATE(2629)] = 118836, + [SMALL_STATE(2630)] = 118845, + [SMALL_STATE(2631)] = 118856, + [SMALL_STATE(2632)] = 118865, + [SMALL_STATE(2633)] = 118876, + [SMALL_STATE(2634)] = 118887, + [SMALL_STATE(2635)] = 118896, + [SMALL_STATE(2636)] = 118907, + [SMALL_STATE(2637)] = 118916, + [SMALL_STATE(2638)] = 118925, + [SMALL_STATE(2639)] = 118936, + [SMALL_STATE(2640)] = 118945, + [SMALL_STATE(2641)] = 118956, + [SMALL_STATE(2642)] = 118967, + [SMALL_STATE(2643)] = 118978, + [SMALL_STATE(2644)] = 118987, + [SMALL_STATE(2645)] = 118996, + [SMALL_STATE(2646)] = 119005, + [SMALL_STATE(2647)] = 119014, + [SMALL_STATE(2648)] = 119023, + [SMALL_STATE(2649)] = 119031, + [SMALL_STATE(2650)] = 119039, + [SMALL_STATE(2651)] = 119047, + [SMALL_STATE(2652)] = 119055, + [SMALL_STATE(2653)] = 119063, + [SMALL_STATE(2654)] = 119071, + [SMALL_STATE(2655)] = 119079, + [SMALL_STATE(2656)] = 119087, + [SMALL_STATE(2657)] = 119095, + [SMALL_STATE(2658)] = 119103, + [SMALL_STATE(2659)] = 119111, + [SMALL_STATE(2660)] = 119119, + [SMALL_STATE(2661)] = 119127, + [SMALL_STATE(2662)] = 119135, + [SMALL_STATE(2663)] = 119143, + [SMALL_STATE(2664)] = 119151, + [SMALL_STATE(2665)] = 119159, + [SMALL_STATE(2666)] = 119167, + [SMALL_STATE(2667)] = 119175, + [SMALL_STATE(2668)] = 119183, + [SMALL_STATE(2669)] = 119191, + [SMALL_STATE(2670)] = 119199, + [SMALL_STATE(2671)] = 119207, + [SMALL_STATE(2672)] = 119215, + [SMALL_STATE(2673)] = 119223, + [SMALL_STATE(2674)] = 119231, + [SMALL_STATE(2675)] = 119239, + [SMALL_STATE(2676)] = 119247, + [SMALL_STATE(2677)] = 119255, + [SMALL_STATE(2678)] = 119263, + [SMALL_STATE(2679)] = 119271, + [SMALL_STATE(2680)] = 119279, + [SMALL_STATE(2681)] = 119287, + [SMALL_STATE(2682)] = 119295, + [SMALL_STATE(2683)] = 119303, + [SMALL_STATE(2684)] = 119311, + [SMALL_STATE(2685)] = 119319, + [SMALL_STATE(2686)] = 119327, + [SMALL_STATE(2687)] = 119335, + [SMALL_STATE(2688)] = 119343, + [SMALL_STATE(2689)] = 119351, + [SMALL_STATE(2690)] = 119359, + [SMALL_STATE(2691)] = 119367, + [SMALL_STATE(2692)] = 119375, + [SMALL_STATE(2693)] = 119383, + [SMALL_STATE(2694)] = 119391, + [SMALL_STATE(2695)] = 119399, + [SMALL_STATE(2696)] = 119407, + [SMALL_STATE(2697)] = 119415, + [SMALL_STATE(2698)] = 119423, + [SMALL_STATE(2699)] = 119431, + [SMALL_STATE(2700)] = 119439, + [SMALL_STATE(2701)] = 119447, + [SMALL_STATE(2702)] = 119455, + [SMALL_STATE(2703)] = 119463, + [SMALL_STATE(2704)] = 119471, + [SMALL_STATE(2705)] = 119479, + [SMALL_STATE(2706)] = 119487, + [SMALL_STATE(2707)] = 119495, + [SMALL_STATE(2708)] = 119503, + [SMALL_STATE(2709)] = 119511, + [SMALL_STATE(2710)] = 119519, + [SMALL_STATE(2711)] = 119527, + [SMALL_STATE(2712)] = 119535, + [SMALL_STATE(2713)] = 119543, + [SMALL_STATE(2714)] = 119551, + [SMALL_STATE(2715)] = 119559, + [SMALL_STATE(2716)] = 119567, + [SMALL_STATE(2717)] = 119575, + [SMALL_STATE(2718)] = 119583, + [SMALL_STATE(2719)] = 119591, + [SMALL_STATE(2720)] = 119599, + [SMALL_STATE(2721)] = 119607, + [SMALL_STATE(2722)] = 119615, + [SMALL_STATE(2723)] = 119623, + [SMALL_STATE(2724)] = 119631, + [SMALL_STATE(2725)] = 119639, + [SMALL_STATE(2726)] = 119647, + [SMALL_STATE(2727)] = 119655, + [SMALL_STATE(2728)] = 119663, + [SMALL_STATE(2729)] = 119671, + [SMALL_STATE(2730)] = 119679, + [SMALL_STATE(2731)] = 119687, + [SMALL_STATE(2732)] = 119695, + [SMALL_STATE(2733)] = 119703, + [SMALL_STATE(2734)] = 119711, + [SMALL_STATE(2735)] = 119719, + [SMALL_STATE(2736)] = 119727, + [SMALL_STATE(2737)] = 119735, + [SMALL_STATE(2738)] = 119743, + [SMALL_STATE(2739)] = 119751, + [SMALL_STATE(2740)] = 119759, + [SMALL_STATE(2741)] = 119767, + [SMALL_STATE(2742)] = 119775, + [SMALL_STATE(2743)] = 119783, + [SMALL_STATE(2744)] = 119791, + [SMALL_STATE(2745)] = 119799, + [SMALL_STATE(2746)] = 119807, + [SMALL_STATE(2747)] = 119815, + [SMALL_STATE(2748)] = 119823, + [SMALL_STATE(2749)] = 119831, + [SMALL_STATE(2750)] = 119839, + [SMALL_STATE(2751)] = 119847, + [SMALL_STATE(2752)] = 119855, + [SMALL_STATE(2753)] = 119863, + [SMALL_STATE(2754)] = 119871, + [SMALL_STATE(2755)] = 119879, + [SMALL_STATE(2756)] = 119887, + [SMALL_STATE(2757)] = 119895, + [SMALL_STATE(2758)] = 119903, + [SMALL_STATE(2759)] = 119911, + [SMALL_STATE(2760)] = 119919, + [SMALL_STATE(2761)] = 119927, + [SMALL_STATE(2762)] = 119935, + [SMALL_STATE(2763)] = 119943, + [SMALL_STATE(2764)] = 119951, + [SMALL_STATE(2765)] = 119959, + [SMALL_STATE(2766)] = 119967, + [SMALL_STATE(2767)] = 119975, + [SMALL_STATE(2768)] = 119983, + [SMALL_STATE(2769)] = 119991, + [SMALL_STATE(2770)] = 119999, + [SMALL_STATE(2771)] = 120007, + [SMALL_STATE(2772)] = 120015, + [SMALL_STATE(2773)] = 120023, + [SMALL_STATE(2774)] = 120031, + [SMALL_STATE(2775)] = 120039, + [SMALL_STATE(2776)] = 120047, + [SMALL_STATE(2777)] = 120055, + [SMALL_STATE(2778)] = 120063, + [SMALL_STATE(2779)] = 120071, + [SMALL_STATE(2780)] = 120079, + [SMALL_STATE(2781)] = 120087, + [SMALL_STATE(2782)] = 120095, + [SMALL_STATE(2783)] = 120103, + [SMALL_STATE(2784)] = 120111, + [SMALL_STATE(2785)] = 120119, + [SMALL_STATE(2786)] = 120127, + [SMALL_STATE(2787)] = 120135, + [SMALL_STATE(2788)] = 120143, + [SMALL_STATE(2789)] = 120151, + [SMALL_STATE(2790)] = 120159, + [SMALL_STATE(2791)] = 120167, + [SMALL_STATE(2792)] = 120175, + [SMALL_STATE(2793)] = 120183, + [SMALL_STATE(2794)] = 120191, + [SMALL_STATE(2795)] = 120199, + [SMALL_STATE(2796)] = 120207, + [SMALL_STATE(2797)] = 120215, + [SMALL_STATE(2798)] = 120223, + [SMALL_STATE(2799)] = 120231, + [SMALL_STATE(2800)] = 120239, + [SMALL_STATE(2801)] = 120247, + [SMALL_STATE(2802)] = 120255, + [SMALL_STATE(2803)] = 120263, + [SMALL_STATE(2804)] = 120271, + [SMALL_STATE(2805)] = 120279, + [SMALL_STATE(2806)] = 120287, + [SMALL_STATE(2807)] = 120295, + [SMALL_STATE(2808)] = 120303, + [SMALL_STATE(2809)] = 120311, + [SMALL_STATE(2810)] = 120319, + [SMALL_STATE(2811)] = 120327, + [SMALL_STATE(2812)] = 120335, + [SMALL_STATE(2813)] = 120343, + [SMALL_STATE(2814)] = 120351, + [SMALL_STATE(2815)] = 120359, + [SMALL_STATE(2816)] = 120367, + [SMALL_STATE(2817)] = 120375, + [SMALL_STATE(2818)] = 120383, + [SMALL_STATE(2819)] = 120391, + [SMALL_STATE(2820)] = 120399, + [SMALL_STATE(2821)] = 120407, + [SMALL_STATE(2822)] = 120415, + [SMALL_STATE(2823)] = 120423, + [SMALL_STATE(2824)] = 120431, + [SMALL_STATE(2825)] = 120439, + [SMALL_STATE(2826)] = 120447, + [SMALL_STATE(2827)] = 120455, + [SMALL_STATE(2828)] = 120463, + [SMALL_STATE(2829)] = 120471, + [SMALL_STATE(2830)] = 120479, + [SMALL_STATE(2831)] = 120487, + [SMALL_STATE(2832)] = 120495, + [SMALL_STATE(2833)] = 120503, + [SMALL_STATE(2834)] = 120511, + [SMALL_STATE(2835)] = 120519, + [SMALL_STATE(2836)] = 120527, + [SMALL_STATE(2837)] = 120535, + [SMALL_STATE(2838)] = 120543, + [SMALL_STATE(2839)] = 120551, + [SMALL_STATE(2840)] = 120559, + [SMALL_STATE(2841)] = 120567, + [SMALL_STATE(2842)] = 120575, + [SMALL_STATE(2843)] = 120583, + [SMALL_STATE(2844)] = 120591, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127373,2432 +129550,2489 @@ static const TSParseActionEntry ts_parse_actions[] = { [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(927), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(491), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(87), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2696), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2776), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(311), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(913), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2751), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(872), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(567), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(316), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(290), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(870), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(291), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(871), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(501), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(906), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2261), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(952), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(523), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2647), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2723), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(900), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(730), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(610), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2717), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2812), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(289), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(889), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(290), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(900), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(494), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(288), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(882), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(274), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(895), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(565), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 111), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 111), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 45), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 45), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 2, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 82), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 82), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 103), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 103), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 104), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 104), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 118), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 118), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 2, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 43), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 43), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 43), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 43), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 17), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 17), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 17), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 17), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 38), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 38), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 50), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 50), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(522), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 50), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 50), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(604), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 144), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 144), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 135), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 135), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 142), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 142), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 8, 0, 148), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 8, 0, 148), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 134), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 134), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 143), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 143), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 119), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 119), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 105), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 105), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 132), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 132), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 120), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 120), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 133), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 133), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 106), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 106), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 38), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 38), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 57), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 57), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 62), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 62), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 17), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 17), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 43), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 43), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 42), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 42), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 17), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 17), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 43), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 43), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 44), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 44), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 136), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 136), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 141), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 141), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 60), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 60), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 118), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 118), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 46), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 46), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 129), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 129), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 17), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 17), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 44), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 44), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 18), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 18), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 18), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 18), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 44), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 44), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 39), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 39), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 59), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 59), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 86), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 86), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 58), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 58), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 25), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 25), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 75), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 75), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 52), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 52), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 52), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 52), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 75), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 75), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 84), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 84), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 84), SHIFT_REPEAT(548), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 84), SHIFT_REPEAT(491), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 111), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 111), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 127), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 127), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 151), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 151), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 113), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 113), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 8, 0, 155), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 8, 0, 155), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 139), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 139), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 140), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 140), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 141), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 141), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 142), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 142), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 149), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 149), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 150), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 150), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 112), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 112), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 126), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 126), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 93), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 93), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 110), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 110), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 91), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 91), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 44), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 44), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 39), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 39), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 18), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 18), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 64), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 64), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 122), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 122), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 43), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 43), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 59), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 59), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 56), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 56), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 106), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 106), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 44), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 44), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 18), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 18), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 93), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 93), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 136), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 136), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 137), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 137), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 138), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 138), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 69), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 69), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 96), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 96), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 97), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 97), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 98), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 98), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 99), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 99), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 63), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 63), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 70), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 70), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 143), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 143), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 148), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 148), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 100), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 100), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 105), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 105), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 83), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 83), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 108), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 108), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 85), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 85), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 87), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 87), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 109), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 109), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 88), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 88), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 89), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 89), [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 65), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 65), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 92), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 92), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 18), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 18), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 44), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 44), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 115), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 115), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 116), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 116), [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 121), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 121), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 122), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 122), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 40), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 40), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 130), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 130), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 43), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 43), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 108), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 108), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 109), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 109), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 110), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 110), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 114), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 114), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 117), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 117), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 121), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 121), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 123), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 123), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 124), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 124), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 125), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 125), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 41), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 41), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 67), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 67), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 60), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 60), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 128), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 128), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 129), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 129), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 68), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 68), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 61), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 61), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 45), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 45), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 47), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 47), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 35), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 35), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 34), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 34), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 34), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 34), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 35), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 35), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 35), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 35), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(2634), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(919), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(855), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(919), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(860), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(936), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(857), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(936), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(886), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(858), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(886), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(901), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(862), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(901), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(950), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(863), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(950), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(864), - [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(856), - [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(864), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 49), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 23), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 22), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 18), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(555), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(338), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(507), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 23), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 22), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(531), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(494), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(524), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(538), - [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(516), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(562), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 47), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2717), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2726), - [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(551), - [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), - [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 45), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 37), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 39), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 53), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 53), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 111), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(437), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 27), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 27), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 105), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 48), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 19), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 19), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 27), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 27), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 18), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 49), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 112), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 123), - [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 125), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 123), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 125), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 45), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 112), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(583), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), - [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2316), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1529), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2601), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2219), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), SHIFT_REPEAT(521), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(439), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), - [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), SHIFT_REPEAT(605), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2479), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 47), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), SHIFT_REPEAT(570), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), SHIFT_REPEAT(1550), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 30), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(330), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 126), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 127), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 128), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 54), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 34), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 112), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 31), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 137), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 138), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 139), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 140), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 145), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 146), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 147), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 149), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 22), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 113), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 34), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4890] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 62), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 62), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 10), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 10), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 23), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 23), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 36), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 36), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 36), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 36), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 6), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 6), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 16), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 16), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 16), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 16), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 6), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 6), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 51), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 51), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 73), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 73), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 51), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 51), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 36), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 36), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 73), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 73), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 36), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 36), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(920), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(2780), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(863), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(920), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(932), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(867), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(932), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(903), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(864), + [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(903), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(879), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(869), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(879), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(945), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(861), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(945), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(961), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(868), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(961), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(888), + [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(866), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(888), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(909), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(862), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 27), SHIFT_REPEAT(909), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 23), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(582), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 50), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 24), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 19), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(348), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(536), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(497), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(543), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(520), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 24), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 23), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2711), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(529), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(511), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 48), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 20), SHIFT(591), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1855), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1855), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2665), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2838), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(568), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2817), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(567), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2841), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 74), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 94), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 101), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 104), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 66), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 94), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 118), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 38), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(448), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 4), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 28), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 28), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 49), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 20), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 72), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 66), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 28), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 28), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 54), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 54), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 20), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 55), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 55), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 78), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 78), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 79), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 79), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 6), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 112), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 40), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 102), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 102), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 82), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 77), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 77), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 66), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 50), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 119), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 132), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 19), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 130), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 132), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 46), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 130), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 119), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 30), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 30), SHIFT_REPEAT(2472), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 37), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 37), SHIFT_REPEAT(490), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 84), SHIFT_REPEAT(1568), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 84), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_alias_left_hand_side, 1, 0, 9), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 76), SHIFT_REPEAT(417), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 76), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 48), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 131), SHIFT_REPEAT(1593), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 131), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), + [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), SHIFT_REPEAT(339), + [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 30), SHIFT_REPEAT(2457), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 95), SHIFT_REPEAT(249), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 95), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 31), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 53), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 53), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 114), SHIFT_REPEAT(556), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 114), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 42), SHIFT_REPEAT(492), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 42), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(368), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 134), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 135), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 22), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 120), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 153), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 154), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 80), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 81), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 35), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 32), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 51), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 156), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 71), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 23), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 119), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 56), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 152), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 34), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 144), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 145), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 146), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 147), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 133), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5038] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), }; enum ts_external_scanner_symbol_identifiers { @@ -129857,12 +132091,12 @@ static const bool ts_external_scanner_states[19][EXTERNAL_TOKEN_COUNT] = { }, [4] = { [ts_external_token__newline] = true, + [ts_external_token__indent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, [5] = { [ts_external_token__newline] = true, - [ts_external_token__indent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, }, @@ -129898,11 +132132,11 @@ static const bool ts_external_scanner_states[19][EXTERNAL_TOKEN_COUNT] = { }, [12] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACE] = true, }, [13] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_RBRACK] = true, }, [14] = { [ts_external_token_comment] = true, diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 9fc5d6f..6f65e73 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -581,6 +581,8 @@ a, *c = 1, 2, 3 a, = 1, 2 a[b] = c = d a, *b.c = d +m = type(estimator).__module__ +type(estimator).__module__ = "notsklearn" -------------------------------------------------------------------------------- @@ -624,7 +626,26 @@ a, *b.c = d (attribute (identifier) (identifier)))) - (identifier))) + (identifier)) + (assignment + (identifier) + (attribute + (call + (identifier) + (argument_list + (identifier))) + (identifier))) + (assignment + (attribute + (call + (identifier) + (argument_list + (identifier))) + (identifier)) + (string + (string_start) + (string_content) + (string_end)))) ================================================================================ Assignments with type annotations @@ -640,7 +661,7 @@ tail_leaves: List[Leaf] = [] (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier))))) (list))) @@ -1107,7 +1128,7 @@ y: type[int] = int (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier))))) (type @@ -1117,7 +1138,7 @@ y: type[int] = int (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier))))) (identifier))) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 7757894..d02a23f 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -670,7 +670,7 @@ async def d(a:str="default", b=c) -> None: name: (identifier) parameters: (parameters (typed_parameter - (identifier) + name: (identifier) type: (type (identifier)))) body: (block @@ -679,7 +679,7 @@ async def d(a:str="default", b=c) -> None: name: (identifier) parameters: (parameters (typed_parameter - (identifier) + name: (identifier) type: (type (attribute object: (identifier) @@ -690,12 +690,12 @@ async def d(a:str="default", b=c) -> None: name: (identifier) parameters: (parameters (typed_parameter - (identifier) + name: (identifier) type: (type (generic_type (identifier) - (type_parameter - (type + (type_parameters + type_parameter: (type (identifier))))))) return_type: (type (identifier)) @@ -718,7 +718,7 @@ async def d(a:str="default", b=c) -> None: name: (identifier) parameters: (parameters (typed_parameter - (identifier) + name: (identifier) type: (type (identifier)))) return_type: (type @@ -792,7 +792,7 @@ def foo(): name: (identifier) parameters: (parameters (typed_parameter - (list_splat_pattern + name: (list_splat_pattern (identifier)) type: (type (identifier)))) @@ -802,7 +802,7 @@ def foo(): name: (identifier) parameters: (parameters (typed_parameter - (dictionary_splat_pattern + name: (dictionary_splat_pattern (identifier)) type: (type (identifier)))) @@ -844,13 +844,13 @@ def foo(): (call function: (identifier) arguments: (argument_list - (parenthesized_expression + argument: (parenthesized_expression (list_splat (identifier))))) (call function: (identifier) arguments: (argument_list - (parenthesized_expression + argument: (parenthesized_expression (parenthesized_expression (list_splat (identifier)))))))) @@ -1389,7 +1389,7 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type @@ -1398,13 +1398,13 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier))))) (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type @@ -1413,14 +1413,14 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (splat_type (identifier)))))) (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type @@ -1430,14 +1430,14 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (splat_type (identifier)))))) (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type @@ -1448,7 +1448,7 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (constrained_type (type @@ -1458,7 +1458,7 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)))))) (comment) @@ -1466,7 +1466,7 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (constrained_type (type @@ -1478,7 +1478,7 @@ type IntOrStrSequence[T: (int, str)] = Sequence[T] # TypeVar with constraints (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)))))) (comment)) @@ -1496,7 +1496,7 @@ def more_generic[T, *Ts, **P](): (module (function_definition (identifier) - (type_parameter + (type_parameters (type (identifier)) (type @@ -1511,7 +1511,7 @@ def more_generic[T, *Ts, **P](): (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type @@ -1523,17 +1523,17 @@ def more_generic[T, *Ts, **P](): (type (generic_type (identifier) - (type_parameter + (type_parameters (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type @@ -1542,13 +1542,13 @@ def more_generic[T, *Ts, **P](): (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type (generic_type (identifier) - (type_parameter + (type_parameters (type (identifier)) (type