diff --git a/python/extractor/tests/parser/subscripts.py b/python/extractor/tests/parser/subscripts.py new file mode 100644 index 000000000000..02a11c2ad535 --- /dev/null +++ b/python/extractor/tests/parser/subscripts.py @@ -0,0 +1,21 @@ +a[b] + +c[d,e] + +c1[d1,] + +# And now with many comments + +e[ + # comment1 + f + # comment2 +] + +g[ + # comment3 + h, + # comment4 + i + # comment5 +] diff --git a/python/extractor/tsg-python/python.tsg b/python/extractor/tsg-python/python.tsg index 097eb47a6e01..7ad0f3f14244 100644 --- a/python/extractor/tsg-python/python.tsg +++ b/python/extractor/tsg-python/python.tsg @@ -22,7 +22,7 @@ (assignment !type) @assign { let @assign.node = (ast-node @assign "Assign") } -[ (expression_list) (tuple) (tuple_pattern) (pattern_list) ] @tuple +[ (expression_list) (tuple) (tuple_pattern) (pattern_list) (index_expression_list) ] @tuple { let @tuple.node = (ast-node @tuple "Tuple") } (list_pattern) @list @@ -2543,66 +2543,16 @@ (subscript value: (_) @value + subscript: (_) @index ) @subscript { attr (@subscript.node) value = @value.node attr (@value.node) ctx = "load" -} -; Single subscript -(subscript - value: (_) - . - subscript: (_) @index - . -) @subscript -{ attr (@subscript.node) index = @index.node attr (@index.node) ctx = "load" } -; For expressions of the form `a[b, c]` we must explicitly synthesize an internal tuple node -; We do this and also hook it up: -(subscript - value: (_) - . - subscript: (_) @first - . - subscript: (_) -) @subscript -{ - let @subscript.tuple = (ast-node @first "Tuple") - attr (@subscript.tuple) ctx = "load" - attr (@subscript.node) index = @subscript.tuple - edge @subscript.tuple -> @first.node - attr (@subscript.tuple -> @first.node) elts = (named-child-index @first) - attr (@first.node) ctx = "load" -} - -(subscript - value: (_) - . - subscript: (_) - subscript: (_) @elt -) @subscript -{ - edge @subscript.tuple -> @elt.node - attr (@subscript.tuple -> @elt.node) elts = (named-child-index @elt) - attr (@elt.node) ctx = "load" -} - - -; Set the end position correctly -(subscript - value: (_) - . - subscript: (_) - subscript: (_) @last - . -) @subscript -{ - attr (@subscript.tuple) _location_end = (location-end @last) -} @@ -3448,9 +3398,12 @@ ; Left hand side of an assignment such as `[foo, bar] = ...` (list_pattern element: (_) @elt) @parent - ; An unadorned tuple (such as in `x = y, z`) + ; An unadorned tuple such as in `x = y, z` (expression_list element: (_) @elt) @parent + ; An index containing multiple indices such as in `x[y, z]` + (index_expression_list element: (_) @elt) @parent + ; A regular tuple such as `(x, y, z)` (tuple element: (_) @elt) @parent @@ -3486,6 +3439,7 @@ (pattern_list element: (_) @elt) (list_pattern element: (_) @elt) (expression_list element: (_) @elt) + (index_expression_list element: (_) @elt) (parenthesized_expression inner: (_) @elt) (set element: (_) @elt) (match_sequence_pattern (_) @elt) diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index b41906d9d7b9..b0eaaba2a3f3 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -929,11 +929,18 @@ module.exports = grammar({ field('attribute', $.identifier) )), + _index_expression: $ => choice( + $.list_splat, + $.expression, + $.slice + ), + + index_expression_list: $ => open_sequence(field('element', $._index_expression)), + subscript: $ => prec(PREC.call, seq( field('value', $.primary_expression), '[', - commaSep1(field('subscript', choice($.list_splat, $.expression, $.slice))), - optional(','), + field('subscript', choice($._index_expression, $.index_expression_list)), ']' )), diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index fd8b8033851e..0599cc6be181 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -5045,94 +5045,120 @@ ] } }, - "subscript": { - "type": "PREC", - "value": 21, + "_index_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "slice" + } + ] + }, + "index_expression_list": { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "SEQ", "members": [ { "type": "FIELD", - "name": "value", + "name": "element", "content": { "type": "SYMBOL", - "name": "primary_expression" + "name": "_index_expression" } }, { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "subscript", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "list_splat" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "slice" - } - ] - } + "type": "STRING", + "value": "," }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "subscript", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "list_splat" - }, - { - "type": "SYMBOL", - "name": "expression" - }, - { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "element", + "content": { "type": "SYMBOL", - "name": "slice" + "name": "_index_expression" } - ] - } + } + ] } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] } ] + } + ] + } + }, + "subscript": { + "type": "PREC", + "value": 21, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "subscript", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_index_expression" + }, + { + "type": "SYMBOL", + "name": "index_expression_list" + } + ] + } }, { "type": "STRING", diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index 553f75fa6c73..26fa5fd3f76b 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -1829,6 +1829,30 @@ } } }, + { + "type": "index_expression_list", + "named": true, + "fields": { + "element": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + }, + { + "type": "slice", + "named": true + } + ] + } + } + }, { "type": "interpolation", "named": true, @@ -3200,13 +3224,17 @@ "named": true, "fields": { "subscript": { - "multiple": true, + "multiple": false, "required": true, "types": [ { "type": "expression", "named": true }, + { + "type": "index_expression_list", + "named": true + }, { "type": "list_splat", "named": true diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index 3bf023751218..3e6b497addf3 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1506 +#define STATE_COUNT 1479 #define LARGE_STATE_COUNT 149 -#define SYMBOL_COUNT 280 +#define SYMBOL_COUNT 282 #define ALIAS_COUNT 3 #define TOKEN_COUNT 107 #define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 54 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 169 +#define PRODUCTION_ID_COUNT 166 enum { sym_identifier = 1, @@ -232,73 +232,75 @@ enum { sym__right_hand_side = 213, sym_yield = 214, sym_attribute = 215, - sym_subscript = 216, - sym_slice = 217, - sym_call = 218, - sym_typed_parameter = 219, - sym_type = 220, - sym_keyword_argument = 221, - sym_list = 222, - sym_set = 223, - sym_tuple = 224, - sym_dictionary = 225, - sym_pair = 226, - sym_list_comprehension = 227, - sym_dictionary_comprehension = 228, - sym_set_comprehension = 229, - sym_generator_expression = 230, - sym__comprehension_clauses = 231, - sym_parenthesized_expression = 232, - sym__collection_elements = 233, - sym_for_in_clause = 234, - sym_if_clause = 235, - sym_conditional_expression = 236, - sym_concatenated_string = 237, - sym_string = 238, - sym_string_content = 239, - sym_interpolation = 240, - sym__f_expression = 241, - sym_format_specifier = 242, - sym_await = 243, - sym_positional_separator = 244, - sym_keyword_separator = 245, - aux_sym_module_repeat1 = 246, - aux_sym__simple_statements_repeat1 = 247, - aux_sym_import_prefix_repeat1 = 248, - aux_sym__import_list_repeat1 = 249, - aux_sym_print_statement_repeat1 = 250, - aux_sym_assert_statement_repeat1 = 251, - aux_sym_if_statement_repeat1 = 252, - aux_sym_try_statement_repeat1 = 253, - aux_sym_try_statement_repeat2 = 254, - aux_sym_with_clause_repeat1 = 255, - aux_sym_cases_repeat1 = 256, - aux_sym_open_sequence_match_pattern_repeat1 = 257, - aux_sym_match_or_pattern_repeat1 = 258, - aux_sym_match_value_pattern_repeat1 = 259, - aux_sym_match_mapping_pattern_repeat1 = 260, - aux_sym_match_class_pattern_repeat1 = 261, - aux_sym_match_class_pattern_repeat2 = 262, - aux_sym_global_statement_repeat1 = 263, - aux_sym_type_parameters_repeat1 = 264, - aux_sym_argument_list_repeat1 = 265, - aux_sym_decorated_definition_repeat1 = 266, - aux_sym_expression_list_repeat1 = 267, - aux_sym__parameters_repeat1 = 268, - aux_sym__patterns_repeat1 = 269, - aux_sym_comparison_operator_repeat1 = 270, - aux_sym_subscript_repeat1 = 271, - aux_sym_dictionary_repeat1 = 272, - aux_sym__comprehension_clauses_repeat1 = 273, - aux_sym__collection_elements_repeat1 = 274, - aux_sym_for_in_clause_repeat1 = 275, - aux_sym_concatenated_string_repeat1 = 276, - aux_sym_string_repeat1 = 277, - aux_sym_string_content_repeat1 = 278, - aux_sym_format_specifier_repeat1 = 279, - alias_sym_format_expression = 280, - anon_alias_sym_isnot = 281, - anon_alias_sym_notin = 282, + sym__index_expression = 216, + sym_index_expression_list = 217, + sym_subscript = 218, + sym_slice = 219, + sym_call = 220, + sym_typed_parameter = 221, + sym_type = 222, + sym_keyword_argument = 223, + sym_list = 224, + sym_set = 225, + sym_tuple = 226, + sym_dictionary = 227, + sym_pair = 228, + sym_list_comprehension = 229, + sym_dictionary_comprehension = 230, + sym_set_comprehension = 231, + sym_generator_expression = 232, + sym__comprehension_clauses = 233, + sym_parenthesized_expression = 234, + sym__collection_elements = 235, + sym_for_in_clause = 236, + sym_if_clause = 237, + sym_conditional_expression = 238, + sym_concatenated_string = 239, + sym_string = 240, + sym_string_content = 241, + sym_interpolation = 242, + sym__f_expression = 243, + sym_format_specifier = 244, + sym_await = 245, + sym_positional_separator = 246, + sym_keyword_separator = 247, + aux_sym_module_repeat1 = 248, + aux_sym__simple_statements_repeat1 = 249, + aux_sym_import_prefix_repeat1 = 250, + aux_sym__import_list_repeat1 = 251, + aux_sym_print_statement_repeat1 = 252, + aux_sym_assert_statement_repeat1 = 253, + aux_sym_if_statement_repeat1 = 254, + aux_sym_try_statement_repeat1 = 255, + aux_sym_try_statement_repeat2 = 256, + aux_sym_with_clause_repeat1 = 257, + aux_sym_cases_repeat1 = 258, + aux_sym_open_sequence_match_pattern_repeat1 = 259, + aux_sym_match_or_pattern_repeat1 = 260, + aux_sym_match_value_pattern_repeat1 = 261, + aux_sym_match_mapping_pattern_repeat1 = 262, + aux_sym_match_class_pattern_repeat1 = 263, + aux_sym_match_class_pattern_repeat2 = 264, + aux_sym_global_statement_repeat1 = 265, + aux_sym_type_parameters_repeat1 = 266, + aux_sym_argument_list_repeat1 = 267, + aux_sym_decorated_definition_repeat1 = 268, + aux_sym_expression_list_repeat1 = 269, + aux_sym__parameters_repeat1 = 270, + aux_sym__patterns_repeat1 = 271, + aux_sym_comparison_operator_repeat1 = 272, + aux_sym_index_expression_list_repeat1 = 273, + aux_sym_dictionary_repeat1 = 274, + aux_sym__comprehension_clauses_repeat1 = 275, + aux_sym__collection_elements_repeat1 = 276, + aux_sym_for_in_clause_repeat1 = 277, + aux_sym_concatenated_string_repeat1 = 278, + aux_sym_string_repeat1 = 279, + aux_sym_string_content_repeat1 = 280, + aux_sym_format_specifier_repeat1 = 281, + alias_sym_format_expression = 282, + anon_alias_sym_isnot = 283, + anon_alias_sym_notin = 284, }; static const char * const ts_symbol_names[] = { @@ -518,6 +520,8 @@ static const char * const ts_symbol_names[] = { [sym__right_hand_side] = "_right_hand_side", [sym_yield] = "yield", [sym_attribute] = "attribute", + [sym__index_expression] = "_index_expression", + [sym_index_expression_list] = "index_expression_list", [sym_subscript] = "subscript", [sym_slice] = "slice", [sym_call] = "call", @@ -573,7 +577,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__parameters_repeat1] = "_parameters_repeat1", [aux_sym__patterns_repeat1] = "_patterns_repeat1", [aux_sym_comparison_operator_repeat1] = "comparison_operator_repeat1", - [aux_sym_subscript_repeat1] = "subscript_repeat1", + [aux_sym_index_expression_list_repeat1] = "index_expression_list_repeat1", [aux_sym_dictionary_repeat1] = "dictionary_repeat1", [aux_sym__comprehension_clauses_repeat1] = "_comprehension_clauses_repeat1", [aux_sym__collection_elements_repeat1] = "_collection_elements_repeat1", @@ -804,6 +808,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__right_hand_side] = sym__right_hand_side, [sym_yield] = sym_yield, [sym_attribute] = sym_attribute, + [sym__index_expression] = sym__index_expression, + [sym_index_expression_list] = sym_index_expression_list, [sym_subscript] = sym_subscript, [sym_slice] = sym_slice, [sym_call] = sym_call, @@ -859,7 +865,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__parameters_repeat1] = aux_sym__parameters_repeat1, [aux_sym__patterns_repeat1] = aux_sym__patterns_repeat1, [aux_sym_comparison_operator_repeat1] = aux_sym_comparison_operator_repeat1, - [aux_sym_subscript_repeat1] = aux_sym_subscript_repeat1, + [aux_sym_index_expression_list_repeat1] = aux_sym_index_expression_list_repeat1, [aux_sym_dictionary_repeat1] = aux_sym_dictionary_repeat1, [aux_sym__comprehension_clauses_repeat1] = aux_sym__comprehension_clauses_repeat1, [aux_sym__collection_elements_repeat1] = aux_sym__collection_elements_repeat1, @@ -1742,6 +1748,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__index_expression] = { + .visible = false, + .named = true, + }, + [sym_index_expression_list] = { + .visible = true, + .named = true, + }, [sym_subscript] = { .visible = true, .named = true, @@ -1962,7 +1976,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_subscript_repeat1] = { + [aux_sym_index_expression_list_repeat1] = { .visible = false, .named = false, }, @@ -2194,8 +2208,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [66] = {.index = 94, .length = 2}, [67] = {.index = 43, .length = 1}, [68] = {.index = 96, .length = 1}, - [69] = {.index = 97, .length = 2}, - [70] = {.index = 99, .length = 1}, + [69] = {.index = 97, .length = 1}, + [70] = {.index = 98, .length = 2}, [71] = {.index = 100, .length = 2}, [72] = {.index = 100, .length = 2}, [74] = {.index = 102, .length = 1}, @@ -2219,80 +2233,77 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [92] = {.index = 144, .length = 3}, [93] = {.index = 85, .length = 2}, [94] = {.index = 147, .length = 1}, - [95] = {.index = 148, .length = 1}, - [96] = {.index = 149, .length = 3}, - [97] = {.index = 152, .length = 2}, - [98] = {.index = 154, .length = 2}, - [99] = {.index = 156, .length = 1}, - [100] = {.index = 157, .length = 2}, - [101] = {.index = 159, .length = 2}, - [102] = {.index = 161, .length = 4}, - [103] = {.index = 165, .length = 2}, - [104] = {.index = 167, .length = 4}, - [105] = {.index = 171, .length = 4}, - [106] = {.index = 175, .length = 2}, - [107] = {.index = 177, .length = 3}, - [108] = {.index = 180, .length = 3}, - [109] = {.index = 183, .length = 4}, - [110] = {.index = 187, .length = 2}, - [111] = {.index = 189, .length = 2}, - [112] = {.index = 191, .length = 1}, - [113] = {.index = 192, .length = 1}, - [114] = {.index = 193, .length = 3}, - [115] = {.index = 196, .length = 2}, - [116] = {.index = 198, .length = 2}, - [117] = {.index = 200, .length = 4}, - [118] = {.index = 204, .length = 4}, - [119] = {.index = 208, .length = 4}, - [120] = {.index = 212, .length = 4}, - [121] = {.index = 216, .length = 4}, - [122] = {.index = 220, .length = 3}, - [123] = {.index = 223, .length = 2}, - [124] = {.index = 225, .length = 2}, - [125] = {.index = 227, .length = 2}, - [126] = {.index = 229, .length = 3}, - [127] = {.index = 232, .length = 5}, - [128] = {.index = 237, .length = 3}, - [129] = {.index = 240, .length = 4}, - [130] = {.index = 244, .length = 4}, - [131] = {.index = 248, .length = 4}, - [132] = {.index = 252, .length = 4}, - [133] = {.index = 256, .length = 2}, - [134] = {.index = 258, .length = 1}, - [135] = {.index = 259, .length = 3}, - [136] = {.index = 262, .length = 1}, - [137] = {.index = 263, .length = 2}, - [138] = {.index = 265, .length = 2}, - [139] = {.index = 267, .length = 1}, - [140] = {.index = 268, .length = 4}, - [141] = {.index = 272, .length = 5}, - [142] = {.index = 277, .length = 5}, - [143] = {.index = 282, .length = 3}, - [144] = {.index = 285, .length = 3}, - [145] = {.index = 288, .length = 4}, - [146] = {.index = 292, .length = 4}, - [147] = {.index = 296, .length = 4}, - [148] = {.index = 300, .length = 5}, - [149] = {.index = 305, .length = 5}, - [150] = {.index = 310, .length = 2}, - [151] = {.index = 312, .length = 3}, - [152] = {.index = 315, .length = 4}, - [153] = {.index = 319, .length = 3}, - [154] = {.index = 322, .length = 3}, - [155] = {.index = 325, .length = 5}, - [156] = {.index = 330, .length = 5}, - [157] = {.index = 335, .length = 5}, - [158] = {.index = 340, .length = 5}, - [159] = {.index = 345, .length = 5}, - [160] = {.index = 350, .length = 3}, - [161] = {.index = 353, .length = 3}, - [162] = {.index = 356, .length = 4}, - [163] = {.index = 360, .length = 2}, - [164] = {.index = 362, .length = 6}, - [165] = {.index = 368, .length = 6}, - [166] = {.index = 374, .length = 3}, - [167] = {.index = 377, .length = 4}, - [168] = {.index = 381, .length = 4}, + [95] = {.index = 148, .length = 2}, + [96] = {.index = 150, .length = 1}, + [97] = {.index = 151, .length = 2}, + [98] = {.index = 153, .length = 2}, + [99] = {.index = 155, .length = 4}, + [100] = {.index = 159, .length = 2}, + [101] = {.index = 161, .length = 4}, + [102] = {.index = 165, .length = 4}, + [103] = {.index = 169, .length = 2}, + [104] = {.index = 171, .length = 3}, + [105] = {.index = 174, .length = 3}, + [106] = {.index = 177, .length = 4}, + [107] = {.index = 181, .length = 2}, + [108] = {.index = 183, .length = 2}, + [109] = {.index = 185, .length = 1}, + [110] = {.index = 186, .length = 1}, + [111] = {.index = 187, .length = 3}, + [112] = {.index = 190, .length = 2}, + [113] = {.index = 192, .length = 2}, + [114] = {.index = 194, .length = 4}, + [115] = {.index = 198, .length = 4}, + [116] = {.index = 202, .length = 4}, + [117] = {.index = 206, .length = 4}, + [118] = {.index = 210, .length = 4}, + [119] = {.index = 214, .length = 3}, + [120] = {.index = 217, .length = 2}, + [121] = {.index = 219, .length = 2}, + [122] = {.index = 221, .length = 2}, + [123] = {.index = 223, .length = 3}, + [124] = {.index = 226, .length = 5}, + [125] = {.index = 231, .length = 3}, + [126] = {.index = 234, .length = 4}, + [127] = {.index = 238, .length = 4}, + [128] = {.index = 242, .length = 4}, + [129] = {.index = 246, .length = 4}, + [130] = {.index = 250, .length = 2}, + [131] = {.index = 252, .length = 1}, + [132] = {.index = 253, .length = 3}, + [133] = {.index = 256, .length = 1}, + [134] = {.index = 257, .length = 2}, + [135] = {.index = 259, .length = 2}, + [136] = {.index = 261, .length = 1}, + [137] = {.index = 262, .length = 4}, + [138] = {.index = 266, .length = 5}, + [139] = {.index = 271, .length = 5}, + [140] = {.index = 276, .length = 3}, + [141] = {.index = 279, .length = 3}, + [142] = {.index = 282, .length = 4}, + [143] = {.index = 286, .length = 4}, + [144] = {.index = 290, .length = 4}, + [145] = {.index = 294, .length = 5}, + [146] = {.index = 299, .length = 5}, + [147] = {.index = 304, .length = 2}, + [148] = {.index = 306, .length = 3}, + [149] = {.index = 309, .length = 4}, + [150] = {.index = 313, .length = 3}, + [151] = {.index = 316, .length = 3}, + [152] = {.index = 319, .length = 5}, + [153] = {.index = 324, .length = 5}, + [154] = {.index = 329, .length = 5}, + [155] = {.index = 334, .length = 5}, + [156] = {.index = 339, .length = 5}, + [157] = {.index = 344, .length = 3}, + [158] = {.index = 347, .length = 3}, + [159] = {.index = 350, .length = 4}, + [160] = {.index = 354, .length = 2}, + [161] = {.index = 356, .length = 6}, + [162] = {.index = 362, .length = 6}, + [163] = {.index = 368, .length = 3}, + [164] = {.index = 371, .length = 4}, + [165] = {.index = 375, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2454,10 +2465,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [96] = {field_stop, 1}, [97] = + {field_start, 0}, + [98] = {field_subscript, 2}, {field_value, 0}, - [99] = - {field_start, 0}, [100] = {field_operators, 0}, {field_operators, 1}, @@ -2528,312 +2539,303 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [147] = {field_step, 2}, [148] = - {field_subscript, 1}, - [149] = - {field_subscript, 2}, - {field_subscript, 3, .inherited = true}, - {field_value, 0}, - [152] = - {field_subscript, 0, .inherited = true}, - {field_subscript, 1, .inherited = true}, - [154] = {field_start, 0}, {field_stop, 2}, - [156] = + [150] = {field_name, 4, .inherited = true}, - [157] = + [151] = {field_module_name, 1}, {field_name, 4, .inherited = true}, - [159] = + [153] = {field_left, 1}, {field_right, 3}, - [161] = + [155] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [165] = + [159] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [167] = + [161] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [171] = + [165] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [175] = + [169] = {field_body, 4}, {field_body, 5}, - [177] = + [171] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [180] = + [174] = {field_body, 5}, {field_left, 1}, {field_right, 3}, - [183] = + [177] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [187] = + [181] = {field_prefix_operator, 0}, {field_real, 1}, - [189] = + [183] = {field_default, 2, .inherited = true}, {field_name, 1}, - [191] = + [185] = {field_bound, 1}, - [192] = + [186] = {field_default, 1}, - [193] = + [187] = {field_bound, 1, .inherited = true}, {field_default, 2, .inherited = true}, {field_name, 0}, - [196] = + [190] = {field_type_parameter, 1}, {field_type_parameter, 2, .inherited = true}, - [198] = + [192] = {field_type_parameter, 0, .inherited = true}, {field_type_parameter, 1, .inherited = true}, - [200] = + [194] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [204] = + [198] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [208] = + [202] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_type_parameters, 2}, - [212] = + [206] = {field_body, 5}, {field_name, 1}, {field_superclasses, 3}, {field_type_parameters, 2}, - [216] = + [210] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_superclasses, 2}, - [220] = + [214] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [223] = + [217] = {field_step, 3}, {field_stop, 1}, - [225] = + [219] = {field_start, 0}, {field_step, 3}, - [227] = + [221] = {field_left, 2}, {field_right, 4}, - [229] = + [223] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [232] = + [226] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [237] = + [231] = {field_body, 6}, {field_left, 2}, {field_right, 4}, - [240] = + [234] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [244] = + [238] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [248] = + [242] = {field_alternative, 6}, {field_body, 5}, {field_left, 1}, {field_right, 3}, - [252] = + [246] = {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [256] = + [250] = {field_body, 3}, {field_type, 1}, - [258] = + [252] = {field_content, 1}, - [259] = + [253] = {field_imaginary, 2}, {field_operator, 1}, {field_real, 0}, - [262] = + [256] = {field_test, 1}, - [263] = + [257] = {field_body, 3}, {field_pattern, 1}, - [265] = + [259] = {field_alias, 2}, {field_pattern, 0}, - [267] = + [261] = {field_class, 0}, - [268] = + [262] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [272] = + [266] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [277] = + [271] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_superclasses, 3}, {field_type_parameters, 2}, - [282] = + [276] = {field_start, 0}, {field_step, 4}, {field_stop, 2}, - [285] = + [279] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [288] = + [282] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [292] = + [286] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [296] = + [290] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [300] = + [294] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [305] = + [299] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [310] = + [304] = {field_body, 4}, {field_type, 2}, - [312] = + [306] = {field_body, 3}, {field_body, 4}, {field_type, 1}, - [315] = + [309] = {field_imaginary, 3}, {field_operator, 2}, {field_prefix_operator, 0}, {field_real, 1}, - [319] = + [313] = {field_body, 3}, {field_body, 4}, {field_pattern, 1}, - [322] = + [316] = {field_body, 4}, {field_guard, 2}, {field_pattern, 1}, - [325] = + [319] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [330] = + [324] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [335] = + [329] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [340] = + [334] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [345] = + [339] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [350] = + [344] = {field_body, 4}, {field_body, 5}, {field_type, 2}, - [353] = + [347] = {field_alias, 3}, {field_body, 5}, {field_type, 1}, - [356] = + [350] = {field_body, 4}, {field_body, 5}, {field_guard, 2}, {field_pattern, 1}, - [360] = + [354] = {field_attribute, 0}, {field_value, 2}, - [362] = + [356] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [368] = + [362] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [374] = + [368] = {field_alias, 4}, {field_body, 6}, {field_type, 2}, - [377] = + [371] = {field_alias, 3}, {field_body, 5}, {field_body, 6}, {field_type, 1}, - [381] = + [375] = {field_alias, 4}, {field_body, 6}, {field_body, 7}, @@ -2913,61 +2915,61 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [93] = { [1] = sym_parenthesized_expression, }, - [102] = { + [99] = { [3] = sym_block, }, - [107] = { + [104] = { [5] = sym_block, }, - [108] = { + [105] = { [5] = sym_block, }, - [118] = { + [115] = { [5] = sym_block, }, - [120] = { + [117] = { [5] = sym_block, }, - [128] = { + [125] = { [6] = sym_block, }, - [130] = { + [127] = { [6] = sym_block, }, - [131] = { + [128] = { [5] = sym_block, }, - [133] = { + [130] = { [3] = sym_block, }, - [137] = { + [134] = { [3] = sym_block, }, - [140] = { + [137] = { [6] = sym_block, }, - [145] = { + [142] = { [6] = sym_block, }, - [147] = { + [144] = { [7] = sym_block, }, - [150] = { + [147] = { [4] = sym_block, }, - [154] = { + [151] = { [4] = sym_block, }, - [156] = { + [153] = { [7] = sym_block, }, - [159] = { + [156] = { [8] = sym_block, }, - [161] = { + [158] = { [5] = sym_block, }, - [166] = { + [163] = { [6] = sym_block, }, }; @@ -6151,12 +6153,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 50, .external_lex_state = 3}, [58] = {.lex_state = 50, .external_lex_state = 3}, [59] = {.lex_state = 50, .external_lex_state = 3}, - [60] = {.lex_state = 50, .external_lex_state = 3}, + [60] = {.lex_state = 50, .external_lex_state = 2}, [61] = {.lex_state = 50, .external_lex_state = 3}, - [62] = {.lex_state = 50, .external_lex_state = 2}, + [62] = {.lex_state = 50, .external_lex_state = 3}, [63] = {.lex_state = 50, .external_lex_state = 3}, - [64] = {.lex_state = 50, .external_lex_state = 3}, - [65] = {.lex_state = 50, .external_lex_state = 2}, + [64] = {.lex_state = 50, .external_lex_state = 2}, + [65] = {.lex_state = 50, .external_lex_state = 3}, [66] = {.lex_state = 50, .external_lex_state = 4}, [67] = {.lex_state = 50, .external_lex_state = 4}, [68] = {.lex_state = 50, .external_lex_state = 5}, @@ -6165,7 +6167,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [71] = {.lex_state = 50, .external_lex_state = 5}, [72] = {.lex_state = 50, .external_lex_state = 5}, [73] = {.lex_state = 50, .external_lex_state = 5}, - [74] = {.lex_state = 50, .external_lex_state = 4}, + [74] = {.lex_state = 50, .external_lex_state = 5}, [75] = {.lex_state = 50, .external_lex_state = 5}, [76] = {.lex_state = 50, .external_lex_state = 5}, [77] = {.lex_state = 50, .external_lex_state = 5}, @@ -6216,7 +6218,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 50, .external_lex_state = 5}, [123] = {.lex_state = 50, .external_lex_state = 5}, [124] = {.lex_state = 50, .external_lex_state = 5}, - [125] = {.lex_state = 50, .external_lex_state = 5}, + [125] = {.lex_state = 50, .external_lex_state = 4}, [126] = {.lex_state = 50, .external_lex_state = 5}, [127] = {.lex_state = 50, .external_lex_state = 4}, [128] = {.lex_state = 50, .external_lex_state = 4}, @@ -6225,18 +6227,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [131] = {.lex_state = 50, .external_lex_state = 4}, [132] = {.lex_state = 50, .external_lex_state = 4}, [133] = {.lex_state = 50, .external_lex_state = 2}, - [134] = {.lex_state = 50, .external_lex_state = 2}, - [135] = {.lex_state = 50, .external_lex_state = 4}, + [134] = {.lex_state = 50, .external_lex_state = 4}, + [135] = {.lex_state = 50, .external_lex_state = 2}, [136] = {.lex_state = 50, .external_lex_state = 2}, - [137] = {.lex_state = 50, .external_lex_state = 2}, - [138] = {.lex_state = 14, .external_lex_state = 2}, + [137] = {.lex_state = 14, .external_lex_state = 2}, + [138] = {.lex_state = 50, .external_lex_state = 2}, [139] = {.lex_state = 14, .external_lex_state = 2}, [140] = {.lex_state = 14, .external_lex_state = 2}, - [141] = {.lex_state = 14, .external_lex_state = 2}, - [142] = {.lex_state = 50, .external_lex_state = 4}, - [143] = {.lex_state = 50, .external_lex_state = 2}, + [141] = {.lex_state = 50, .external_lex_state = 4}, + [142] = {.lex_state = 14, .external_lex_state = 2}, + [143] = {.lex_state = 50, .external_lex_state = 4}, [144] = {.lex_state = 50, .external_lex_state = 2}, - [145] = {.lex_state = 50, .external_lex_state = 4}, + [145] = {.lex_state = 50, .external_lex_state = 2}, [146] = {.lex_state = 50, .external_lex_state = 2}, [147] = {.lex_state = 14, .external_lex_state = 2}, [148] = {.lex_state = 50, .external_lex_state = 2}, @@ -6246,21 +6248,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [152] = {.lex_state = 14, .external_lex_state = 2}, [153] = {.lex_state = 50, .external_lex_state = 2}, [154] = {.lex_state = 50, .external_lex_state = 2}, - [155] = {.lex_state = 50, .external_lex_state = 2}, - [156] = {.lex_state = 50, .external_lex_state = 2}, + [155] = {.lex_state = 14, .external_lex_state = 2}, + [156] = {.lex_state = 14, .external_lex_state = 2}, [157] = {.lex_state = 50, .external_lex_state = 2}, - [158] = {.lex_state = 14, .external_lex_state = 2}, + [158] = {.lex_state = 50, .external_lex_state = 2}, [159] = {.lex_state = 50, .external_lex_state = 2}, - [160] = {.lex_state = 14, .external_lex_state = 2}, - [161] = {.lex_state = 14, .external_lex_state = 2}, + [160] = {.lex_state = 50, .external_lex_state = 2}, + [161] = {.lex_state = 50, .external_lex_state = 2}, [162] = {.lex_state = 14, .external_lex_state = 2}, [163] = {.lex_state = 50, .external_lex_state = 2}, [164] = {.lex_state = 14, .external_lex_state = 2}, - [165] = {.lex_state = 50, .external_lex_state = 2}, + [165] = {.lex_state = 14, .external_lex_state = 2}, [166] = {.lex_state = 50, .external_lex_state = 2}, [167] = {.lex_state = 50, .external_lex_state = 2}, [168] = {.lex_state = 50, .external_lex_state = 2}, - [169] = {.lex_state = 50, .external_lex_state = 4}, + [169] = {.lex_state = 50, .external_lex_state = 2}, [170] = {.lex_state = 50, .external_lex_state = 2}, [171] = {.lex_state = 50, .external_lex_state = 2}, [172] = {.lex_state = 50, .external_lex_state = 2}, @@ -6269,30 +6271,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [175] = {.lex_state = 50, .external_lex_state = 2}, [176] = {.lex_state = 50, .external_lex_state = 2}, [177] = {.lex_state = 50, .external_lex_state = 4}, - [178] = {.lex_state = 50, .external_lex_state = 2}, + [178] = {.lex_state = 50, .external_lex_state = 4}, [179] = {.lex_state = 50, .external_lex_state = 2}, [180] = {.lex_state = 50, .external_lex_state = 2}, [181] = {.lex_state = 50, .external_lex_state = 2}, - [182] = {.lex_state = 50, .external_lex_state = 4}, + [182] = {.lex_state = 50, .external_lex_state = 2}, [183] = {.lex_state = 50, .external_lex_state = 2}, [184] = {.lex_state = 50, .external_lex_state = 2}, [185] = {.lex_state = 50, .external_lex_state = 2}, - [186] = {.lex_state = 50, .external_lex_state = 4}, + [186] = {.lex_state = 50, .external_lex_state = 2}, [187] = {.lex_state = 50, .external_lex_state = 2}, [188] = {.lex_state = 50, .external_lex_state = 2}, [189] = {.lex_state = 50, .external_lex_state = 2}, - [190] = {.lex_state = 50, .external_lex_state = 2}, - [191] = {.lex_state = 50, .external_lex_state = 4}, - [192] = {.lex_state = 50, .external_lex_state = 2}, + [190] = {.lex_state = 50, .external_lex_state = 4}, + [191] = {.lex_state = 50, .external_lex_state = 2}, + [192] = {.lex_state = 50, .external_lex_state = 4}, [193] = {.lex_state = 50, .external_lex_state = 2}, - [194] = {.lex_state = 50, .external_lex_state = 4}, + [194] = {.lex_state = 50, .external_lex_state = 2}, [195] = {.lex_state = 50, .external_lex_state = 2}, [196] = {.lex_state = 50, .external_lex_state = 2}, [197] = {.lex_state = 50, .external_lex_state = 2}, [198] = {.lex_state = 50, .external_lex_state = 2}, [199] = {.lex_state = 50, .external_lex_state = 2}, [200] = {.lex_state = 50, .external_lex_state = 2}, - [201] = {.lex_state = 50, .external_lex_state = 2}, + [201] = {.lex_state = 50, .external_lex_state = 4}, [202] = {.lex_state = 50, .external_lex_state = 2}, [203] = {.lex_state = 50, .external_lex_state = 2}, [204] = {.lex_state = 50, .external_lex_state = 2}, @@ -6300,177 +6302,177 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [206] = {.lex_state = 50, .external_lex_state = 2}, [207] = {.lex_state = 50, .external_lex_state = 2}, [208] = {.lex_state = 50, .external_lex_state = 2}, - [209] = {.lex_state = 50, .external_lex_state = 2}, + [209] = {.lex_state = 50, .external_lex_state = 4}, [210] = {.lex_state = 50, .external_lex_state = 2}, [211] = {.lex_state = 50, .external_lex_state = 2}, - [212] = {.lex_state = 16}, - [213] = {.lex_state = 50, .external_lex_state = 2}, - [214] = {.lex_state = 16}, - [215] = {.lex_state = 16}, - [216] = {.lex_state = 16}, - [217] = {.lex_state = 16}, - [218] = {.lex_state = 16}, - [219] = {.lex_state = 50, .external_lex_state = 2}, + [212] = {.lex_state = 50, .external_lex_state = 2}, + [213] = {.lex_state = 16}, + [214] = {.lex_state = 14, .external_lex_state = 2}, + [215] = {.lex_state = 14, .external_lex_state = 2}, + [216] = {.lex_state = 50, .external_lex_state = 2}, + [217] = {.lex_state = 14, .external_lex_state = 2}, + [218] = {.lex_state = 14, .external_lex_state = 2}, + [219] = {.lex_state = 14, .external_lex_state = 2}, [220] = {.lex_state = 16}, [221] = {.lex_state = 50, .external_lex_state = 2}, [222] = {.lex_state = 14, .external_lex_state = 2}, [223] = {.lex_state = 50, .external_lex_state = 3}, - [224] = {.lex_state = 14, .external_lex_state = 2}, - [225] = {.lex_state = 50, .external_lex_state = 3}, + [224] = {.lex_state = 50, .external_lex_state = 2}, + [225] = {.lex_state = 50, .external_lex_state = 2}, [226] = {.lex_state = 14, .external_lex_state = 2}, - [227] = {.lex_state = 14, .external_lex_state = 2}, + [227] = {.lex_state = 50, .external_lex_state = 3}, [228] = {.lex_state = 50, .external_lex_state = 2}, [229] = {.lex_state = 50, .external_lex_state = 2}, [230] = {.lex_state = 50, .external_lex_state = 2}, [231] = {.lex_state = 50, .external_lex_state = 2}, - [232] = {.lex_state = 50, .external_lex_state = 2}, - [233] = {.lex_state = 14, .external_lex_state = 2}, - [234] = {.lex_state = 14, .external_lex_state = 2}, + [232] = {.lex_state = 50, .external_lex_state = 3}, + [233] = {.lex_state = 50, .external_lex_state = 3}, + [234] = {.lex_state = 50, .external_lex_state = 2}, [235] = {.lex_state = 50, .external_lex_state = 2}, - [236] = {.lex_state = 14, .external_lex_state = 2}, + [236] = {.lex_state = 50, .external_lex_state = 2}, [237] = {.lex_state = 50, .external_lex_state = 2}, - [238] = {.lex_state = 50, .external_lex_state = 3}, - [239] = {.lex_state = 50, .external_lex_state = 2}, - [240] = {.lex_state = 14, .external_lex_state = 2}, + [238] = {.lex_state = 50, .external_lex_state = 2}, + [239] = {.lex_state = 15, .external_lex_state = 6}, + [240] = {.lex_state = 50, .external_lex_state = 2}, [241] = {.lex_state = 50, .external_lex_state = 2}, - [242] = {.lex_state = 14, .external_lex_state = 2}, - [243] = {.lex_state = 50, .external_lex_state = 3}, + [242] = {.lex_state = 50, .external_lex_state = 2}, + [243] = {.lex_state = 50, .external_lex_state = 2}, [244] = {.lex_state = 50, .external_lex_state = 2}, - [245] = {.lex_state = 14, .external_lex_state = 2}, - [246] = {.lex_state = 50, .external_lex_state = 2}, + [245] = {.lex_state = 50, .external_lex_state = 2}, + [246] = {.lex_state = 15, .external_lex_state = 6}, [247] = {.lex_state = 50, .external_lex_state = 2}, [248] = {.lex_state = 50, .external_lex_state = 2}, - [249] = {.lex_state = 14, .external_lex_state = 2}, - [250] = {.lex_state = 15, .external_lex_state = 6}, + [249] = {.lex_state = 50, .external_lex_state = 2}, + [250] = {.lex_state = 50, .external_lex_state = 2}, [251] = {.lex_state = 50, .external_lex_state = 2}, - [252] = {.lex_state = 50, .external_lex_state = 2}, + [252] = {.lex_state = 50, .external_lex_state = 3}, [253] = {.lex_state = 50, .external_lex_state = 2}, [254] = {.lex_state = 50, .external_lex_state = 2}, [255] = {.lex_state = 50, .external_lex_state = 2}, - [256] = {.lex_state = 15, .external_lex_state = 6}, + [256] = {.lex_state = 50, .external_lex_state = 2}, [257] = {.lex_state = 50, .external_lex_state = 2}, [258] = {.lex_state = 50, .external_lex_state = 2}, - [259] = {.lex_state = 14, .external_lex_state = 2}, + [259] = {.lex_state = 50, .external_lex_state = 2}, [260] = {.lex_state = 50, .external_lex_state = 2}, - [261] = {.lex_state = 14, .external_lex_state = 2}, - [262] = {.lex_state = 14, .external_lex_state = 2}, + [261] = {.lex_state = 50, .external_lex_state = 3}, + [262] = {.lex_state = 50, .external_lex_state = 2}, [263] = {.lex_state = 50, .external_lex_state = 3}, - [264] = {.lex_state = 50, .external_lex_state = 2}, + [264] = {.lex_state = 50, .external_lex_state = 3}, [265] = {.lex_state = 50, .external_lex_state = 2}, [266] = {.lex_state = 50, .external_lex_state = 2}, - [267] = {.lex_state = 14, .external_lex_state = 2}, + [267] = {.lex_state = 50, .external_lex_state = 2}, [268] = {.lex_state = 50, .external_lex_state = 3}, - [269] = {.lex_state = 50, .external_lex_state = 2}, - [270] = {.lex_state = 50, .external_lex_state = 2}, - [271] = {.lex_state = 15, .external_lex_state = 4}, + [269] = {.lex_state = 50, .external_lex_state = 3}, + [270] = {.lex_state = 50, .external_lex_state = 3}, + [271] = {.lex_state = 14, .external_lex_state = 2}, [272] = {.lex_state = 50, .external_lex_state = 3}, - [273] = {.lex_state = 50, .external_lex_state = 2}, + [273] = {.lex_state = 14, .external_lex_state = 2}, [274] = {.lex_state = 50, .external_lex_state = 2}, - [275] = {.lex_state = 50, .external_lex_state = 3}, - [276] = {.lex_state = 50, .external_lex_state = 3}, + [275] = {.lex_state = 15, .external_lex_state = 4}, + [276] = {.lex_state = 50, .external_lex_state = 2}, [277] = {.lex_state = 50, .external_lex_state = 2}, - [278] = {.lex_state = 14, .external_lex_state = 2}, - [279] = {.lex_state = 50, .external_lex_state = 2}, + [278] = {.lex_state = 50, .external_lex_state = 2}, + [279] = {.lex_state = 50, .external_lex_state = 3}, [280] = {.lex_state = 50, .external_lex_state = 3}, - [281] = {.lex_state = 50, .external_lex_state = 3}, + [281] = {.lex_state = 50, .external_lex_state = 2}, [282] = {.lex_state = 50, .external_lex_state = 2}, [283] = {.lex_state = 50, .external_lex_state = 2}, - [284] = {.lex_state = 50, .external_lex_state = 3}, - [285] = {.lex_state = 50, .external_lex_state = 3}, - [286] = {.lex_state = 50, .external_lex_state = 2}, + [284] = {.lex_state = 50, .external_lex_state = 2}, + [285] = {.lex_state = 50, .external_lex_state = 2}, + [286] = {.lex_state = 50, .external_lex_state = 3}, [287] = {.lex_state = 50, .external_lex_state = 2}, [288] = {.lex_state = 50, .external_lex_state = 2}, [289] = {.lex_state = 50, .external_lex_state = 2}, [290] = {.lex_state = 50, .external_lex_state = 2}, [291] = {.lex_state = 50, .external_lex_state = 2}, [292] = {.lex_state = 50, .external_lex_state = 2}, - [293] = {.lex_state = 50, .external_lex_state = 3}, - [294] = {.lex_state = 50, .external_lex_state = 3}, + [293] = {.lex_state = 50, .external_lex_state = 2}, + [294] = {.lex_state = 50, .external_lex_state = 2}, [295] = {.lex_state = 50, .external_lex_state = 2}, [296] = {.lex_state = 50, .external_lex_state = 2}, - [297] = {.lex_state = 50, .external_lex_state = 2}, + [297] = {.lex_state = 14, .external_lex_state = 2}, [298] = {.lex_state = 50, .external_lex_state = 2}, [299] = {.lex_state = 50, .external_lex_state = 2}, [300] = {.lex_state = 50, .external_lex_state = 2}, - [301] = {.lex_state = 50, .external_lex_state = 4}, + [301] = {.lex_state = 14, .external_lex_state = 2}, [302] = {.lex_state = 50, .external_lex_state = 2}, [303] = {.lex_state = 50, .external_lex_state = 2}, - [304] = {.lex_state = 50, .external_lex_state = 2}, + [304] = {.lex_state = 50, .external_lex_state = 3}, [305] = {.lex_state = 50, .external_lex_state = 4}, - [306] = {.lex_state = 14, .external_lex_state = 2}, + [306] = {.lex_state = 50, .external_lex_state = 4}, [307] = {.lex_state = 50, .external_lex_state = 4}, [308] = {.lex_state = 50, .external_lex_state = 2}, - [309] = {.lex_state = 50, .external_lex_state = 2}, - [310] = {.lex_state = 50, .external_lex_state = 4}, - [311] = {.lex_state = 50, .external_lex_state = 2}, + [309] = {.lex_state = 15, .external_lex_state = 6}, + [310] = {.lex_state = 50, .external_lex_state = 2}, + [311] = {.lex_state = 50, .external_lex_state = 4}, [312] = {.lex_state = 50, .external_lex_state = 2}, [313] = {.lex_state = 50, .external_lex_state = 2}, [314] = {.lex_state = 50, .external_lex_state = 2}, - [315] = {.lex_state = 50, .external_lex_state = 2}, - [316] = {.lex_state = 50, .external_lex_state = 2}, - [317] = {.lex_state = 50, .external_lex_state = 2}, - [318] = {.lex_state = 50, .external_lex_state = 3}, + [315] = {.lex_state = 50, .external_lex_state = 3}, + [316] = {.lex_state = 50, .external_lex_state = 3}, + [317] = {.lex_state = 50, .external_lex_state = 3}, + [318] = {.lex_state = 50, .external_lex_state = 2}, [319] = {.lex_state = 50, .external_lex_state = 2}, - [320] = {.lex_state = 50, .external_lex_state = 2}, - [321] = {.lex_state = 50, .external_lex_state = 2}, - [322] = {.lex_state = 15, .external_lex_state = 6}, - [323] = {.lex_state = 50, .external_lex_state = 2}, - [324] = {.lex_state = 14, .external_lex_state = 2}, - [325] = {.lex_state = 50, .external_lex_state = 3}, - [326] = {.lex_state = 16, .external_lex_state = 6}, - [327] = {.lex_state = 16, .external_lex_state = 6}, + [320] = {.lex_state = 15}, + [321] = {.lex_state = 50, .external_lex_state = 3}, + [322] = {.lex_state = 16, .external_lex_state = 6}, + [323] = {.lex_state = 50, .external_lex_state = 3}, + [324] = {.lex_state = 16, .external_lex_state = 6}, + [325] = {.lex_state = 15}, + [326] = {.lex_state = 50, .external_lex_state = 2}, + [327] = {.lex_state = 50, .external_lex_state = 2}, [328] = {.lex_state = 50, .external_lex_state = 3}, - [329] = {.lex_state = 50, .external_lex_state = 2}, - [330] = {.lex_state = 50, .external_lex_state = 2}, + [329] = {.lex_state = 50, .external_lex_state = 3}, + [330] = {.lex_state = 50, .external_lex_state = 3}, [331] = {.lex_state = 50, .external_lex_state = 2}, - [332] = {.lex_state = 14, .external_lex_state = 2}, + [332] = {.lex_state = 50, .external_lex_state = 2}, [333] = {.lex_state = 50, .external_lex_state = 2}, - [334] = {.lex_state = 50, .external_lex_state = 3}, - [335] = {.lex_state = 15, .external_lex_state = 6}, - [336] = {.lex_state = 50, .external_lex_state = 3}, + [334] = {.lex_state = 15, .external_lex_state = 6}, + [335] = {.lex_state = 50, .external_lex_state = 2}, + [336] = {.lex_state = 50, .external_lex_state = 2}, [337] = {.lex_state = 50, .external_lex_state = 3}, - [338] = {.lex_state = 50, .external_lex_state = 3}, + [338] = {.lex_state = 50, .external_lex_state = 2}, [339] = {.lex_state = 50, .external_lex_state = 2}, - [340] = {.lex_state = 50, .external_lex_state = 2}, - [341] = {.lex_state = 50, .external_lex_state = 2}, + [340] = {.lex_state = 14, .external_lex_state = 2}, + [341] = {.lex_state = 15, .external_lex_state = 6}, [342] = {.lex_state = 50, .external_lex_state = 3}, [343] = {.lex_state = 50, .external_lex_state = 3}, - [344] = {.lex_state = 50, .external_lex_state = 2}, - [345] = {.lex_state = 50, .external_lex_state = 2}, - [346] = {.lex_state = 50, .external_lex_state = 3}, + [344] = {.lex_state = 50, .external_lex_state = 3}, + [345] = {.lex_state = 14, .external_lex_state = 2}, + [346] = {.lex_state = 50, .external_lex_state = 2}, [347] = {.lex_state = 50, .external_lex_state = 2}, - [348] = {.lex_state = 50, .external_lex_state = 2}, - [349] = {.lex_state = 50, .external_lex_state = 3}, - [350] = {.lex_state = 16, .external_lex_state = 6}, - [351] = {.lex_state = 16, .external_lex_state = 6}, - [352] = {.lex_state = 50, .external_lex_state = 2}, - [353] = {.lex_state = 16, .external_lex_state = 6}, + [348] = {.lex_state = 50, .external_lex_state = 3}, + [349] = {.lex_state = 50, .external_lex_state = 2}, + [350] = {.lex_state = 50, .external_lex_state = 2}, + [351] = {.lex_state = 50, .external_lex_state = 2}, + [352] = {.lex_state = 50, .external_lex_state = 3}, + [353] = {.lex_state = 50, .external_lex_state = 2}, [354] = {.lex_state = 16, .external_lex_state = 6}, [355] = {.lex_state = 50, .external_lex_state = 2}, - [356] = {.lex_state = 14, .external_lex_state = 2}, - [357] = {.lex_state = 15, .external_lex_state = 6}, - [358] = {.lex_state = 15}, - [359] = {.lex_state = 16, .external_lex_state = 6}, - [360] = {.lex_state = 15}, - [361] = {.lex_state = 50, .external_lex_state = 3}, + [356] = {.lex_state = 50, .external_lex_state = 2}, + [357] = {.lex_state = 50, .external_lex_state = 2}, + [358] = {.lex_state = 50, .external_lex_state = 2}, + [359] = {.lex_state = 50, .external_lex_state = 2}, + [360] = {.lex_state = 50, .external_lex_state = 2}, + [361] = {.lex_state = 50, .external_lex_state = 2}, [362] = {.lex_state = 50, .external_lex_state = 3}, [363] = {.lex_state = 50, .external_lex_state = 2}, [364] = {.lex_state = 50, .external_lex_state = 2}, [365] = {.lex_state = 50, .external_lex_state = 2}, [366] = {.lex_state = 50, .external_lex_state = 2}, - [367] = {.lex_state = 50, .external_lex_state = 3}, - [368] = {.lex_state = 50, .external_lex_state = 3}, - [369] = {.lex_state = 50, .external_lex_state = 2}, + [367] = {.lex_state = 50, .external_lex_state = 2}, + [368] = {.lex_state = 50, .external_lex_state = 2}, + [369] = {.lex_state = 50, .external_lex_state = 3}, [370] = {.lex_state = 50, .external_lex_state = 2}, - [371] = {.lex_state = 50, .external_lex_state = 3}, + [371] = {.lex_state = 50, .external_lex_state = 2}, [372] = {.lex_state = 50, .external_lex_state = 2}, - [373] = {.lex_state = 16, .external_lex_state = 6}, + [373] = {.lex_state = 50, .external_lex_state = 2}, [374] = {.lex_state = 50, .external_lex_state = 2}, [375] = {.lex_state = 50, .external_lex_state = 2}, [376] = {.lex_state = 50, .external_lex_state = 2}, [377] = {.lex_state = 50, .external_lex_state = 2}, [378] = {.lex_state = 50, .external_lex_state = 2}, - [379] = {.lex_state = 16}, + [379] = {.lex_state = 50, .external_lex_state = 2}, [380] = {.lex_state = 50, .external_lex_state = 2}, [381] = {.lex_state = 50, .external_lex_state = 2}, [382] = {.lex_state = 50, .external_lex_state = 2}, @@ -6482,17 +6484,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [388] = {.lex_state = 50, .external_lex_state = 2}, [389] = {.lex_state = 50, .external_lex_state = 2}, [390] = {.lex_state = 50, .external_lex_state = 2}, - [391] = {.lex_state = 50, .external_lex_state = 2}, - [392] = {.lex_state = 50, .external_lex_state = 2}, + [391] = {.lex_state = 50, .external_lex_state = 3}, + [392] = {.lex_state = 16}, [393] = {.lex_state = 50, .external_lex_state = 2}, [394] = {.lex_state = 50, .external_lex_state = 2}, - [395] = {.lex_state = 50, .external_lex_state = 3}, + [395] = {.lex_state = 50, .external_lex_state = 2}, [396] = {.lex_state = 50, .external_lex_state = 2}, [397] = {.lex_state = 50, .external_lex_state = 2}, [398] = {.lex_state = 50, .external_lex_state = 2}, [399] = {.lex_state = 50, .external_lex_state = 2}, [400] = {.lex_state = 50, .external_lex_state = 2}, - [401] = {.lex_state = 50, .external_lex_state = 3}, + [401] = {.lex_state = 50, .external_lex_state = 2}, [402] = {.lex_state = 50, .external_lex_state = 2}, [403] = {.lex_state = 50, .external_lex_state = 2}, [404] = {.lex_state = 50, .external_lex_state = 2}, @@ -6501,24 +6503,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [407] = {.lex_state = 50, .external_lex_state = 2}, [408] = {.lex_state = 50, .external_lex_state = 2}, [409] = {.lex_state = 50, .external_lex_state = 2}, - [410] = {.lex_state = 50, .external_lex_state = 3}, - [411] = {.lex_state = 50, .external_lex_state = 3}, + [410] = {.lex_state = 50, .external_lex_state = 2}, + [411] = {.lex_state = 50, .external_lex_state = 2}, [412] = {.lex_state = 50, .external_lex_state = 2}, [413] = {.lex_state = 50, .external_lex_state = 2}, - [414] = {.lex_state = 50, .external_lex_state = 2}, + [414] = {.lex_state = 16, .external_lex_state = 6}, [415] = {.lex_state = 50, .external_lex_state = 2}, - [416] = {.lex_state = 50, .external_lex_state = 3}, - [417] = {.lex_state = 50, .external_lex_state = 2}, - [418] = {.lex_state = 50, .external_lex_state = 2}, + [416] = {.lex_state = 50, .external_lex_state = 2}, + [417] = {.lex_state = 50, .external_lex_state = 3}, + [418] = {.lex_state = 50, .external_lex_state = 3}, [419] = {.lex_state = 50, .external_lex_state = 2}, [420] = {.lex_state = 50, .external_lex_state = 2}, [421] = {.lex_state = 50, .external_lex_state = 2}, - [422] = {.lex_state = 16, .external_lex_state = 6}, + [422] = {.lex_state = 50, .external_lex_state = 3}, [423] = {.lex_state = 50, .external_lex_state = 2}, [424] = {.lex_state = 50, .external_lex_state = 2}, - [425] = {.lex_state = 16, .external_lex_state = 6}, + [425] = {.lex_state = 50, .external_lex_state = 3}, [426] = {.lex_state = 50, .external_lex_state = 2}, - [427] = {.lex_state = 50, .external_lex_state = 2}, + [427] = {.lex_state = 16, .external_lex_state = 6}, [428] = {.lex_state = 50, .external_lex_state = 2}, [429] = {.lex_state = 50, .external_lex_state = 2}, [430] = {.lex_state = 50, .external_lex_state = 2}, @@ -6527,66 +6529,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [433] = {.lex_state = 50, .external_lex_state = 2}, [434] = {.lex_state = 50, .external_lex_state = 2}, [435] = {.lex_state = 50, .external_lex_state = 2}, - [436] = {.lex_state = 50, .external_lex_state = 3}, + [436] = {.lex_state = 50, .external_lex_state = 2}, [437] = {.lex_state = 50, .external_lex_state = 2}, [438] = {.lex_state = 50, .external_lex_state = 2}, [439] = {.lex_state = 50, .external_lex_state = 2}, [440] = {.lex_state = 50, .external_lex_state = 2}, - [441] = {.lex_state = 50, .external_lex_state = 2}, + [441] = {.lex_state = 50, .external_lex_state = 3}, [442] = {.lex_state = 50, .external_lex_state = 2}, [443] = {.lex_state = 50, .external_lex_state = 2}, [444] = {.lex_state = 50, .external_lex_state = 2}, [445] = {.lex_state = 50, .external_lex_state = 2}, - [446] = {.lex_state = 50, .external_lex_state = 2}, - [447] = {.lex_state = 50, .external_lex_state = 2}, + [446] = {.lex_state = 50, .external_lex_state = 3}, + [447] = {.lex_state = 50, .external_lex_state = 3}, [448] = {.lex_state = 50, .external_lex_state = 2}, [449] = {.lex_state = 50, .external_lex_state = 2}, [450] = {.lex_state = 50, .external_lex_state = 2}, - [451] = {.lex_state = 50, .external_lex_state = 2}, + [451] = {.lex_state = 50, .external_lex_state = 3}, [452] = {.lex_state = 50, .external_lex_state = 2}, [453] = {.lex_state = 50, .external_lex_state = 3}, - [454] = {.lex_state = 50, .external_lex_state = 2}, + [454] = {.lex_state = 50, .external_lex_state = 3}, [455] = {.lex_state = 50, .external_lex_state = 2}, [456] = {.lex_state = 50, .external_lex_state = 2}, - [457] = {.lex_state = 50, .external_lex_state = 2}, - [458] = {.lex_state = 50, .external_lex_state = 2}, + [457] = {.lex_state = 50, .external_lex_state = 3}, + [458] = {.lex_state = 50, .external_lex_state = 3}, [459] = {.lex_state = 50, .external_lex_state = 2}, - [460] = {.lex_state = 50, .external_lex_state = 2}, - [461] = {.lex_state = 50, .external_lex_state = 2}, + [460] = {.lex_state = 50, .external_lex_state = 3}, + [461] = {.lex_state = 50, .external_lex_state = 3}, [462] = {.lex_state = 50, .external_lex_state = 2}, [463] = {.lex_state = 50, .external_lex_state = 2}, [464] = {.lex_state = 50, .external_lex_state = 3}, - [465] = {.lex_state = 50, .external_lex_state = 2}, - [466] = {.lex_state = 50, .external_lex_state = 2}, - [467] = {.lex_state = 50, .external_lex_state = 3}, - [468] = {.lex_state = 50, .external_lex_state = 2}, + [465] = {.lex_state = 50, .external_lex_state = 3}, + [466] = {.lex_state = 50, .external_lex_state = 3}, + [467] = {.lex_state = 50, .external_lex_state = 2}, + [468] = {.lex_state = 50, .external_lex_state = 3}, [469] = {.lex_state = 50, .external_lex_state = 3}, - [470] = {.lex_state = 50, .external_lex_state = 3}, + [470] = {.lex_state = 50, .external_lex_state = 2}, [471] = {.lex_state = 50, .external_lex_state = 2}, [472] = {.lex_state = 50, .external_lex_state = 2}, [473] = {.lex_state = 50, .external_lex_state = 3}, - [474] = {.lex_state = 50, .external_lex_state = 3}, + [474] = {.lex_state = 50, .external_lex_state = 2}, [475] = {.lex_state = 50, .external_lex_state = 2}, [476] = {.lex_state = 50, .external_lex_state = 2}, [477] = {.lex_state = 50, .external_lex_state = 2}, [478] = {.lex_state = 50, .external_lex_state = 2}, [479] = {.lex_state = 50, .external_lex_state = 2}, [480] = {.lex_state = 50, .external_lex_state = 2}, - [481] = {.lex_state = 50, .external_lex_state = 3}, + [481] = {.lex_state = 50, .external_lex_state = 2}, [482] = {.lex_state = 50, .external_lex_state = 2}, - [483] = {.lex_state = 50, .external_lex_state = 2}, + [483] = {.lex_state = 50, .external_lex_state = 3}, [484] = {.lex_state = 50, .external_lex_state = 2}, [485] = {.lex_state = 50, .external_lex_state = 3}, - [486] = {.lex_state = 50, .external_lex_state = 3}, - [487] = {.lex_state = 50, .external_lex_state = 3}, + [486] = {.lex_state = 50, .external_lex_state = 2}, + [487] = {.lex_state = 50, .external_lex_state = 2}, [488] = {.lex_state = 50, .external_lex_state = 2}, - [489] = {.lex_state = 50, .external_lex_state = 3}, + [489] = {.lex_state = 50, .external_lex_state = 2}, [490] = {.lex_state = 50, .external_lex_state = 2}, [491] = {.lex_state = 50, .external_lex_state = 2}, - [492] = {.lex_state = 50, .external_lex_state = 2}, - [493] = {.lex_state = 50, .external_lex_state = 2}, - [494] = {.lex_state = 50, .external_lex_state = 2}, - [495] = {.lex_state = 50, .external_lex_state = 2}, + [492] = {.lex_state = 50, .external_lex_state = 3}, + [493] = {.lex_state = 50, .external_lex_state = 3}, + [494] = {.lex_state = 50, .external_lex_state = 3}, + [495] = {.lex_state = 50, .external_lex_state = 3}, [496] = {.lex_state = 50, .external_lex_state = 2}, [497] = {.lex_state = 50, .external_lex_state = 3}, [498] = {.lex_state = 50, .external_lex_state = 2}, @@ -6599,88 +6601,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [505] = {.lex_state = 50, .external_lex_state = 3}, [506] = {.lex_state = 50, .external_lex_state = 3}, [507] = {.lex_state = 50, .external_lex_state = 3}, - [508] = {.lex_state = 50, .external_lex_state = 2}, + [508] = {.lex_state = 50, .external_lex_state = 3}, [509] = {.lex_state = 50, .external_lex_state = 2}, [510] = {.lex_state = 50, .external_lex_state = 2}, - [511] = {.lex_state = 50, .external_lex_state = 2}, + [511] = {.lex_state = 50, .external_lex_state = 3}, [512] = {.lex_state = 50, .external_lex_state = 2}, - [513] = {.lex_state = 50, .external_lex_state = 3}, + [513] = {.lex_state = 50, .external_lex_state = 2}, [514] = {.lex_state = 50, .external_lex_state = 2}, [515] = {.lex_state = 50, .external_lex_state = 3}, [516] = {.lex_state = 50, .external_lex_state = 3}, [517] = {.lex_state = 50, .external_lex_state = 3}, - [518] = {.lex_state = 50, .external_lex_state = 3}, - [519] = {.lex_state = 50, .external_lex_state = 3}, + [518] = {.lex_state = 50, .external_lex_state = 2}, + [519] = {.lex_state = 50, .external_lex_state = 2}, [520] = {.lex_state = 50, .external_lex_state = 2}, [521] = {.lex_state = 50, .external_lex_state = 2}, - [522] = {.lex_state = 50, .external_lex_state = 3}, - [523] = {.lex_state = 50, .external_lex_state = 3}, - [524] = {.lex_state = 50, .external_lex_state = 3}, - [525] = {.lex_state = 50, .external_lex_state = 2}, + [522] = {.lex_state = 50, .external_lex_state = 2}, + [523] = {.lex_state = 50, .external_lex_state = 2}, + [524] = {.lex_state = 50, .external_lex_state = 2}, + [525] = {.lex_state = 50, .external_lex_state = 3}, [526] = {.lex_state = 50, .external_lex_state = 3}, [527] = {.lex_state = 50, .external_lex_state = 3}, [528] = {.lex_state = 50, .external_lex_state = 2}, [529] = {.lex_state = 50, .external_lex_state = 2}, [530] = {.lex_state = 50, .external_lex_state = 2}, - [531] = {.lex_state = 50, .external_lex_state = 3}, + [531] = {.lex_state = 50, .external_lex_state = 2}, [532] = {.lex_state = 50, .external_lex_state = 3}, - [533] = {.lex_state = 50, .external_lex_state = 2}, + [533] = {.lex_state = 50, .external_lex_state = 3}, [534] = {.lex_state = 50, .external_lex_state = 3}, [535] = {.lex_state = 50, .external_lex_state = 3}, [536] = {.lex_state = 50, .external_lex_state = 3}, - [537] = {.lex_state = 50, .external_lex_state = 2}, - [538] = {.lex_state = 50, .external_lex_state = 2}, - [539] = {.lex_state = 50, .external_lex_state = 3}, - [540] = {.lex_state = 50, .external_lex_state = 2}, + [537] = {.lex_state = 50, .external_lex_state = 3}, + [538] = {.lex_state = 50, .external_lex_state = 3}, + [539] = {.lex_state = 50, .external_lex_state = 2}, + [540] = {.lex_state = 50, .external_lex_state = 3}, [541] = {.lex_state = 50, .external_lex_state = 3}, [542] = {.lex_state = 50, .external_lex_state = 3}, - [543] = {.lex_state = 50, .external_lex_state = 3}, + [543] = {.lex_state = 50, .external_lex_state = 2}, [544] = {.lex_state = 50, .external_lex_state = 3}, [545] = {.lex_state = 50, .external_lex_state = 3}, [546] = {.lex_state = 50, .external_lex_state = 3}, [547] = {.lex_state = 50, .external_lex_state = 3}, [548] = {.lex_state = 50, .external_lex_state = 3}, - [549] = {.lex_state = 50, .external_lex_state = 3}, + [549] = {.lex_state = 50, .external_lex_state = 2}, [550] = {.lex_state = 50, .external_lex_state = 2}, [551] = {.lex_state = 50, .external_lex_state = 3}, [552] = {.lex_state = 50, .external_lex_state = 3}, - [553] = {.lex_state = 50, .external_lex_state = 2}, + [553] = {.lex_state = 50, .external_lex_state = 3}, [554] = {.lex_state = 50, .external_lex_state = 3}, - [555] = {.lex_state = 50, .external_lex_state = 2}, - [556] = {.lex_state = 50, .external_lex_state = 2}, + [555] = {.lex_state = 50, .external_lex_state = 3}, + [556] = {.lex_state = 50, .external_lex_state = 3}, [557] = {.lex_state = 50, .external_lex_state = 2}, [558] = {.lex_state = 50, .external_lex_state = 2}, - [559] = {.lex_state = 50, .external_lex_state = 3}, + [559] = {.lex_state = 50, .external_lex_state = 2}, [560] = {.lex_state = 50, .external_lex_state = 2}, [561] = {.lex_state = 50, .external_lex_state = 2}, - [562] = {.lex_state = 50, .external_lex_state = 3}, + [562] = {.lex_state = 50, .external_lex_state = 2}, [563] = {.lex_state = 50, .external_lex_state = 2}, - [564] = {.lex_state = 50, .external_lex_state = 3}, - [565] = {.lex_state = 50, .external_lex_state = 2}, - [566] = {.lex_state = 50, .external_lex_state = 3}, - [567] = {.lex_state = 50, .external_lex_state = 3}, - [568] = {.lex_state = 50, .external_lex_state = 3}, - [569] = {.lex_state = 50, .external_lex_state = 2}, - [570] = {.lex_state = 50, .external_lex_state = 3}, - [571] = {.lex_state = 50, .external_lex_state = 2}, - [572] = {.lex_state = 50, .external_lex_state = 3}, - [573] = {.lex_state = 50, .external_lex_state = 3}, - [574] = {.lex_state = 50, .external_lex_state = 3}, - [575] = {.lex_state = 50, .external_lex_state = 2}, - [576] = {.lex_state = 50, .external_lex_state = 2}, - [577] = {.lex_state = 50, .external_lex_state = 2}, - [578] = {.lex_state = 50, .external_lex_state = 2}, - [579] = {.lex_state = 50, .external_lex_state = 2}, - [580] = {.lex_state = 50, .external_lex_state = 2}, - [581] = {.lex_state = 50, .external_lex_state = 2}, - [582] = {.lex_state = 16, .external_lex_state = 2}, - [583] = {.lex_state = 50, .external_lex_state = 2}, - [584] = {.lex_state = 16, .external_lex_state = 2}, - [585] = {.lex_state = 50, .external_lex_state = 2}, - [586] = {.lex_state = 16, .external_lex_state = 2}, - [587] = {.lex_state = 14, .external_lex_state = 2}, - [588] = {.lex_state = 16, .external_lex_state = 2}, - [589] = {.lex_state = 16, .external_lex_state = 2}, + [564] = {.lex_state = 50, .external_lex_state = 2}, + [565] = {.lex_state = 16, .external_lex_state = 2}, + [566] = {.lex_state = 50, .external_lex_state = 2}, + [567] = {.lex_state = 16, .external_lex_state = 2}, + [568] = {.lex_state = 50, .external_lex_state = 2}, + [569] = {.lex_state = 16, .external_lex_state = 2}, + [570] = {.lex_state = 16, .external_lex_state = 2}, + [571] = {.lex_state = 14, .external_lex_state = 2}, + [572] = {.lex_state = 16, .external_lex_state = 2}, + [573] = {.lex_state = 16}, + [574] = {.lex_state = 16}, + [575] = {.lex_state = 16}, + [576] = {.lex_state = 16}, + [577] = {.lex_state = 16}, + [578] = {.lex_state = 16}, + [579] = {.lex_state = 16}, + [580] = {.lex_state = 16}, + [581] = {.lex_state = 16}, + [582] = {.lex_state = 16}, + [583] = {.lex_state = 16}, + [584] = {.lex_state = 16}, + [585] = {.lex_state = 16}, + [586] = {.lex_state = 16}, + [587] = {.lex_state = 16}, + [588] = {.lex_state = 16}, + [589] = {.lex_state = 16}, [590] = {.lex_state = 16}, [591] = {.lex_state = 16}, [592] = {.lex_state = 16}, @@ -6701,12 +6703,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [607] = {.lex_state = 16}, [608] = {.lex_state = 16}, [609] = {.lex_state = 16}, - [610] = {.lex_state = 16}, + [610] = {.lex_state = 50, .external_lex_state = 2}, [611] = {.lex_state = 16}, [612] = {.lex_state = 16}, [613] = {.lex_state = 16}, - [614] = {.lex_state = 16}, - [615] = {.lex_state = 16}, + [614] = {.lex_state = 50, .external_lex_state = 2}, + [615] = {.lex_state = 50, .external_lex_state = 2}, [616] = {.lex_state = 16}, [617] = {.lex_state = 16}, [618] = {.lex_state = 16}, @@ -6717,39 +6719,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [623] = {.lex_state = 16}, [624] = {.lex_state = 16}, [625] = {.lex_state = 16}, - [626] = {.lex_state = 50, .external_lex_state = 2}, + [626] = {.lex_state = 16}, [627] = {.lex_state = 16}, - [628] = {.lex_state = 16}, + [628] = {.lex_state = 50, .external_lex_state = 2}, [629] = {.lex_state = 16}, [630] = {.lex_state = 16}, [631] = {.lex_state = 16}, [632] = {.lex_state = 16}, [633] = {.lex_state = 16}, - [634] = {.lex_state = 16}, + [634] = {.lex_state = 50, .external_lex_state = 2}, [635] = {.lex_state = 50, .external_lex_state = 2}, - [636] = {.lex_state = 16}, - [637] = {.lex_state = 16}, - [638] = {.lex_state = 16}, - [639] = {.lex_state = 16}, - [640] = {.lex_state = 16}, - [641] = {.lex_state = 50, .external_lex_state = 2}, - [642] = {.lex_state = 16}, - [643] = {.lex_state = 16}, - [644] = {.lex_state = 16}, - [645] = {.lex_state = 16}, + [636] = {.lex_state = 50, .external_lex_state = 2}, + [637] = {.lex_state = 50, .external_lex_state = 2}, + [638] = {.lex_state = 50, .external_lex_state = 2}, + [639] = {.lex_state = 50, .external_lex_state = 2}, + [640] = {.lex_state = 50, .external_lex_state = 2}, + [641] = {.lex_state = 15}, + [642] = {.lex_state = 50, .external_lex_state = 2}, + [643] = {.lex_state = 50, .external_lex_state = 2}, + [644] = {.lex_state = 50, .external_lex_state = 2}, + [645] = {.lex_state = 50, .external_lex_state = 2}, [646] = {.lex_state = 50, .external_lex_state = 2}, - [647] = {.lex_state = 16}, - [648] = {.lex_state = 16}, - [649] = {.lex_state = 16}, - [650] = {.lex_state = 16}, - [651] = {.lex_state = 15}, + [647] = {.lex_state = 50, .external_lex_state = 2}, + [648] = {.lex_state = 50, .external_lex_state = 2}, + [649] = {.lex_state = 50, .external_lex_state = 2}, + [650] = {.lex_state = 50, .external_lex_state = 2}, + [651] = {.lex_state = 16}, [652] = {.lex_state = 50, .external_lex_state = 2}, - [653] = {.lex_state = 50, .external_lex_state = 2}, + [653] = {.lex_state = 16}, [654] = {.lex_state = 50, .external_lex_state = 2}, [655] = {.lex_state = 50, .external_lex_state = 2}, [656] = {.lex_state = 50, .external_lex_state = 2}, [657] = {.lex_state = 50, .external_lex_state = 2}, - [658] = {.lex_state = 50, .external_lex_state = 2}, + [658] = {.lex_state = 16, .external_lex_state = 2}, [659] = {.lex_state = 50, .external_lex_state = 2}, [660] = {.lex_state = 50, .external_lex_state = 2}, [661] = {.lex_state = 50, .external_lex_state = 2}, @@ -6759,14 +6761,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [665] = {.lex_state = 50, .external_lex_state = 2}, [666] = {.lex_state = 50, .external_lex_state = 2}, [667] = {.lex_state = 50, .external_lex_state = 2}, - [668] = {.lex_state = 16, .external_lex_state = 2}, + [668] = {.lex_state = 50, .external_lex_state = 2}, [669] = {.lex_state = 50, .external_lex_state = 2}, [670] = {.lex_state = 50, .external_lex_state = 2}, [671] = {.lex_state = 50, .external_lex_state = 2}, - [672] = {.lex_state = 15}, - [673] = {.lex_state = 50, .external_lex_state = 2}, - [674] = {.lex_state = 16, .external_lex_state = 2}, - [675] = {.lex_state = 50, .external_lex_state = 2}, + [672] = {.lex_state = 50, .external_lex_state = 2}, + [673] = {.lex_state = 15}, + [674] = {.lex_state = 50, .external_lex_state = 2}, + [675] = {.lex_state = 15}, [676] = {.lex_state = 50, .external_lex_state = 2}, [677] = {.lex_state = 50, .external_lex_state = 2}, [678] = {.lex_state = 50, .external_lex_state = 2}, @@ -6774,114 +6776,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [680] = {.lex_state = 50, .external_lex_state = 2}, [681] = {.lex_state = 50, .external_lex_state = 2}, [682] = {.lex_state = 50, .external_lex_state = 2}, - [683] = {.lex_state = 50, .external_lex_state = 2}, + [683] = {.lex_state = 16, .external_lex_state = 2}, [684] = {.lex_state = 50, .external_lex_state = 2}, - [685] = {.lex_state = 50, .external_lex_state = 2}, + [685] = {.lex_state = 15}, [686] = {.lex_state = 50, .external_lex_state = 2}, [687] = {.lex_state = 50, .external_lex_state = 2}, - [688] = {.lex_state = 50, .external_lex_state = 2}, - [689] = {.lex_state = 50, .external_lex_state = 2}, - [690] = {.lex_state = 50, .external_lex_state = 2}, - [691] = {.lex_state = 50, .external_lex_state = 2}, - [692] = {.lex_state = 15}, - [693] = {.lex_state = 50, .external_lex_state = 2}, - [694] = {.lex_state = 50, .external_lex_state = 2}, - [695] = {.lex_state = 50, .external_lex_state = 2}, - [696] = {.lex_state = 50, .external_lex_state = 2}, - [697] = {.lex_state = 50, .external_lex_state = 2}, - [698] = {.lex_state = 16}, - [699] = {.lex_state = 50, .external_lex_state = 2}, - [700] = {.lex_state = 50, .external_lex_state = 2}, - [701] = {.lex_state = 16}, - [702] = {.lex_state = 50, .external_lex_state = 2}, - [703] = {.lex_state = 15}, - [704] = {.lex_state = 50, .external_lex_state = 2}, + [688] = {.lex_state = 16}, + [689] = {.lex_state = 16}, + [690] = {.lex_state = 16, .external_lex_state = 4}, + [691] = {.lex_state = 16, .external_lex_state = 4}, + [692] = {.lex_state = 16, .external_lex_state = 6}, + [693] = {.lex_state = 16, .external_lex_state = 4}, + [694] = {.lex_state = 16, .external_lex_state = 6}, + [695] = {.lex_state = 16, .external_lex_state = 2}, + [696] = {.lex_state = 16, .external_lex_state = 2}, + [697] = {.lex_state = 16, .external_lex_state = 6}, + [698] = {.lex_state = 16, .external_lex_state = 6}, + [699] = {.lex_state = 16, .external_lex_state = 6}, + [700] = {.lex_state = 16, .external_lex_state = 6}, + [701] = {.lex_state = 16, .external_lex_state = 6}, + [702] = {.lex_state = 16, .external_lex_state = 6}, + [703] = {.lex_state = 16, .external_lex_state = 6}, + [704] = {.lex_state = 16, .external_lex_state = 6}, [705] = {.lex_state = 16}, - [706] = {.lex_state = 16}, + [706] = {.lex_state = 16, .external_lex_state = 6}, [707] = {.lex_state = 16, .external_lex_state = 6}, - [708] = {.lex_state = 16, .external_lex_state = 4}, - [709] = {.lex_state = 16, .external_lex_state = 4}, - [710] = {.lex_state = 16, .external_lex_state = 4}, - [711] = {.lex_state = 16, .external_lex_state = 6}, - [712] = {.lex_state = 16, .external_lex_state = 6}, - [713] = {.lex_state = 16, .external_lex_state = 2}, - [714] = {.lex_state = 16, .external_lex_state = 6}, - [715] = {.lex_state = 16, .external_lex_state = 2}, - [716] = {.lex_state = 16, .external_lex_state = 6}, - [717] = {.lex_state = 16, .external_lex_state = 6}, - [718] = {.lex_state = 16, .external_lex_state = 6}, - [719] = {.lex_state = 16, .external_lex_state = 6}, - [720] = {.lex_state = 16, .external_lex_state = 2}, - [721] = {.lex_state = 16, .external_lex_state = 6}, - [722] = {.lex_state = 16, .external_lex_state = 6}, - [723] = {.lex_state = 16, .external_lex_state = 6}, - [724] = {.lex_state = 16, .external_lex_state = 6}, - [725] = {.lex_state = 16, .external_lex_state = 6}, + [708] = {.lex_state = 16, .external_lex_state = 2}, + [709] = {.lex_state = 16, .external_lex_state = 6}, + [710] = {.lex_state = 16}, + [711] = {.lex_state = 16}, + [712] = {.lex_state = 16}, + [713] = {.lex_state = 16}, + [714] = {.lex_state = 15, .external_lex_state = 6}, + [715] = {.lex_state = 16}, + [716] = {.lex_state = 16, .external_lex_state = 4}, + [717] = {.lex_state = 16}, + [718] = {.lex_state = 16}, + [719] = {.lex_state = 16, .external_lex_state = 4}, + [720] = {.lex_state = 15}, + [721] = {.lex_state = 16}, + [722] = {.lex_state = 15}, + [723] = {.lex_state = 15}, + [724] = {.lex_state = 15, .external_lex_state = 6}, + [725] = {.lex_state = 16}, [726] = {.lex_state = 16}, - [727] = {.lex_state = 15}, + [727] = {.lex_state = 16}, [728] = {.lex_state = 16}, [729] = {.lex_state = 16}, [730] = {.lex_state = 16}, [731] = {.lex_state = 16}, - [732] = {.lex_state = 16, .external_lex_state = 4}, - [733] = {.lex_state = 15, .external_lex_state = 6}, + [732] = {.lex_state = 15}, + [733] = {.lex_state = 16}, [734] = {.lex_state = 16}, - [735] = {.lex_state = 16, .external_lex_state = 4}, - [736] = {.lex_state = 16}, - [737] = {.lex_state = 15}, - [738] = {.lex_state = 16}, - [739] = {.lex_state = 16}, - [740] = {.lex_state = 15, .external_lex_state = 6}, - [741] = {.lex_state = 16}, - [742] = {.lex_state = 16}, - [743] = {.lex_state = 16}, - [744] = {.lex_state = 15}, - [745] = {.lex_state = 16}, + [735] = {.lex_state = 16}, + [736] = {.lex_state = 16, .external_lex_state = 6}, + [737] = {.lex_state = 16, .external_lex_state = 6}, + [738] = {.lex_state = 16, .external_lex_state = 6}, + [739] = {.lex_state = 16, .external_lex_state = 6}, + [740] = {.lex_state = 16, .external_lex_state = 6}, + [741] = {.lex_state = 16, .external_lex_state = 6}, + [742] = {.lex_state = 16, .external_lex_state = 6}, + [743] = {.lex_state = 16, .external_lex_state = 6}, + [744] = {.lex_state = 16, .external_lex_state = 6}, + [745] = {.lex_state = 15}, [746] = {.lex_state = 16}, - [747] = {.lex_state = 16}, - [748] = {.lex_state = 16}, - [749] = {.lex_state = 16}, - [750] = {.lex_state = 15}, + [747] = {.lex_state = 16, .external_lex_state = 6}, + [748] = {.lex_state = 16, .external_lex_state = 6}, + [749] = {.lex_state = 16, .external_lex_state = 6}, + [750] = {.lex_state = 16, .external_lex_state = 6}, [751] = {.lex_state = 16}, - [752] = {.lex_state = 16}, + [752] = {.lex_state = 16, .external_lex_state = 6}, [753] = {.lex_state = 16, .external_lex_state = 6}, [754] = {.lex_state = 16, .external_lex_state = 6}, [755] = {.lex_state = 16, .external_lex_state = 6}, [756] = {.lex_state = 16, .external_lex_state = 6}, [757] = {.lex_state = 16, .external_lex_state = 6}, [758] = {.lex_state = 16, .external_lex_state = 6}, - [759] = {.lex_state = 16, .external_lex_state = 6}, + [759] = {.lex_state = 15}, [760] = {.lex_state = 16, .external_lex_state = 6}, [761] = {.lex_state = 16, .external_lex_state = 6}, [762] = {.lex_state = 16, .external_lex_state = 6}, [763] = {.lex_state = 16, .external_lex_state = 6}, [764] = {.lex_state = 16, .external_lex_state = 6}, - [765] = {.lex_state = 16}, + [765] = {.lex_state = 16, .external_lex_state = 6}, [766] = {.lex_state = 16, .external_lex_state = 6}, [767] = {.lex_state = 16, .external_lex_state = 6}, [768] = {.lex_state = 16, .external_lex_state = 6}, - [769] = {.lex_state = 15}, - [770] = {.lex_state = 15}, - [771] = {.lex_state = 16, .external_lex_state = 6}, + [769] = {.lex_state = 16, .external_lex_state = 6}, + [770] = {.lex_state = 16, .external_lex_state = 6}, + [771] = {.lex_state = 16}, [772] = {.lex_state = 16, .external_lex_state = 6}, [773] = {.lex_state = 16, .external_lex_state = 6}, - [774] = {.lex_state = 16, .external_lex_state = 6}, - [775] = {.lex_state = 16, .external_lex_state = 6}, - [776] = {.lex_state = 16, .external_lex_state = 6}, - [777] = {.lex_state = 16, .external_lex_state = 6}, - [778] = {.lex_state = 16, .external_lex_state = 6}, - [779] = {.lex_state = 16, .external_lex_state = 6}, - [780] = {.lex_state = 16, .external_lex_state = 6}, - [781] = {.lex_state = 16, .external_lex_state = 6}, - [782] = {.lex_state = 16, .external_lex_state = 6}, + [774] = {.lex_state = 16}, + [775] = {.lex_state = 16}, + [776] = {.lex_state = 16}, + [777] = {.lex_state = 15}, + [778] = {.lex_state = 16}, + [779] = {.lex_state = 16}, + [780] = {.lex_state = 16}, + [781] = {.lex_state = 16}, + [782] = {.lex_state = 16}, [783] = {.lex_state = 16}, - [784] = {.lex_state = 16, .external_lex_state = 6}, - [785] = {.lex_state = 16, .external_lex_state = 6}, - [786] = {.lex_state = 16, .external_lex_state = 6}, - [787] = {.lex_state = 16, .external_lex_state = 6}, + [784] = {.lex_state = 16}, + [785] = {.lex_state = 16}, + [786] = {.lex_state = 15}, + [787] = {.lex_state = 16}, [788] = {.lex_state = 16}, - [789] = {.lex_state = 16, .external_lex_state = 6}, - [790] = {.lex_state = 16, .external_lex_state = 6}, + [789] = {.lex_state = 16}, + [790] = {.lex_state = 16}, [791] = {.lex_state = 16}, [792] = {.lex_state = 16}, [793] = {.lex_state = 16}, @@ -6900,411 +6902,411 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 16}, [807] = {.lex_state = 16}, [808] = {.lex_state = 16}, - [809] = {.lex_state = 16}, - [810] = {.lex_state = 16}, - [811] = {.lex_state = 16}, - [812] = {.lex_state = 16}, - [813] = {.lex_state = 16}, - [814] = {.lex_state = 16}, - [815] = {.lex_state = 16}, - [816] = {.lex_state = 16}, - [817] = {.lex_state = 16}, - [818] = {.lex_state = 16}, - [819] = {.lex_state = 16}, - [820] = {.lex_state = 16}, - [821] = {.lex_state = 16}, - [822] = {.lex_state = 16}, - [823] = {.lex_state = 15}, - [824] = {.lex_state = 15}, - [825] = {.lex_state = 16}, - [826] = {.lex_state = 16}, - [827] = {.lex_state = 16}, - [828] = {.lex_state = 16}, - [829] = {.lex_state = 16}, - [830] = {.lex_state = 16}, - [831] = {.lex_state = 50, .external_lex_state = 2}, - [832] = {.lex_state = 14, .external_lex_state = 2}, - [833] = {.lex_state = 50, .external_lex_state = 2}, - [834] = {.lex_state = 14, .external_lex_state = 2}, - [835] = {.lex_state = 50, .external_lex_state = 2}, - [836] = {.lex_state = 50, .external_lex_state = 2}, - [837] = {.lex_state = 50, .external_lex_state = 2}, - [838] = {.lex_state = 50, .external_lex_state = 2}, - [839] = {.lex_state = 50, .external_lex_state = 2}, - [840] = {.lex_state = 50, .external_lex_state = 2}, - [841] = {.lex_state = 50, .external_lex_state = 2}, - [842] = {.lex_state = 50, .external_lex_state = 2}, - [843] = {.lex_state = 50, .external_lex_state = 2}, - [844] = {.lex_state = 50, .external_lex_state = 2}, - [845] = {.lex_state = 50, .external_lex_state = 2}, - [846] = {.lex_state = 50, .external_lex_state = 2}, - [847] = {.lex_state = 50, .external_lex_state = 2}, - [848] = {.lex_state = 50, .external_lex_state = 2}, - [849] = {.lex_state = 50, .external_lex_state = 2}, + [809] = {.lex_state = 50, .external_lex_state = 2}, + [810] = {.lex_state = 14, .external_lex_state = 2}, + [811] = {.lex_state = 50, .external_lex_state = 2}, + [812] = {.lex_state = 14, .external_lex_state = 2}, + [813] = {.lex_state = 50, .external_lex_state = 2}, + [814] = {.lex_state = 50, .external_lex_state = 2}, + [815] = {.lex_state = 50, .external_lex_state = 2}, + [816] = {.lex_state = 50, .external_lex_state = 2}, + [817] = {.lex_state = 50, .external_lex_state = 2}, + [818] = {.lex_state = 50, .external_lex_state = 2}, + [819] = {.lex_state = 50, .external_lex_state = 2}, + [820] = {.lex_state = 50, .external_lex_state = 2}, + [821] = {.lex_state = 50, .external_lex_state = 2}, + [822] = {.lex_state = 50, .external_lex_state = 2}, + [823] = {.lex_state = 50, .external_lex_state = 2}, + [824] = {.lex_state = 50, .external_lex_state = 2}, + [825] = {.lex_state = 50, .external_lex_state = 2}, + [826] = {.lex_state = 50, .external_lex_state = 2}, + [827] = {.lex_state = 50, .external_lex_state = 2}, + [828] = {.lex_state = 14}, + [829] = {.lex_state = 14}, + [830] = {.lex_state = 14}, + [831] = {.lex_state = 14}, + [832] = {.lex_state = 14}, + [833] = {.lex_state = 0, .external_lex_state = 6}, + [834] = {.lex_state = 14}, + [835] = {.lex_state = 16}, + [836] = {.lex_state = 14}, + [837] = {.lex_state = 14}, + [838] = {.lex_state = 14}, + [839] = {.lex_state = 0, .external_lex_state = 6}, + [840] = {.lex_state = 16}, + [841] = {.lex_state = 14}, + [842] = {.lex_state = 14}, + [843] = {.lex_state = 16}, + [844] = {.lex_state = 14}, + [845] = {.lex_state = 14}, + [846] = {.lex_state = 14}, + [847] = {.lex_state = 14}, + [848] = {.lex_state = 14}, + [849] = {.lex_state = 14}, [850] = {.lex_state = 14}, - [851] = {.lex_state = 14}, - [852] = {.lex_state = 14}, - [853] = {.lex_state = 14}, - [854] = {.lex_state = 14}, + [851] = {.lex_state = 50, .external_lex_state = 2}, + [852] = {.lex_state = 50, .external_lex_state = 2}, + [853] = {.lex_state = 50, .external_lex_state = 2}, + [854] = {.lex_state = 0}, [855] = {.lex_state = 14}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 0, .external_lex_state = 6}, - [858] = {.lex_state = 0, .external_lex_state = 6}, - [859] = {.lex_state = 14}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 14}, + [858] = {.lex_state = 14}, + [859] = {.lex_state = 0}, [860] = {.lex_state = 14}, - [861] = {.lex_state = 16}, - [862] = {.lex_state = 16}, - [863] = {.lex_state = 14}, - [864] = {.lex_state = 14}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 14}, + [863] = {.lex_state = 0}, + [864] = {.lex_state = 50, .external_lex_state = 2}, [865] = {.lex_state = 16}, [866] = {.lex_state = 14}, - [867] = {.lex_state = 14}, + [867] = {.lex_state = 16}, [868] = {.lex_state = 14}, [869] = {.lex_state = 14}, [870] = {.lex_state = 14}, [871] = {.lex_state = 14}, [872] = {.lex_state = 14}, - [873] = {.lex_state = 50, .external_lex_state = 2}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 50, .external_lex_state = 2}, - [876] = {.lex_state = 50, .external_lex_state = 2}, + [873] = {.lex_state = 14}, + [874] = {.lex_state = 14}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 14}, [877] = {.lex_state = 14}, - [878] = {.lex_state = 0}, + [878] = {.lex_state = 14}, [879] = {.lex_state = 14}, [880] = {.lex_state = 14}, - [881] = {.lex_state = 0}, + [881] = {.lex_state = 14}, [882] = {.lex_state = 14}, [883] = {.lex_state = 14}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 50, .external_lex_state = 2}, + [884] = {.lex_state = 16}, + [885] = {.lex_state = 14, .external_lex_state = 2}, + [886] = {.lex_state = 14}, [887] = {.lex_state = 16}, [888] = {.lex_state = 14}, - [889] = {.lex_state = 14}, + [889] = {.lex_state = 18, .external_lex_state = 7}, [890] = {.lex_state = 14}, - [891] = {.lex_state = 14}, - [892] = {.lex_state = 16}, - [893] = {.lex_state = 14}, + [891] = {.lex_state = 18, .external_lex_state = 7}, + [892] = {.lex_state = 14}, + [893] = {.lex_state = 0}, [894] = {.lex_state = 14}, - [895] = {.lex_state = 14}, - [896] = {.lex_state = 14}, + [895] = {.lex_state = 18, .external_lex_state = 7}, + [896] = {.lex_state = 0}, [897] = {.lex_state = 14}, [898] = {.lex_state = 0}, - [899] = {.lex_state = 14}, - [900] = {.lex_state = 14}, + [899] = {.lex_state = 18, .external_lex_state = 7}, + [900] = {.lex_state = 0}, [901] = {.lex_state = 14}, - [902] = {.lex_state = 14, .external_lex_state = 2}, - [903] = {.lex_state = 14}, - [904] = {.lex_state = 14}, - [905] = {.lex_state = 16}, - [906] = {.lex_state = 16}, - [907] = {.lex_state = 14}, - [908] = {.lex_state = 14}, + [902] = {.lex_state = 18, .external_lex_state = 7}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 18, .external_lex_state = 7}, + [907] = {.lex_state = 18, .external_lex_state = 7}, + [908] = {.lex_state = 18, .external_lex_state = 7}, [909] = {.lex_state = 14}, - [910] = {.lex_state = 14}, - [911] = {.lex_state = 14}, - [912] = {.lex_state = 14}, + [910] = {.lex_state = 18, .external_lex_state = 7}, + [911] = {.lex_state = 0}, + [912] = {.lex_state = 0}, [913] = {.lex_state = 0}, [914] = {.lex_state = 14}, - [915] = {.lex_state = 18, .external_lex_state = 7}, - [916] = {.lex_state = 18, .external_lex_state = 7}, + [915] = {.lex_state = 14}, + [916] = {.lex_state = 14}, [917] = {.lex_state = 0}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 14}, - [920] = {.lex_state = 14}, - [921] = {.lex_state = 18, .external_lex_state = 7}, - [922] = {.lex_state = 18, .external_lex_state = 7}, - [923] = {.lex_state = 18, .external_lex_state = 7}, - [924] = {.lex_state = 18, .external_lex_state = 7}, + [918] = {.lex_state = 14}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 0, .external_lex_state = 6}, + [924] = {.lex_state = 0}, [925] = {.lex_state = 14}, [926] = {.lex_state = 0}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 18, .external_lex_state = 7}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 18, .external_lex_state = 7}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 18, .external_lex_state = 7}, - [934] = {.lex_state = 0}, + [927] = {.lex_state = 14}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 14}, + [930] = {.lex_state = 14}, + [931] = {.lex_state = 14}, + [932] = {.lex_state = 0, .external_lex_state = 6}, + [933] = {.lex_state = 14}, + [934] = {.lex_state = 0, .external_lex_state = 6}, [935] = {.lex_state = 0}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 0}, + [936] = {.lex_state = 14}, + [937] = {.lex_state = 0, .external_lex_state = 6}, + [938] = {.lex_state = 14}, + [939] = {.lex_state = 14}, [940] = {.lex_state = 14}, - [941] = {.lex_state = 14}, - [942] = {.lex_state = 0}, + [941] = {.lex_state = 0, .external_lex_state = 6}, + [942] = {.lex_state = 14}, [943] = {.lex_state = 0}, [944] = {.lex_state = 14}, [945] = {.lex_state = 14}, - [946] = {.lex_state = 0, .external_lex_state = 6}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 14}, + [946] = {.lex_state = 14}, + [947] = {.lex_state = 14}, + [948] = {.lex_state = 0, .external_lex_state = 6}, [949] = {.lex_state = 14}, - [950] = {.lex_state = 0, .external_lex_state = 6}, - [951] = {.lex_state = 14}, - [952] = {.lex_state = 14}, - [953] = {.lex_state = 14}, + [950] = {.lex_state = 14}, + [951] = {.lex_state = 16}, + [952] = {.lex_state = 0}, + [953] = {.lex_state = 0, .external_lex_state = 6}, [954] = {.lex_state = 14}, [955] = {.lex_state = 14}, - [956] = {.lex_state = 0, .external_lex_state = 6}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 14}, + [956] = {.lex_state = 14}, + [957] = {.lex_state = 0, .external_lex_state = 6}, + [958] = {.lex_state = 0}, [959] = {.lex_state = 14}, - [960] = {.lex_state = 14}, + [960] = {.lex_state = 0, .external_lex_state = 6}, [961] = {.lex_state = 14}, [962] = {.lex_state = 0, .external_lex_state = 6}, [963] = {.lex_state = 14}, [964] = {.lex_state = 14}, [965] = {.lex_state = 14}, - [966] = {.lex_state = 14}, + [966] = {.lex_state = 0, .external_lex_state = 6}, [967] = {.lex_state = 14}, - [968] = {.lex_state = 14}, + [968] = {.lex_state = 0}, [969] = {.lex_state = 14}, - [970] = {.lex_state = 14}, - [971] = {.lex_state = 0, .external_lex_state = 6}, - [972] = {.lex_state = 0}, - [973] = {.lex_state = 0, .external_lex_state = 6}, - [974] = {.lex_state = 14}, + [970] = {.lex_state = 0, .external_lex_state = 6}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 0, .external_lex_state = 6}, + [973] = {.lex_state = 14}, + [974] = {.lex_state = 0}, [975] = {.lex_state = 0, .external_lex_state = 6}, - [976] = {.lex_state = 0}, + [976] = {.lex_state = 0, .external_lex_state = 6}, [977] = {.lex_state = 0}, - [978] = {.lex_state = 0, .external_lex_state = 6}, - [979] = {.lex_state = 0, .external_lex_state = 6}, - [980] = {.lex_state = 0}, + [978] = {.lex_state = 14}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 14}, [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, - [983] = {.lex_state = 16}, - [984] = {.lex_state = 14}, + [983] = {.lex_state = 18, .external_lex_state = 7}, + [984] = {.lex_state = 0}, [985] = {.lex_state = 0, .external_lex_state = 6}, - [986] = {.lex_state = 14}, - [987] = {.lex_state = 0, .external_lex_state = 6}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0}, [988] = {.lex_state = 14}, [989] = {.lex_state = 14}, [990] = {.lex_state = 14}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 14}, - [993] = {.lex_state = 16}, - [994] = {.lex_state = 18, .external_lex_state = 7}, - [995] = {.lex_state = 0, .external_lex_state = 6}, - [996] = {.lex_state = 0, .external_lex_state = 6}, + [991] = {.lex_state = 0, .external_lex_state = 6}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 16}, + [995] = {.lex_state = 14}, + [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, - [998] = {.lex_state = 0, .external_lex_state = 6}, + [998] = {.lex_state = 14}, [999] = {.lex_state = 14}, - [1000] = {.lex_state = 14}, - [1001] = {.lex_state = 18, .external_lex_state = 7}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 14}, - [1004] = {.lex_state = 14}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 14}, + [1000] = {.lex_state = 0, .external_lex_state = 6}, + [1001] = {.lex_state = 14}, + [1002] = {.lex_state = 0, .external_lex_state = 6}, + [1003] = {.lex_state = 0, .external_lex_state = 6}, + [1004] = {.lex_state = 18, .external_lex_state = 7}, + [1005] = {.lex_state = 14}, + [1006] = {.lex_state = 14}, + [1007] = {.lex_state = 0}, [1008] = {.lex_state = 14}, - [1009] = {.lex_state = 14}, - [1010] = {.lex_state = 14}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 0, .external_lex_state = 6}, [1011] = {.lex_state = 14}, - [1012] = {.lex_state = 14}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 0, .external_lex_state = 6}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 14}, - [1018] = {.lex_state = 14}, - [1019] = {.lex_state = 0, .external_lex_state = 6}, - [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0, .external_lex_state = 6}, - [1022] = {.lex_state = 0}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 16, .external_lex_state = 6}, + [1014] = {.lex_state = 14}, + [1015] = {.lex_state = 18, .external_lex_state = 7}, + [1016] = {.lex_state = 16}, + [1017] = {.lex_state = 0, .external_lex_state = 6}, + [1018] = {.lex_state = 0, .external_lex_state = 6}, + [1019] = {.lex_state = 14}, + [1020] = {.lex_state = 18, .external_lex_state = 7}, + [1021] = {.lex_state = 14}, + [1022] = {.lex_state = 0, .external_lex_state = 6}, [1023] = {.lex_state = 14}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0, .external_lex_state = 6}, - [1026] = {.lex_state = 0, .external_lex_state = 6}, - [1027] = {.lex_state = 0, .external_lex_state = 6}, + [1024] = {.lex_state = 14}, + [1025] = {.lex_state = 14}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 18, .external_lex_state = 7}, [1028] = {.lex_state = 14}, - [1029] = {.lex_state = 0, .external_lex_state = 6}, - [1030] = {.lex_state = 0}, + [1029] = {.lex_state = 14}, + [1030] = {.lex_state = 14}, [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 14}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 16, .external_lex_state = 6}, + [1032] = {.lex_state = 18, .external_lex_state = 7}, + [1033] = {.lex_state = 18, .external_lex_state = 7}, + [1034] = {.lex_state = 14}, + [1035] = {.lex_state = 16, .external_lex_state = 6}, + [1036] = {.lex_state = 14}, + [1037] = {.lex_state = 0, .external_lex_state = 6}, [1038] = {.lex_state = 14}, - [1039] = {.lex_state = 18, .external_lex_state = 7}, - [1040] = {.lex_state = 0, .external_lex_state = 6}, + [1039] = {.lex_state = 16, .external_lex_state = 6}, + [1040] = {.lex_state = 18, .external_lex_state = 7}, [1041] = {.lex_state = 14}, - [1042] = {.lex_state = 16, .external_lex_state = 6}, - [1043] = {.lex_state = 18, .external_lex_state = 7}, + [1042] = {.lex_state = 14}, + [1043] = {.lex_state = 16}, [1044] = {.lex_state = 14}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 16}, + [1045] = {.lex_state = 14}, + [1046] = {.lex_state = 0, .external_lex_state = 6}, [1047] = {.lex_state = 14}, - [1048] = {.lex_state = 18, .external_lex_state = 7}, - [1049] = {.lex_state = 14}, - [1050] = {.lex_state = 18, .external_lex_state = 7}, - [1051] = {.lex_state = 14}, + [1048] = {.lex_state = 0}, + [1049] = {.lex_state = 0, .external_lex_state = 6}, + [1050] = {.lex_state = 0, .external_lex_state = 6}, + [1051] = {.lex_state = 8}, [1052] = {.lex_state = 14}, - [1053] = {.lex_state = 18, .external_lex_state = 7}, - [1054] = {.lex_state = 14}, + [1053] = {.lex_state = 14}, + [1054] = {.lex_state = 8}, [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 14}, - [1057] = {.lex_state = 14}, - [1058] = {.lex_state = 16}, + [1056] = {.lex_state = 0}, + [1057] = {.lex_state = 16, .external_lex_state = 6}, + [1058] = {.lex_state = 8}, [1059] = {.lex_state = 0, .external_lex_state = 6}, [1060] = {.lex_state = 0, .external_lex_state = 6}, - [1061] = {.lex_state = 14}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 14}, - [1065] = {.lex_state = 0, .external_lex_state = 6}, - [1066] = {.lex_state = 14}, - [1067] = {.lex_state = 14}, - [1068] = {.lex_state = 18, .external_lex_state = 7}, - [1069] = {.lex_state = 14}, - [1070] = {.lex_state = 16, .external_lex_state = 6}, + [1061] = {.lex_state = 0, .external_lex_state = 6}, + [1062] = {.lex_state = 0, .external_lex_state = 6}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 0, .external_lex_state = 6}, + [1065] = {.lex_state = 0}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 0}, [1071] = {.lex_state = 14}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 14}, - [1074] = {.lex_state = 0, .external_lex_state = 6}, - [1075] = {.lex_state = 16, .external_lex_state = 6}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 14}, + [1075] = {.lex_state = 0, .external_lex_state = 6}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0, .external_lex_state = 6}, + [1077] = {.lex_state = 14}, + [1078] = {.lex_state = 0, .external_lex_state = 6}, + [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0, .external_lex_state = 6}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, + [1081] = {.lex_state = 14}, + [1082] = {.lex_state = 14}, [1083] = {.lex_state = 0, .external_lex_state = 6}, - [1084] = {.lex_state = 14}, - [1085] = {.lex_state = 0, .external_lex_state = 6}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0, .external_lex_state = 6}, + [1084] = {.lex_state = 0}, + [1085] = {.lex_state = 0}, + [1086] = {.lex_state = 0, .external_lex_state = 6}, + [1087] = {.lex_state = 0}, [1088] = {.lex_state = 0, .external_lex_state = 6}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 14}, - [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 8}, + [1089] = {.lex_state = 0, .external_lex_state = 6}, + [1090] = {.lex_state = 0}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 0, .external_lex_state = 6}, + [1093] = {.lex_state = 14}, + [1094] = {.lex_state = 0}, [1095] = {.lex_state = 14}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0, .external_lex_state = 6}, - [1098] = {.lex_state = 8}, + [1097] = {.lex_state = 0}, + [1098] = {.lex_state = 14}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0, .external_lex_state = 6}, + [1100] = {.lex_state = 14}, + [1101] = {.lex_state = 14}, + [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0, .external_lex_state = 6}, - [1104] = {.lex_state = 14}, - [1105] = {.lex_state = 0, .external_lex_state = 6}, - [1106] = {.lex_state = 14}, - [1107] = {.lex_state = 0, .external_lex_state = 6}, - [1108] = {.lex_state = 8}, - [1109] = {.lex_state = 14}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 14}, + [1104] = {.lex_state = 0, .external_lex_state = 6}, + [1105] = {.lex_state = 0}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 14}, + [1109] = {.lex_state = 0}, + [1110] = {.lex_state = 14}, + [1111] = {.lex_state = 14}, + [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 14}, + [1114] = {.lex_state = 0, .external_lex_state = 6}, [1115] = {.lex_state = 14}, - [1116] = {.lex_state = 0}, + [1116] = {.lex_state = 0, .external_lex_state = 6}, [1117] = {.lex_state = 14}, [1118] = {.lex_state = 0}, [1119] = {.lex_state = 0, .external_lex_state = 6}, [1120] = {.lex_state = 0, .external_lex_state = 6}, - [1121] = {.lex_state = 0, .external_lex_state = 6}, - [1122] = {.lex_state = 14}, - [1123] = {.lex_state = 0, .external_lex_state = 6}, - [1124] = {.lex_state = 0, .external_lex_state = 6}, - [1125] = {.lex_state = 16}, - [1126] = {.lex_state = 14}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0, .external_lex_state = 6}, - [1129] = {.lex_state = 0, .external_lex_state = 6}, - [1130] = {.lex_state = 0, .external_lex_state = 6}, - [1131] = {.lex_state = 0, .external_lex_state = 6}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0, .external_lex_state = 6}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 16}, + [1123] = {.lex_state = 0}, + [1124] = {.lex_state = 16}, + [1125] = {.lex_state = 0, .external_lex_state = 6}, + [1126] = {.lex_state = 0, .external_lex_state = 6}, + [1127] = {.lex_state = 0, .external_lex_state = 6}, + [1128] = {.lex_state = 14}, + [1129] = {.lex_state = 0}, + [1130] = {.lex_state = 0}, + [1131] = {.lex_state = 0}, + [1132] = {.lex_state = 0, .external_lex_state = 6}, + [1133] = {.lex_state = 0}, + [1134] = {.lex_state = 14, .external_lex_state = 2}, + [1135] = {.lex_state = 0, .external_lex_state = 6}, + [1136] = {.lex_state = 0, .external_lex_state = 6}, + [1137] = {.lex_state = 0, .external_lex_state = 6}, [1138] = {.lex_state = 14}, - [1139] = {.lex_state = 14, .external_lex_state = 2}, - [1140] = {.lex_state = 14}, - [1141] = {.lex_state = 0, .external_lex_state = 6}, - [1142] = {.lex_state = 14}, - [1143] = {.lex_state = 0, .external_lex_state = 6}, - [1144] = {.lex_state = 16}, + [1139] = {.lex_state = 14}, + [1140] = {.lex_state = 0}, + [1141] = {.lex_state = 0}, + [1142] = {.lex_state = 0, .external_lex_state = 6}, + [1143] = {.lex_state = 14}, + [1144] = {.lex_state = 14}, [1145] = {.lex_state = 14}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 14}, - [1148] = {.lex_state = 0}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 14}, [1149] = {.lex_state = 14}, - [1150] = {.lex_state = 0, .external_lex_state = 6}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 14}, - [1154] = {.lex_state = 0, .external_lex_state = 6}, - [1155] = {.lex_state = 0, .external_lex_state = 6}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 14}, + [1152] = {.lex_state = 0, .external_lex_state = 6}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0, .external_lex_state = 6}, - [1158] = {.lex_state = 0, .external_lex_state = 6}, - [1159] = {.lex_state = 0, .external_lex_state = 6}, - [1160] = {.lex_state = 14}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 14}, + [1157] = {.lex_state = 14}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0, .external_lex_state = 6}, + [1162] = {.lex_state = 0, .external_lex_state = 6}, + [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 14}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 14}, - [1172] = {.lex_state = 0, .external_lex_state = 6}, - [1173] = {.lex_state = 14}, + [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 0, .external_lex_state = 6}, + [1168] = {.lex_state = 14}, + [1169] = {.lex_state = 0, .external_lex_state = 6}, + [1170] = {.lex_state = 14}, + [1171] = {.lex_state = 0}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, + [1175] = {.lex_state = 0, .external_lex_state = 6}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0, .external_lex_state = 6}, - [1179] = {.lex_state = 14}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 14}, + [1181] = {.lex_state = 14}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 14}, [1184] = {.lex_state = 14}, [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 14}, + [1187] = {.lex_state = 0, .external_lex_state = 6}, [1188] = {.lex_state = 0, .external_lex_state = 6}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, + [1190] = {.lex_state = 14}, + [1191] = {.lex_state = 14}, [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0, .external_lex_state = 6}, - [1195] = {.lex_state = 0, .external_lex_state = 6}, + [1193] = {.lex_state = 14}, + [1194] = {.lex_state = 14}, + [1195] = {.lex_state = 0}, [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 0, .external_lex_state = 6}, - [1198] = {.lex_state = 14}, + [1197] = {.lex_state = 14}, + [1198] = {.lex_state = 0, .external_lex_state = 6}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 14}, + [1200] = {.lex_state = 0, .external_lex_state = 6}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 14}, + [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, + [1205] = {.lex_state = 0, .external_lex_state = 6}, + [1206] = {.lex_state = 16}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0, .external_lex_state = 6}, - [1213] = {.lex_state = 0, .external_lex_state = 6}, + [1209] = {.lex_state = 8}, + [1210] = {.lex_state = 0, .external_lex_state = 6}, + [1211] = {.lex_state = 0, .external_lex_state = 6}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0}, [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, [1216] = {.lex_state = 0}, @@ -7312,291 +7314,264 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 8}, - [1222] = {.lex_state = 0}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 8}, [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0, .external_lex_state = 6}, - [1228] = {.lex_state = 0, .external_lex_state = 6}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 14}, - [1232] = {.lex_state = 16}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 14}, + [1234] = {.lex_state = 14}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0, .external_lex_state = 6}, + [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0, .external_lex_state = 6}, - [1240] = {.lex_state = 0, .external_lex_state = 6}, + [1239] = {.lex_state = 14}, + [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0, .external_lex_state = 6}, + [1242] = {.lex_state = 0, .external_lex_state = 6}, + [1243] = {.lex_state = 0}, [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 8}, - [1246] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0, .external_lex_state = 6}, [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 14}, - [1250] = {.lex_state = 14}, - [1251] = {.lex_state = 0}, + [1248] = {.lex_state = 8}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 14}, [1252] = {.lex_state = 0}, [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 14}, + [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, [1257] = {.lex_state = 14}, - [1258] = {.lex_state = 14}, + [1258] = {.lex_state = 8}, [1259] = {.lex_state = 14}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0, .external_lex_state = 6}, - [1263] = {.lex_state = 14}, - [1264] = {.lex_state = 8}, + [1260] = {.lex_state = 14}, + [1261] = {.lex_state = 14}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 0}, [1265] = {.lex_state = 14}, [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 14}, - [1269] = {.lex_state = 14}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 14}, + [1267] = {.lex_state = 14}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 0, .external_lex_state = 6}, + [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, + [1273] = {.lex_state = 14}, + [1274] = {.lex_state = 14}, + [1275] = {.lex_state = 14}, + [1276] = {.lex_state = 14}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 0}, + [1281] = {.lex_state = 0, .external_lex_state = 6}, + [1282] = {.lex_state = 8}, [1283] = {.lex_state = 0}, [1284] = {.lex_state = 0}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 8}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 14}, - [1294] = {.lex_state = 8}, + [1288] = {.lex_state = 0, .external_lex_state = 6}, + [1289] = {.lex_state = 0, .external_lex_state = 6}, + [1290] = {.lex_state = 0, .external_lex_state = 6}, + [1291] = {.lex_state = 0, .external_lex_state = 6}, + [1292] = {.lex_state = 14}, + [1293] = {.lex_state = 0, .external_lex_state = 6}, + [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0, .external_lex_state = 6}, + [1298] = {.lex_state = 17}, + [1299] = {.lex_state = 0}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 14}, + [1301] = {.lex_state = 0, .external_lex_state = 6}, + [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0, .external_lex_state = 6}, - [1305] = {.lex_state = 14}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 17}, [1306] = {.lex_state = 0}, [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, + [1308] = {.lex_state = 17}, [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 14}, - [1312] = {.lex_state = 14}, - [1313] = {.lex_state = 0, .external_lex_state = 6}, + [1310] = {.lex_state = 17}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 17}, + [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 17}, - [1317] = {.lex_state = 0}, + [1315] = {.lex_state = 17}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 17}, [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0, .external_lex_state = 6}, - [1323] = {.lex_state = 17}, - [1324] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 17}, [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 17}, - [1330] = {.lex_state = 0}, + [1326] = {.lex_state = 0, .external_lex_state = 6}, + [1327] = {.lex_state = 0, .external_lex_state = 6}, + [1328] = {.lex_state = 0, .external_lex_state = 6}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0, .external_lex_state = 6}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0, .external_lex_state = 6}, + [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 0}, [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 0}, + [1338] = {.lex_state = 0, .external_lex_state = 6}, [1339] = {.lex_state = 0, .external_lex_state = 6}, - [1340] = {.lex_state = 14}, + [1340] = {.lex_state = 0}, [1341] = {.lex_state = 0, .external_lex_state = 6}, [1342] = {.lex_state = 17}, - [1343] = {.lex_state = 17}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 17}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 0, .external_lex_state = 6}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0, .external_lex_state = 6}, + [1347] = {.lex_state = 16}, [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 17}, - [1351] = {.lex_state = 17}, - [1352] = {.lex_state = 16}, + [1349] = {.lex_state = 17}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 0, .external_lex_state = 6}, [1353] = {.lex_state = 0, .external_lex_state = 6}, [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0, .external_lex_state = 6}, - [1356] = {.lex_state = 0, .external_lex_state = 6}, - [1357] = {.lex_state = 0, .external_lex_state = 6}, - [1358] = {.lex_state = 0}, + [1355] = {.lex_state = 14}, + [1356] = {.lex_state = 14}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 14}, [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0, .external_lex_state = 6}, + [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0, .external_lex_state = 6}, - [1366] = {.lex_state = 0, .external_lex_state = 6}, + [1364] = {.lex_state = 14}, + [1365] = {.lex_state = 14}, + [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0, .external_lex_state = 6}, + [1368] = {.lex_state = 0}, [1369] = {.lex_state = 0}, [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0, .external_lex_state = 6}, + [1373] = {.lex_state = 14}, [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0, .external_lex_state = 6}, - [1376] = {.lex_state = 0, .external_lex_state = 6}, - [1377] = {.lex_state = 0, .external_lex_state = 6}, - [1378] = {.lex_state = 0, .external_lex_state = 6}, - [1379] = {.lex_state = 17}, + [1375] = {.lex_state = 14}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 17}, - [1384] = {.lex_state = 14}, + [1383] = {.lex_state = 14}, + [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 14}, + [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, + [1392] = {.lex_state = 14}, [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, + [1394] = {.lex_state = 14}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, + [1396] = {.lex_state = 14}, + [1397] = {.lex_state = 14}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 14}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 14}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, + [1400] = {.lex_state = 14}, + [1401] = {.lex_state = 0}, + [1402] = {.lex_state = 14}, + [1403] = {.lex_state = 14}, + [1404] = {.lex_state = 14}, [1405] = {.lex_state = 14}, - [1406] = {.lex_state = 14}, - [1407] = {.lex_state = 14}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, [1409] = {.lex_state = 0}, [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, + [1411] = {.lex_state = 14}, + [1412] = {.lex_state = 14}, [1413] = {.lex_state = 0}, [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, + [1415] = {.lex_state = 14}, [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 14}, + [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 14}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 14}, - [1421] = {.lex_state = 14}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 14}, + [1423] = {.lex_state = 14}, + [1424] = {.lex_state = 14}, [1425] = {.lex_state = 0}, [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 14}, + [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 14}, + [1429] = {.lex_state = 14}, + [1430] = {.lex_state = 0}, [1431] = {.lex_state = 14}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, + [1433] = {.lex_state = 14}, + [1434] = {.lex_state = 14}, + [1435] = {.lex_state = 14}, [1436] = {.lex_state = 0}, [1437] = {.lex_state = 0}, [1438] = {.lex_state = 14}, [1439] = {.lex_state = 14}, - [1440] = {.lex_state = 0}, + [1440] = {.lex_state = 14}, [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 14}, - [1443] = {.lex_state = 14}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, [1444] = {.lex_state = 14}, [1445] = {.lex_state = 0}, [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 14}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 14}, - [1450] = {.lex_state = 14}, - [1451] = {.lex_state = 14}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 14}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 0}, [1452] = {.lex_state = 0}, [1453] = {.lex_state = 0}, [1454] = {.lex_state = 0}, [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 14}, - [1457] = {.lex_state = 0}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 14}, [1458] = {.lex_state = 14}, - [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 14}, - [1461] = {.lex_state = 14}, - [1462] = {.lex_state = 14}, + [1459] = {.lex_state = 14}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, [1465] = {.lex_state = 0}, [1466] = {.lex_state = 14}, - [1467] = {.lex_state = 0}, + [1467] = {.lex_state = 14}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, [1470] = {.lex_state = 0}, [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 14}, + [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 14}, - [1475] = {.lex_state = 14}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 14}, - [1481] = {.lex_state = 14}, - [1482] = {.lex_state = 14}, - [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 14}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 14}, - [1494] = {.lex_state = 14}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 14}, - [1505] = {.lex_state = 14}, }; enum { @@ -7758,73 +7733,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1487), - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_if_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(982), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(982), + [sym_module] = STATE(1455), + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_if_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_with_statement] = STATE(60), + [sym_match_statement] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(926), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(926), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -7873,73 +7848,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [2] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(289), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(485), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -7988,73 +7963,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [3] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(520), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(474), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8099,77 +8074,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [4] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(333), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(522), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8214,77 +8189,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [5] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(465), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(520), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8329,25 +8304,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [6] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -8355,51 +8330,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(467), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(315), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8444,77 +8419,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [7] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(535), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(400), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8563,73 +8538,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [8] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(340), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(277), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8674,77 +8649,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [9] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(336), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(452), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8793,73 +8768,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [10] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(470), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(479), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8908,73 +8883,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [11] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(534), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(477), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9023,73 +8998,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [12] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(541), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(475), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9138,73 +9113,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [13] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(552), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(336), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9253,73 +9228,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [14] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(410), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(333), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9368,73 +9343,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [15] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(557), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(481), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9479,77 +9454,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [16] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(484), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(462), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9594,77 +9569,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [17] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(546), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(557), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9713,73 +9688,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [18] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(493), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(436), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9824,77 +9799,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [19] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(346), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(332), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9943,73 +9918,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [20] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(571), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(958), + [sym_block] = STATE(997), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10054,25 +10029,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [21] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10080,51 +10055,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(568), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(532), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10169,77 +10144,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [22] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(395), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(449), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10288,21 +10263,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [23] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(456), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_class] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(67), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(103), + [sym__string_start] = ACTIONS(81), + }, + [24] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10310,51 +10400,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(473), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(279), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10399,77 +10489,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [24] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(427), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [25] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(418), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10517,74 +10607,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [25] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(563), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [26] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(490), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10629,25 +10719,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, - [26] = { + [27] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10655,51 +10745,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(551), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(500), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10744,77 +10834,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [27] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(560), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [28] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(506), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10862,22 +10952,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [28] = { + [29] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -10885,51 +10975,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(544), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(538), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10974,77 +11064,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [29] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(355), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [30] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(548), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11092,189 +11182,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, - [30] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(444), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(67), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym__string_start] = ACTIONS(81), - }, - [31] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(479), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [31] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(553), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11323,73 +11298,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [32] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(509), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(555), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11438,73 +11413,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [33] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(343), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(539), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11553,73 +11528,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [34] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(337), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(549), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11668,73 +11643,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [35] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(523), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(482), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11783,73 +11758,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [36] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(471), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(419), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11894,77 +11869,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [37] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(501), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(318), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12009,77 +11984,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [38] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(476), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(530), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12124,25 +12099,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [39] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -12150,51 +12125,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(361), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(348), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12239,77 +12214,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [40] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(538), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(487), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12354,25 +12329,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [41] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -12380,51 +12355,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(371), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(344), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12469,77 +12444,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [42] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(432), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(464), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12590,19 +12565,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [43] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -12610,51 +12585,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(505), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(466), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12699,77 +12674,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [44] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(330), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(473), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12818,73 +12793,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [45] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(553), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(447), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12933,73 +12908,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [46] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(449), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(441), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13048,73 +13023,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [47] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(352), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(542), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13163,73 +13138,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [48] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(947), - [sym_block] = STATE(1020), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(329), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13274,77 +13249,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [49] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(947), - [sym_block] = STATE(997), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(446), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13389,77 +13364,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [50] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(529), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(339), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13504,25 +13479,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [51] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -13530,51 +13505,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(281), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(533), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13619,25 +13594,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [52] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -13645,51 +13620,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(548), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(552), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13734,77 +13709,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [53] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_match_statement] = STATE(61), - [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(513), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(958), + [sym_block] = STATE(996), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13849,25 +13824,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym__string_start] = ACTIONS(81), }, [54] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -13875,51 +13850,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(527), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(391), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13964,25 +13939,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [55] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -13990,51 +13965,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(416), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(535), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14079,77 +14054,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [56] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(463), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_with_statement] = STATE(61), + [sym_match_statement] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(958), + [sym_block] = STATE(323), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14200,19 +14175,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [57] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -14220,51 +14195,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(566), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(454), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14309,77 +14284,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [58] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_match_statement] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(947), - [sym_block] = STATE(508), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(958), + [sym_block] = STATE(398), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14424,25 +14399,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), }, [59] = { [sym__statement] = STATE(61), [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), [sym_if_statement] = STATE(61), [sym_for_statement] = STATE(61), [sym_while_statement] = STATE(61), @@ -14450,51 +14425,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(61), [sym_match_statement] = STATE(61), [sym_function_definition] = STATE(61), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), [sym_class_definition] = STATE(61), [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(947), - [sym_block] = STATE(526), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_decorator] = STATE(958), + [sym_block] = STATE(316), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14539,76 +14514,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym__string_start] = ACTIONS(81), }, [60] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(947), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(926), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(926), + [ts_builtin_sym_end] = ACTIONS(107), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14622,24 +14598,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(83), - [anon_sym_async] = ACTIONS(85), - [anon_sym_for] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [anon_sym_with] = ACTIONS(93), - [anon_sym_match] = ACTIONS(95), + [anon_sym_if] = ACTIONS(33), + [anon_sym_async] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_with] = ACTIONS(43), + [anon_sym_match] = ACTIONS(45), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(97), + [anon_sym_def] = ACTIONS(55), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(99), + [anon_sym_class] = ACTIONS(65), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14653,76 +14629,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), }, [61] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(947), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(958), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14771,73 +14746,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [62] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(982), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(982), - [ts_builtin_sym_end] = ACTIONS(111), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(958), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(111), + [anon_sym_import] = ACTIONS(114), + [anon_sym_from] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(123), + [anon_sym_print] = ACTIONS(126), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_return] = ACTIONS(132), + [anon_sym_del] = ACTIONS(135), + [anon_sym_raise] = ACTIONS(138), + [anon_sym_pass] = ACTIONS(141), + [anon_sym_break] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_if] = ACTIONS(150), + [anon_sym_async] = ACTIONS(153), + [anon_sym_for] = ACTIONS(156), + [anon_sym_while] = ACTIONS(159), + [anon_sym_try] = ACTIONS(162), + [anon_sym_with] = ACTIONS(165), + [anon_sym_match] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(174), + [anon_sym_LBRACE] = ACTIONS(177), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_def] = ACTIONS(183), + [anon_sym_global] = ACTIONS(186), + [anon_sym_nonlocal] = ACTIONS(189), + [anon_sym_exec] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_class] = ACTIONS(198), + [anon_sym_AT] = ACTIONS(201), + [anon_sym_not] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(207), + [anon_sym_yield] = ACTIONS(210), + [sym_ellipsis] = ACTIONS(213), + [sym_integer] = ACTIONS(216), + [sym_float] = ACTIONS(213), + [anon_sym_await] = ACTIONS(219), + [sym_true] = ACTIONS(216), + [sym_false] = ACTIONS(216), + [sym_none] = ACTIONS(216), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(222), + [sym__string_start] = ACTIONS(224), + }, + [63] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(958), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14851,24 +14939,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(27), [anon_sym_break] = ACTIONS(29), [anon_sym_continue] = ACTIONS(31), - [anon_sym_if] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_with] = ACTIONS(43), - [anon_sym_match] = ACTIONS(45), + [anon_sym_if] = ACTIONS(83), + [anon_sym_async] = ACTIONS(85), + [anon_sym_for] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_try] = ACTIONS(91), + [anon_sym_with] = ACTIONS(93), + [anon_sym_match] = ACTIONS(95), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_def] = ACTIONS(55), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(57), [anon_sym_nonlocal] = ACTIONS(59), [anon_sym_exec] = ACTIONS(61), [anon_sym_type] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_class] = ACTIONS(99), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -14882,189 +14970,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(227), [sym__string_start] = ACTIONS(81), }, - [63] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(947), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(947), - [sym_identifier] = ACTIONS(113), - [anon_sym_import] = ACTIONS(116), - [anon_sym_from] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_print] = ACTIONS(128), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_return] = ACTIONS(134), - [anon_sym_del] = ACTIONS(137), - [anon_sym_raise] = ACTIONS(140), - [anon_sym_pass] = ACTIONS(143), - [anon_sym_break] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_if] = ACTIONS(152), - [anon_sym_async] = ACTIONS(155), - [anon_sym_for] = ACTIONS(158), - [anon_sym_while] = ACTIONS(161), - [anon_sym_try] = ACTIONS(164), - [anon_sym_with] = ACTIONS(167), - [anon_sym_match] = ACTIONS(170), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_LBRACE] = ACTIONS(179), - [anon_sym_STAR_STAR] = ACTIONS(182), - [anon_sym_def] = ACTIONS(185), - [anon_sym_global] = ACTIONS(188), - [anon_sym_nonlocal] = ACTIONS(191), - [anon_sym_exec] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_class] = ACTIONS(200), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_not] = ACTIONS(206), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_lambda] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(212), - [sym_ellipsis] = ACTIONS(215), - [sym_integer] = ACTIONS(218), - [sym_float] = ACTIONS(215), - [anon_sym_await] = ACTIONS(221), - [sym_true] = ACTIONS(218), - [sym_false] = ACTIONS(218), - [sym_none] = ACTIONS(218), + [64] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_if_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(926), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(926), + [ts_builtin_sym_end] = ACTIONS(222), + [sym_identifier] = ACTIONS(111), + [anon_sym_import] = ACTIONS(114), + [anon_sym_from] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(123), + [anon_sym_print] = ACTIONS(126), + [anon_sym_assert] = ACTIONS(129), + [anon_sym_return] = ACTIONS(132), + [anon_sym_del] = ACTIONS(135), + [anon_sym_raise] = ACTIONS(138), + [anon_sym_pass] = ACTIONS(141), + [anon_sym_break] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_if] = ACTIONS(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_match] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(174), + [anon_sym_LBRACE] = ACTIONS(177), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_def] = ACTIONS(250), + [anon_sym_global] = ACTIONS(186), + [anon_sym_nonlocal] = ACTIONS(189), + [anon_sym_exec] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_class] = ACTIONS(253), + [anon_sym_AT] = ACTIONS(201), + [anon_sym_not] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(171), + [anon_sym_lambda] = ACTIONS(207), + [anon_sym_yield] = ACTIONS(210), + [sym_ellipsis] = ACTIONS(213), + [sym_integer] = ACTIONS(216), + [sym_float] = ACTIONS(213), + [anon_sym_await] = ACTIONS(219), + [sym_true] = ACTIONS(216), + [sym_false] = ACTIONS(216), + [sym_none] = ACTIONS(216), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(224), - [sym__string_start] = ACTIONS(226), + [sym__string_start] = ACTIONS(224), }, - [64] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_if_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(947), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(947), + [65] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_if_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(958), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(958), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15109,152 +15198,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(229), + [sym__dedent] = ACTIONS(256), [sym__string_start] = ACTIONS(81), }, - [65] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_if_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(982), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(982), - [ts_builtin_sym_end] = ACTIONS(224), - [sym_identifier] = ACTIONS(113), - [anon_sym_import] = ACTIONS(116), - [anon_sym_from] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(122), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_print] = ACTIONS(128), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_return] = ACTIONS(134), - [anon_sym_del] = ACTIONS(137), - [anon_sym_raise] = ACTIONS(140), - [anon_sym_pass] = ACTIONS(143), - [anon_sym_break] = ACTIONS(146), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_if] = ACTIONS(231), - [anon_sym_async] = ACTIONS(234), - [anon_sym_for] = ACTIONS(237), - [anon_sym_while] = ACTIONS(240), - [anon_sym_try] = ACTIONS(243), - [anon_sym_with] = ACTIONS(246), - [anon_sym_match] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_LBRACE] = ACTIONS(179), - [anon_sym_STAR_STAR] = ACTIONS(182), - [anon_sym_def] = ACTIONS(252), - [anon_sym_global] = ACTIONS(188), - [anon_sym_nonlocal] = ACTIONS(191), - [anon_sym_exec] = ACTIONS(194), - [anon_sym_type] = ACTIONS(197), - [anon_sym_class] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_not] = ACTIONS(206), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_lambda] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(212), - [sym_ellipsis] = ACTIONS(215), - [sym_integer] = ACTIONS(218), - [sym_float] = ACTIONS(215), - [anon_sym_await] = ACTIONS(221), - [sym_true] = ACTIONS(218), - [sym_false] = ACTIONS(218), - [sym_none] = ACTIONS(218), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(226), - }, [66] = { - [sym_named_expression] = STATE(883), - [sym_list_splat] = STATE(1367), - [sym_dictionary_splat] = STATE(1367), - [sym_expression_list] = STATE(1431), - [sym_expression] = STATE(1047), - [sym_primary_expression] = STATE(616), - [sym_not_operator] = STATE(883), - [sym_boolean_operator] = STATE(883), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_comparison_operator] = STATE(883), - [sym_lambda] = STATE(883), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_conditional_expression] = STATE(883), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_named_expression] = STATE(862), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_expression_list] = STATE(1404), + [sym_expression] = STATE(1029), + [sym_primary_expression] = STATE(589), + [sym_not_operator] = STATE(862), + [sym_boolean_operator] = STATE(862), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_comparison_operator] = STATE(862), + [sym_lambda] = STATE(862), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_conditional_expression] = STATE(862), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(258), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(262), @@ -15323,34 +15298,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(299), }, [67] = { - [sym_named_expression] = STATE(883), - [sym_list_splat] = STATE(1367), - [sym_dictionary_splat] = STATE(1367), - [sym_expression_list] = STATE(1401), - [sym_expression] = STATE(1038), - [sym_primary_expression] = STATE(616), - [sym_not_operator] = STATE(883), - [sym_boolean_operator] = STATE(883), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_comparison_operator] = STATE(883), - [sym_lambda] = STATE(883), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_conditional_expression] = STATE(883), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_named_expression] = STATE(862), + [sym_list_splat] = STATE(1329), + [sym_dictionary_splat] = STATE(1329), + [sym_expression_list] = STATE(1399), + [sym_expression] = STATE(1014), + [sym_primary_expression] = STATE(589), + [sym_not_operator] = STATE(862), + [sym_boolean_operator] = STATE(862), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_comparison_operator] = STATE(862), + [sym_lambda] = STATE(862), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_conditional_expression] = STATE(862), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(258), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(262), @@ -15419,59 +15394,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(299), }, [68] = { - [sym__simple_statements] = STATE(367), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym__simple_statements] = STATE(386), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15513,59 +15488,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [69] = { - [sym__simple_statements] = STATE(1030), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym__simple_statements] = STATE(496), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15607,59 +15582,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [70] = { - [sym__simple_statements] = STATE(342), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym__simple_statements] = STATE(450), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15701,59 +15676,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [71] = { - [sym__simple_statements] = STATE(466), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym__simple_statements] = STATE(326), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15795,59 +15770,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [72] = { - [sym__simple_statements] = STATE(272), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym__simple_statements] = STATE(397), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15889,59 +15864,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [73] = { - [sym__simple_statements] = STATE(411), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym__simple_statements] = STATE(486), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15983,153 +15958,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [74] = { - [sym_chevron] = STATE(1128), - [sym_named_expression] = STATE(985), - [sym_expression] = STATE(1019), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_attribute] = STATE(759), - [sym_subscript] = STATE(759), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [sym_identifier] = ACTIONS(327), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_COLON_EQ] = ACTIONS(271), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(273), - [anon_sym_async] = ACTIONS(329), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(260), - [anon_sym_PLUS] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(273), - [anon_sym_exec] = ACTIONS(329), - [anon_sym_type] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(287), - [anon_sym_is] = ACTIONS(260), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(291), - [anon_sym_DASH_EQ] = ACTIONS(291), - [anon_sym_STAR_EQ] = ACTIONS(291), - [anon_sym_SLASH_EQ] = ACTIONS(291), - [anon_sym_AT_EQ] = ACTIONS(291), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(291), - [anon_sym_PERCENT_EQ] = ACTIONS(291), - [anon_sym_STAR_STAR_EQ] = ACTIONS(291), - [anon_sym_GT_GT_EQ] = ACTIONS(291), - [anon_sym_LT_LT_EQ] = ACTIONS(291), - [anon_sym_AMP_EQ] = ACTIONS(291), - [anon_sym_CARET_EQ] = ACTIONS(291), - [anon_sym_PIPE_EQ] = ACTIONS(291), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(333), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(287), - [sym__newline] = ACTIONS(287), - [sym__string_start] = ACTIONS(81), - }, - [75] = { - [sym__simple_statements] = STATE(418), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym__simple_statements] = STATE(471), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(327), + [sym__indent] = ACTIONS(329), + [sym__string_start] = ACTIONS(81), + }, + [75] = { + [sym__simple_statements] = STATE(463), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [sym_identifier] = ACTIONS(7), + [anon_sym_import] = ACTIONS(9), + [anon_sym_from] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_print] = ACTIONS(17), + [anon_sym_assert] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_raise] = ACTIONS(25), + [anon_sym_pass] = ACTIONS(27), + [anon_sym_break] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_async] = ACTIONS(301), + [anon_sym_match] = ACTIONS(301), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(53), + [anon_sym_global] = ACTIONS(57), + [anon_sym_nonlocal] = ACTIONS(59), + [anon_sym_exec] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(331), + [sym__indent] = ACTIONS(333), + [sym__string_start] = ACTIONS(81), + }, + [76] = { + [sym__simple_statements] = STATE(451), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16170,60 +16239,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(337), [sym__string_start] = ACTIONS(81), }, - [76] = { - [sym__simple_statements] = STATE(485), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [77] = { + [sym__simple_statements] = STATE(448), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16264,60 +16333,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(341), [sym__string_start] = ACTIONS(81), }, - [77] = { - [sym__simple_statements] = STATE(348), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [78] = { + [sym__simple_statements] = STATE(319), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16358,60 +16427,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(345), [sym__string_start] = ACTIONS(81), }, - [78] = { - [sym__simple_statements] = STATE(497), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [79] = { + [sym__simple_statements] = STATE(476), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16452,60 +16521,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(349), [sym__string_start] = ACTIONS(81), }, - [79] = { - [sym__simple_statements] = STATE(488), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [80] = { + [sym__simple_statements] = STATE(453), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16546,60 +16615,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(353), [sym__string_start] = ACTIONS(81), }, - [80] = { - [sym__simple_statements] = STATE(561), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [81] = { + [sym__simple_statements] = STATE(504), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16640,60 +16709,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(357), [sym__string_start] = ACTIONS(81), }, - [81] = { - [sym__simple_statements] = STATE(469), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [82] = { + [sym__simple_statements] = STATE(478), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16734,60 +16803,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(361), [sym__string_start] = ACTIONS(81), }, - [82] = { - [sym__simple_statements] = STATE(558), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [83] = { + [sym__simple_statements] = STATE(461), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16828,60 +16897,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(365), [sym__string_start] = ACTIONS(81), }, - [83] = { - [sym__simple_statements] = STATE(549), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [84] = { + [sym__simple_statements] = STATE(346), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16922,60 +16991,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(369), [sym__string_start] = ACTIONS(81), }, - [84] = { - [sym__simple_statements] = STATE(517), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [85] = { + [sym__simple_statements] = STATE(545), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17016,60 +17085,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(373), [sym__string_start] = ACTIONS(81), }, - [85] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [86] = { + [sym__simple_statements] = STATE(531), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17110,60 +17179,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(377), [sym__string_start] = ACTIONS(81), }, - [86] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [87] = { + [sym__simple_statements] = STATE(266), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17204,60 +17273,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(381), [sym__string_start] = ACTIONS(81), }, - [87] = { - [sym__simple_statements] = STATE(512), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [88] = { + [sym__simple_statements] = STATE(252), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17298,60 +17367,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(385), [sym__string_start] = ACTIONS(81), }, - [88] = { - [sym__simple_statements] = STATE(483), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [89] = { + [sym__simple_statements] = STATE(460), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17392,60 +17461,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(389), [sym__string_start] = ACTIONS(81), }, - [89] = { - [sym__simple_statements] = STATE(545), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [90] = { + [sym__simple_statements] = STATE(343), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17486,60 +17555,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(393), [sym__string_start] = ACTIONS(81), }, - [90] = { - [sym__simple_statements] = STATE(349), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [91] = { + [sym__simple_statements] = STATE(534), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17580,60 +17649,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(397), [sym__string_start] = ACTIONS(81), }, - [91] = { - [sym__simple_statements] = STATE(543), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [92] = { + [sym__simple_statements] = STATE(465), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17674,60 +17743,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(401), [sym__string_start] = ACTIONS(81), }, - [92] = { - [sym__simple_statements] = STATE(491), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [93] = { + [sym__simple_statements] = STATE(327), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17768,60 +17837,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(405), [sym__string_start] = ACTIONS(81), }, - [93] = { - [sym__simple_statements] = STATE(564), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [94] = { + [sym__simple_statements] = STATE(979), + [sym_import_statement] = STATE(1187), + [sym_future_import_statement] = STATE(1187), + [sym_import_from_statement] = STATE(1187), + [sym_print_statement] = STATE(1187), + [sym_assert_statement] = STATE(1187), + [sym_expression_statement] = STATE(1187), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1187), + [sym_delete_statement] = STATE(1187), + [sym_raise_statement] = STATE(1187), + [sym_pass_statement] = STATE(1187), + [sym_break_statement] = STATE(1187), + [sym_continue_statement] = STATE(1187), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1187), + [sym_nonlocal_statement] = STATE(1187), + [sym_exec_statement] = STATE(1187), + [sym_type_alias_statement] = STATE(1187), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17862,60 +17931,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(409), [sym__string_start] = ACTIONS(81), }, - [94] = { - [sym__simple_statements] = STATE(401), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [95] = { + [sym__simple_statements] = STATE(493), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17956,60 +18025,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(413), [sym__string_start] = ACTIONS(81), }, - [95] = { - [sym__simple_statements] = STATE(325), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [96] = { + [sym__simple_statements] = STATE(505), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18050,60 +18119,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(417), [sym__string_start] = ACTIONS(81), }, - [96] = { - [sym__simple_statements] = STATE(559), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [97] = { + [sym__simple_statements] = STATE(321), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18144,60 +18213,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(421), [sym__string_start] = ACTIONS(81), }, - [97] = { - [sym__simple_statements] = STATE(458), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [98] = { + [sym__simple_statements] = STATE(507), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18238,60 +18307,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(425), [sym__string_start] = ACTIONS(81), }, - [98] = { - [sym__simple_statements] = STATE(569), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [99] = { + [sym__simple_statements] = STATE(508), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18332,60 +18401,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(429), [sym__string_start] = ACTIONS(81), }, - [99] = { - [sym__simple_statements] = STATE(468), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [100] = { + [sym__simple_statements] = STATE(540), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18426,60 +18495,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(433), [sym__string_start] = ACTIONS(81), }, - [100] = { - [sym__simple_statements] = STATE(570), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [101] = { + [sym__simple_statements] = STATE(369), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18520,60 +18589,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(437), [sym__string_start] = ACTIONS(81), }, - [101] = { - [sym__simple_statements] = STATE(515), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [102] = { + [sym__simple_statements] = STATE(342), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18614,60 +18683,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(441), [sym__string_start] = ACTIONS(81), }, - [102] = { - [sym__simple_statements] = STATE(475), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [103] = { + [sym__simple_statements] = STATE(544), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18708,60 +18777,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(445), [sym__string_start] = ACTIONS(81), }, - [103] = { - [sym__simple_statements] = STATE(386), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [104] = { + [sym__simple_statements] = STATE(459), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18802,60 +18871,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(449), [sym__string_start] = ACTIONS(81), }, - [104] = { - [sym__simple_statements] = STATE(565), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [105] = { + [sym__simple_statements] = STATE(551), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18896,60 +18965,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(453), [sym__string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(496), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [106] = { + [sym__simple_statements] = STATE(420), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18990,60 +19059,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(457), [sym__string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(500), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [107] = { + [sym__simple_statements] = STATE(524), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19084,60 +19153,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(461), [sym__string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(331), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [108] = { + [sym__simple_statements] = STATE(338), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19178,60 +19247,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(465), [sym__string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(478), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [109] = { + [sym__simple_statements] = STATE(554), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19272,60 +19341,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(469), [sym__string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(341), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [110] = { + [sym__simple_statements] = STATE(558), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19366,60 +19435,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(473), [sym__string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(1013), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [111] = { + [sym__simple_statements] = STATE(457), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19460,60 +19529,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(477), [sym__string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(539), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [112] = { + [sym__simple_statements] = STATE(352), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19554,60 +19623,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(481), [sym__string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(474), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [113] = { + [sym__simple_statements] = STATE(317), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19648,60 +19717,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(485), [sym__string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(389), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [114] = { + [sym__simple_statements] = STATE(483), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19742,60 +19811,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(489), [sym__string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(329), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [115] = { + [sym__simple_statements] = STATE(480), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19836,60 +19905,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(493), [sym__string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(472), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [116] = { + [sym__simple_statements] = STATE(981), + [sym_import_statement] = STATE(1187), + [sym_future_import_statement] = STATE(1187), + [sym_import_from_statement] = STATE(1187), + [sym_print_statement] = STATE(1187), + [sym_assert_statement] = STATE(1187), + [sym_expression_statement] = STATE(1187), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1187), + [sym_delete_statement] = STATE(1187), + [sym_raise_statement] = STATE(1187), + [sym_pass_statement] = STATE(1187), + [sym_break_statement] = STATE(1187), + [sym_continue_statement] = STATE(1187), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1187), + [sym_nonlocal_statement] = STATE(1187), + [sym_exec_statement] = STATE(1187), + [sym_type_alias_statement] = STATE(1187), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19930,60 +19999,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(497), [sym__string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(402), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [117] = { + [sym__simple_statements] = STATE(521), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20024,60 +20093,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(501), [sym__string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(362), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [118] = { + [sym__simple_statements] = STATE(455), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20118,60 +20187,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(505), [sym__string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(503), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [119] = { + [sym__simple_statements] = STATE(501), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20212,60 +20281,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(509), [sym__string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(279), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [120] = { + [sym__simple_statements] = STATE(330), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20306,60 +20375,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(513), [sym__string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(464), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [121] = { + [sym__simple_statements] = STATE(428), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20400,60 +20469,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(517), [sym__string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(537), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [122] = { + [sym__simple_statements] = STATE(527), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20494,60 +20563,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(521), [sym__string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(347), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [123] = { + [sym__simple_statements] = STATE(331), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20588,60 +20657,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(525), [sym__string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(511), - [sym_import_statement] = STATE(1304), - [sym_future_import_statement] = STATE(1304), - [sym_import_from_statement] = STATE(1304), - [sym_print_statement] = STATE(1304), - [sym_assert_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1304), - [sym_delete_statement] = STATE(1304), - [sym_raise_statement] = STATE(1304), - [sym_pass_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1304), - [sym_nonlocal_statement] = STATE(1304), - [sym_exec_statement] = STATE(1304), - [sym_type_alias_statement] = STATE(1304), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [124] = { + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1161), + [sym_future_import_statement] = STATE(1161), + [sym_import_from_statement] = STATE(1161), + [sym_print_statement] = STATE(1161), + [sym_assert_statement] = STATE(1161), + [sym_expression_statement] = STATE(1161), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1161), + [sym_delete_statement] = STATE(1161), + [sym_raise_statement] = STATE(1161), + [sym_pass_statement] = STATE(1161), + [sym_break_statement] = STATE(1161), + [sym_continue_statement] = STATE(1161), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1161), + [sym_nonlocal_statement] = STATE(1161), + [sym_exec_statement] = STATE(1161), + [sym_type_alias_statement] = STATE(1161), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20682,60 +20751,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(529), [sym__string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [125] = { + [sym_chevron] = STATE(1114), + [sym_named_expression] = STATE(937), + [sym_expression] = STATE(1003), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_attribute] = STATE(764), + [sym_subscript] = STATE(764), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [sym_identifier] = ACTIONS(531), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(533), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_COLON_EQ] = ACTIONS(271), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(273), + [anon_sym_async] = ACTIONS(533), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(260), + [anon_sym_PLUS] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(273), + [anon_sym_exec] = ACTIONS(533), + [anon_sym_type] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_not] = ACTIONS(260), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(291), + [anon_sym_DASH_EQ] = ACTIONS(291), + [anon_sym_STAR_EQ] = ACTIONS(291), + [anon_sym_SLASH_EQ] = ACTIONS(291), + [anon_sym_AT_EQ] = ACTIONS(291), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(291), + [anon_sym_PERCENT_EQ] = ACTIONS(291), + [anon_sym_STAR_STAR_EQ] = ACTIONS(291), + [anon_sym_GT_GT_EQ] = ACTIONS(291), + [anon_sym_LT_LT_EQ] = ACTIONS(291), + [anon_sym_AMP_EQ] = ACTIONS(291), + [anon_sym_CARET_EQ] = ACTIONS(291), + [anon_sym_PIPE_EQ] = ACTIONS(291), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(537), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__semicolon] = ACTIONS(287), + [sym__newline] = ACTIONS(287), + [sym__string_start] = ACTIONS(81), + }, + [126] = { + [sym__simple_statements] = STATE(422), + [sym_import_statement] = STATE(1175), + [sym_future_import_statement] = STATE(1175), + [sym_import_from_statement] = STATE(1175), + [sym_print_statement] = STATE(1175), + [sym_assert_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1175), + [sym_delete_statement] = STATE(1175), + [sym_raise_statement] = STATE(1175), + [sym_pass_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1175), + [sym_nonlocal_statement] = STATE(1175), + [sym_exec_statement] = STATE(1175), + [sym_type_alias_statement] = STATE(1175), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20772,251 +20935,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(531), - [sym__indent] = ACTIONS(533), + [sym__newline] = ACTIONS(539), + [sym__indent] = ACTIONS(541), [sym__string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(338), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(301), - [anon_sym_match] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(535), - [sym__indent] = ACTIONS(537), - [sym__string_start] = ACTIONS(81), - }, - [126] = { - [sym__simple_statements] = STATE(506), - [sym_import_statement] = STATE(1213), - [sym_future_import_statement] = STATE(1213), - [sym_import_from_statement] = STATE(1213), - [sym_print_statement] = STATE(1213), - [sym_assert_statement] = STATE(1213), - [sym_expression_statement] = STATE(1213), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1213), - [sym_delete_statement] = STATE(1213), - [sym_raise_statement] = STATE(1213), - [sym_pass_statement] = STATE(1213), - [sym_break_statement] = STATE(1213), - [sym_continue_statement] = STATE(1213), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1213), - [sym_nonlocal_statement] = STATE(1213), - [sym_exec_statement] = STATE(1213), - [sym_type_alias_statement] = STATE(1213), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [sym_identifier] = ACTIONS(7), - [anon_sym_import] = ACTIONS(9), - [anon_sym_from] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_STAR] = ACTIONS(15), - [anon_sym_print] = ACTIONS(17), - [anon_sym_assert] = ACTIONS(19), - [anon_sym_return] = ACTIONS(21), - [anon_sym_del] = ACTIONS(23), - [anon_sym_raise] = ACTIONS(25), - [anon_sym_pass] = ACTIONS(27), - [anon_sym_break] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_async] = ACTIONS(301), - [anon_sym_match] = ACTIONS(301), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(53), - [anon_sym_global] = ACTIONS(57), - [anon_sym_nonlocal] = ACTIONS(59), - [anon_sym_exec] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(539), - [sym__indent] = ACTIONS(541), - [sym__string_start] = ACTIONS(81), - }, - [127] = { - [sym_import_statement] = STATE(1341), - [sym_future_import_statement] = STATE(1341), - [sym_import_from_statement] = STATE(1341), - [sym_print_statement] = STATE(1341), - [sym_assert_statement] = STATE(1341), - [sym_expression_statement] = STATE(1341), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_raise_statement] = STATE(1341), - [sym_pass_statement] = STATE(1341), - [sym_break_statement] = STATE(1341), - [sym_continue_statement] = STATE(1341), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1341), - [sym_nonlocal_statement] = STATE(1341), - [sym_exec_statement] = STATE(1341), - [sym_type_alias_statement] = STATE(1341), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [127] = { + [sym_import_statement] = STATE(1352), + [sym_future_import_statement] = STATE(1352), + [sym_import_from_statement] = STATE(1352), + [sym_print_statement] = STATE(1352), + [sym_assert_statement] = STATE(1352), + [sym_expression_statement] = STATE(1352), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1352), + [sym_delete_statement] = STATE(1352), + [sym_raise_statement] = STATE(1352), + [sym_pass_statement] = STATE(1352), + [sym_break_statement] = STATE(1352), + [sym_continue_statement] = STATE(1352), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1352), + [sym_nonlocal_statement] = STATE(1352), + [sym_exec_statement] = STATE(1352), + [sym_type_alias_statement] = STATE(1352), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21057,58 +21032,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [128] = { - [sym_import_statement] = STATE(1341), - [sym_future_import_statement] = STATE(1341), - [sym_import_from_statement] = STATE(1341), - [sym_print_statement] = STATE(1341), - [sym_assert_statement] = STATE(1341), - [sym_expression_statement] = STATE(1341), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_raise_statement] = STATE(1341), - [sym_pass_statement] = STATE(1341), - [sym_break_statement] = STATE(1341), - [sym_continue_statement] = STATE(1341), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1341), - [sym_nonlocal_statement] = STATE(1341), - [sym_exec_statement] = STATE(1341), - [sym_type_alias_statement] = STATE(1341), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_import_statement] = STATE(1352), + [sym_future_import_statement] = STATE(1352), + [sym_import_from_statement] = STATE(1352), + [sym_print_statement] = STATE(1352), + [sym_assert_statement] = STATE(1352), + [sym_expression_statement] = STATE(1352), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1352), + [sym_delete_statement] = STATE(1352), + [sym_raise_statement] = STATE(1352), + [sym_pass_statement] = STATE(1352), + [sym_break_statement] = STATE(1352), + [sym_continue_statement] = STATE(1352), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1352), + [sym_nonlocal_statement] = STATE(1352), + [sym_exec_statement] = STATE(1352), + [sym_type_alias_statement] = STATE(1352), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21149,58 +21124,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [129] = { - [sym_import_statement] = STATE(1341), - [sym_future_import_statement] = STATE(1341), - [sym_import_from_statement] = STATE(1341), - [sym_print_statement] = STATE(1341), - [sym_assert_statement] = STATE(1341), - [sym_expression_statement] = STATE(1341), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_raise_statement] = STATE(1341), - [sym_pass_statement] = STATE(1341), - [sym_break_statement] = STATE(1341), - [sym_continue_statement] = STATE(1341), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1341), - [sym_nonlocal_statement] = STATE(1341), - [sym_exec_statement] = STATE(1341), - [sym_type_alias_statement] = STATE(1341), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_import_statement] = STATE(1352), + [sym_future_import_statement] = STATE(1352), + [sym_import_from_statement] = STATE(1352), + [sym_print_statement] = STATE(1352), + [sym_assert_statement] = STATE(1352), + [sym_expression_statement] = STATE(1352), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1352), + [sym_delete_statement] = STATE(1352), + [sym_raise_statement] = STATE(1352), + [sym_pass_statement] = STATE(1352), + [sym_break_statement] = STATE(1352), + [sym_continue_statement] = STATE(1352), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1352), + [sym_nonlocal_statement] = STATE(1352), + [sym_exec_statement] = STATE(1352), + [sym_type_alias_statement] = STATE(1352), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21241,58 +21216,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [130] = { - [sym_import_statement] = STATE(1341), - [sym_future_import_statement] = STATE(1341), - [sym_import_from_statement] = STATE(1341), - [sym_print_statement] = STATE(1341), - [sym_assert_statement] = STATE(1341), - [sym_expression_statement] = STATE(1341), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_raise_statement] = STATE(1341), - [sym_pass_statement] = STATE(1341), - [sym_break_statement] = STATE(1341), - [sym_continue_statement] = STATE(1341), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1341), - [sym_nonlocal_statement] = STATE(1341), - [sym_exec_statement] = STATE(1341), - [sym_type_alias_statement] = STATE(1341), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_import_statement] = STATE(1352), + [sym_future_import_statement] = STATE(1352), + [sym_import_from_statement] = STATE(1352), + [sym_print_statement] = STATE(1352), + [sym_assert_statement] = STATE(1352), + [sym_expression_statement] = STATE(1352), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1352), + [sym_delete_statement] = STATE(1352), + [sym_raise_statement] = STATE(1352), + [sym_pass_statement] = STATE(1352), + [sym_break_statement] = STATE(1352), + [sym_continue_statement] = STATE(1352), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1352), + [sym_nonlocal_statement] = STATE(1352), + [sym_exec_statement] = STATE(1352), + [sym_type_alias_statement] = STATE(1352), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21333,58 +21308,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [131] = { - [sym_import_statement] = STATE(1341), - [sym_future_import_statement] = STATE(1341), - [sym_import_from_statement] = STATE(1341), - [sym_print_statement] = STATE(1341), - [sym_assert_statement] = STATE(1341), - [sym_expression_statement] = STATE(1341), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_raise_statement] = STATE(1341), - [sym_pass_statement] = STATE(1341), - [sym_break_statement] = STATE(1341), - [sym_continue_statement] = STATE(1341), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1341), - [sym_nonlocal_statement] = STATE(1341), - [sym_exec_statement] = STATE(1341), - [sym_type_alias_statement] = STATE(1341), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_import_statement] = STATE(1352), + [sym_future_import_statement] = STATE(1352), + [sym_import_from_statement] = STATE(1352), + [sym_print_statement] = STATE(1352), + [sym_assert_statement] = STATE(1352), + [sym_expression_statement] = STATE(1352), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1352), + [sym_delete_statement] = STATE(1352), + [sym_raise_statement] = STATE(1352), + [sym_pass_statement] = STATE(1352), + [sym_break_statement] = STATE(1352), + [sym_continue_statement] = STATE(1352), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1352), + [sym_nonlocal_statement] = STATE(1352), + [sym_exec_statement] = STATE(1352), + [sym_type_alias_statement] = STATE(1352), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21425,58 +21400,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [132] = { - [sym_import_statement] = STATE(1341), - [sym_future_import_statement] = STATE(1341), - [sym_import_from_statement] = STATE(1341), - [sym_print_statement] = STATE(1341), - [sym_assert_statement] = STATE(1341), - [sym_expression_statement] = STATE(1341), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_raise_statement] = STATE(1341), - [sym_pass_statement] = STATE(1341), - [sym_break_statement] = STATE(1341), - [sym_continue_statement] = STATE(1341), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1341), - [sym_nonlocal_statement] = STATE(1341), - [sym_exec_statement] = STATE(1341), - [sym_type_alias_statement] = STATE(1341), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_import_statement] = STATE(1352), + [sym_future_import_statement] = STATE(1352), + [sym_import_from_statement] = STATE(1352), + [sym_print_statement] = STATE(1352), + [sym_assert_statement] = STATE(1352), + [sym_expression_statement] = STATE(1352), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1352), + [sym_delete_statement] = STATE(1352), + [sym_raise_statement] = STATE(1352), + [sym_pass_statement] = STATE(1352), + [sym_break_statement] = STATE(1352), + [sym_continue_statement] = STATE(1352), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1352), + [sym_nonlocal_statement] = STATE(1352), + [sym_exec_statement] = STATE(1352), + [sym_type_alias_statement] = STATE(1352), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21517,58 +21492,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [133] = { - [sym_import_statement] = STATE(1341), - [sym_future_import_statement] = STATE(1341), - [sym_import_from_statement] = STATE(1341), - [sym_print_statement] = STATE(1341), - [sym_assert_statement] = STATE(1341), - [sym_expression_statement] = STATE(1341), - [sym_named_expression] = STATE(985), - [sym_return_statement] = STATE(1341), - [sym_delete_statement] = STATE(1341), - [sym_raise_statement] = STATE(1341), - [sym_pass_statement] = STATE(1341), - [sym_break_statement] = STATE(1341), - [sym_continue_statement] = STATE(1341), - [sym_list_splat] = STATE(1321), - [sym_dictionary_splat] = STATE(1321), - [sym_global_statement] = STATE(1341), - [sym_nonlocal_statement] = STATE(1341), - [sym_exec_statement] = STATE(1341), - [sym_type_alias_statement] = STATE(1341), - [sym_expression_list] = STATE(1313), - [sym_pattern] = STATE(871), - [sym_tuple_pattern] = STATE(860), - [sym_list_pattern] = STATE(860), - [sym_list_splat_pattern] = STATE(860), - [sym_expression] = STATE(995), - [sym_primary_expression] = STATE(707), - [sym_not_operator] = STATE(985), - [sym_boolean_operator] = STATE(985), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_comparison_operator] = STATE(985), - [sym_lambda] = STATE(985), - [sym_assignment] = STATE(1313), - [sym_augmented_assignment] = STATE(1313), - [sym_pattern_list] = STATE(880), - [sym_yield] = STATE(1313), - [sym_attribute] = STATE(422), - [sym_subscript] = STATE(422), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_conditional_expression] = STATE(985), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_import_statement] = STATE(1352), + [sym_future_import_statement] = STATE(1352), + [sym_import_from_statement] = STATE(1352), + [sym_print_statement] = STATE(1352), + [sym_assert_statement] = STATE(1352), + [sym_expression_statement] = STATE(1352), + [sym_named_expression] = STATE(937), + [sym_return_statement] = STATE(1352), + [sym_delete_statement] = STATE(1352), + [sym_raise_statement] = STATE(1352), + [sym_pass_statement] = STATE(1352), + [sym_break_statement] = STATE(1352), + [sym_continue_statement] = STATE(1352), + [sym_list_splat] = STATE(1300), + [sym_dictionary_splat] = STATE(1300), + [sym_global_statement] = STATE(1352), + [sym_nonlocal_statement] = STATE(1352), + [sym_exec_statement] = STATE(1352), + [sym_type_alias_statement] = STATE(1352), + [sym_expression_list] = STATE(1301), + [sym_pattern] = STATE(850), + [sym_tuple_pattern] = STATE(837), + [sym_list_pattern] = STATE(837), + [sym_list_splat_pattern] = STATE(837), + [sym_expression] = STATE(1000), + [sym_primary_expression] = STATE(692), + [sym_not_operator] = STATE(937), + [sym_boolean_operator] = STATE(937), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_comparison_operator] = STATE(937), + [sym_lambda] = STATE(937), + [sym_assignment] = STATE(1301), + [sym_augmented_assignment] = STATE(1301), + [sym_pattern_list] = STATE(857), + [sym_yield] = STATE(1301), + [sym_attribute] = STATE(414), + [sym_subscript] = STATE(414), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_conditional_expression] = STATE(937), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21608,131 +21583,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), }, [134] = { - [sym_primary_expression] = STATE(637), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), - [sym_identifier] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON_EQ] = ACTIONS(560), - [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(562), - [anon_sym_async] = ACTIONS(558), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(275), - [anon_sym_PLUS] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_RBRACK] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), - [anon_sym_AT] = ACTIONS(260), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_SLASH_SLASH] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_TILDE] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(287), - [anon_sym_is] = ACTIONS(260), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_AT_EQ] = ACTIONS(564), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_STAR_STAR_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [sym_ellipsis] = ACTIONS(293), - [sym_integer] = ACTIONS(295), - [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(566), - [sym_true] = ACTIONS(295), - [sym_false] = ACTIONS(295), - [sym_none] = ACTIONS(295), - [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(299), - }, - [135] = { - [sym_primary_expression] = STATE(725), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_attribute] = STATE(759), - [sym_subscript] = STATE(759), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [sym_primary_expression] = STATE(709), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_attribute] = STATE(764), + [sym_subscript] = STATE(764), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(555), [anon_sym_COMMA] = ACTIONS(264), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(570), + [anon_sym_print] = ACTIONS(557), [anon_sym_GT_GT] = ACTIONS(260), [anon_sym_COLON_EQ] = ACTIONS(271), [anon_sym_if] = ACTIONS(260), [anon_sym_COLON] = ACTIONS(273), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(557), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(570), + [anon_sym_match] = ACTIONS(557), [anon_sym_PIPE] = ACTIONS(260), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(260), [anon_sym_EQ] = ACTIONS(273), - [anon_sym_exec] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), + [anon_sym_exec] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), [anon_sym_AT] = ACTIONS(260), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -21768,7 +21658,7 @@ 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(576), + [anon_sym_await] = ACTIONS(563), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -21777,40 +21667,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(287), [sym__string_start] = ACTIONS(81), }, + [135] = { + [sym_primary_expression] = STATE(632), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), + [sym_identifier] = ACTIONS(295), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(260), + [anon_sym_COLON_EQ] = ACTIONS(570), + [anon_sym_if] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_async] = ACTIONS(568), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(260), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(260), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_not] = ACTIONS(260), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(260), + [anon_sym_SLASH_SLASH] = ACTIONS(260), + [anon_sym_AMP] = ACTIONS(260), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(260), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_AT_EQ] = ACTIONS(574), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_STAR_STAR_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(576), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(299), + }, [136] = { - [sym_primary_expression] = STATE(637), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_primary_expression] = STATE(632), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(262), [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_COMMA] = ACTIONS(287), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_COLON_EQ] = ACTIONS(560), + [anon_sym_COLON_EQ] = ACTIONS(570), [anon_sym_if] = ACTIONS(260), [anon_sym_COLON] = ACTIONS(260), [anon_sym_else] = ACTIONS(260), - [anon_sym_async] = ACTIONS(558), + [anon_sym_async] = ACTIONS(568), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(287), [anon_sym_DASH] = ACTIONS(285), [anon_sym_PLUS] = ACTIONS(285), @@ -21820,8 +21795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR_STAR] = ACTIONS(287), [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -21845,7 +21820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_conversion] = ACTIONS(287), [sym_integer] = ACTIONS(295), [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(566), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(295), [sym_false] = ACTIONS(295), [sym_none] = ACTIONS(295), @@ -21853,50 +21828,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(299), }, [137] = { - [sym_primary_expression] = STATE(640), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_primary_expression] = STATE(632), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(262), [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_COMMA] = ACTIONS(287), - [anon_sym_as] = ACTIONS(260), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_COLON_EQ] = ACTIONS(580), [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_async] = ACTIONS(558), - [anon_sym_for] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(287), + [anon_sym_else] = ACTIONS(260), + [anon_sym_async] = ACTIONS(568), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(277), [anon_sym_RBRACK] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -21907,7 +21881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(287), [anon_sym_CARET] = ACTIONS(287), [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(285), [anon_sym_LT] = ACTIONS(260), [anon_sym_LT_EQ] = ACTIONS(287), [anon_sym_EQ_EQ] = ACTIONS(287), @@ -21917,9 +21891,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_GT] = ACTIONS(287), [anon_sym_is] = ACTIONS(260), [sym_ellipsis] = ACTIONS(293), + [sym_type_conversion] = ACTIONS(287), [sym_integer] = ACTIONS(295), [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(586), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(295), [sym_false] = ACTIONS(295), [sym_none] = ACTIONS(295), @@ -21927,49 +21902,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(299), }, [138] = { - [sym_primary_expression] = STATE(637), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_primary_expression] = STATE(626), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_as] = ACTIONS(260), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(580), [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_else] = ACTIONS(260), - [anon_sym_async] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(260), + [anon_sym_async] = ACTIONS(568), + [anon_sym_for] = ACTIONS(260), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(584), [anon_sym_RBRACK] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -21980,7 +21956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(287), [anon_sym_CARET] = ACTIONS(287), [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(582), [anon_sym_LT] = ACTIONS(260), [anon_sym_LT_EQ] = ACTIONS(287), [anon_sym_EQ_EQ] = ACTIONS(287), @@ -21990,10 +21966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_GT] = ACTIONS(287), [anon_sym_is] = ACTIONS(260), [sym_ellipsis] = ACTIONS(293), - [sym_type_conversion] = ACTIONS(287), [sym_integer] = ACTIONS(295), [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(566), + [anon_sym_await] = ACTIONS(586), [sym_true] = ACTIONS(295), [sym_false] = ACTIONS(295), [sym_none] = ACTIONS(295), @@ -22001,24 +21976,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(299), }, [139] = { - [sym_primary_expression] = STATE(640), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_primary_expression] = STATE(626), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(578), @@ -22026,14 +22001,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(287), [anon_sym_as] = ACTIONS(260), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(287), [anon_sym_if] = ACTIONS(260), [anon_sym_COLON] = ACTIONS(287), - [anon_sym_async] = ACTIONS(558), + [anon_sym_async] = ACTIONS(568), [anon_sym_for] = ACTIONS(260), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(287), [anon_sym_DASH] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(582), @@ -22042,8 +22017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -22074,36 +22049,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(299), }, [140] = { - [sym_primary_expression] = STATE(637), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_primary_expression] = STATE(632), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(262), [anon_sym_RPAREN] = ACTIONS(291), [anon_sym_COMMA] = ACTIONS(291), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(260), [anon_sym_COLON] = ACTIONS(291), - [anon_sym_async] = ACTIONS(558), + [anon_sym_async] = ACTIONS(568), [anon_sym_in] = ACTIONS(273), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(260), [anon_sym_DASH] = ACTIONS(275), [anon_sym_PLUS] = ACTIONS(275), @@ -22112,8 +22087,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(260), [anon_sym_EQ] = ACTIONS(291), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(260), [anon_sym_SLASH] = ACTIONS(260), [anon_sym_PERCENT] = ACTIONS(260), @@ -22138,7 +22113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(293), [sym_integer] = ACTIONS(295), [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(566), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(295), [sym_false] = ACTIONS(295), [sym_none] = ACTIONS(295), @@ -22146,46 +22121,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(299), }, [141] = { - [sym_primary_expression] = STATE(637), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_primary_expression] = STATE(709), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_attribute] = STATE(764), + [sym_subscript] = STATE(764), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), + [sym_identifier] = ACTIONS(77), + [anon_sym_DOT] = ACTIONS(260), + [anon_sym_from] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(260), + [anon_sym_print] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(287), + [anon_sym_COLON_EQ] = ACTIONS(271), + [anon_sym_if] = ACTIONS(260), + [anon_sym_async] = ACTIONS(557), + [anon_sym_in] = ACTIONS(260), + [anon_sym_match] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_EQ] = ACTIONS(260), + [anon_sym_exec] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_not] = ACTIONS(260), + [anon_sym_and] = ACTIONS(260), + [anon_sym_or] = ACTIONS(260), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_SLASH_SLASH] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(260), + [anon_sym_LT_GT] = ACTIONS(287), + [anon_sym_is] = ACTIONS(260), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(563), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym__semicolon] = ACTIONS(287), + [sym__newline] = ACTIONS(287), + [sym__string_start] = ACTIONS(81), + }, + [142] = { + [sym_primary_expression] = STATE(632), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(564), - [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(574), + [anon_sym_COMMA] = ACTIONS(574), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_async] = ACTIONS(558), - [anon_sym_in] = ACTIONS(562), - [anon_sym_match] = ACTIONS(558), + [anon_sym_COLON] = ACTIONS(574), + [anon_sym_async] = ACTIONS(568), + [anon_sym_in] = ACTIONS(572), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(260), [anon_sym_DASH] = ACTIONS(275), [anon_sym_PLUS] = ACTIONS(275), [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_RBRACK] = ACTIONS(564), + [anon_sym_RBRACK] = ACTIONS(574), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(564), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(574), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(260), [anon_sym_SLASH] = ACTIONS(260), [anon_sym_PERCENT] = ACTIONS(260), @@ -22194,70 +22241,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(260), [anon_sym_LT_LT] = ACTIONS(260), [anon_sym_TILDE] = ACTIONS(285), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_AT_EQ] = ACTIONS(564), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_STAR_STAR_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_AT_EQ] = ACTIONS(574), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_STAR_STAR_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), [sym_ellipsis] = ACTIONS(293), [sym_integer] = ACTIONS(295), [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(566), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(295), [sym_false] = ACTIONS(295), [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(299), }, - [142] = { - [sym_primary_expression] = STATE(725), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_attribute] = STATE(759), - [sym_subscript] = STATE(759), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), + [143] = { + [sym_primary_expression] = STATE(709), + [sym_binary_operator] = STATE(764), + [sym_unary_operator] = STATE(764), + [sym_attribute] = STATE(764), + [sym_subscript] = STATE(764), + [sym_call] = STATE(764), + [sym_list] = STATE(764), + [sym_set] = STATE(764), + [sym_tuple] = STATE(764), + [sym_dictionary] = STATE(764), + [sym_list_comprehension] = STATE(764), + [sym_dictionary_comprehension] = STATE(764), + [sym_set_comprehension] = STATE(764), + [sym_generator_expression] = STATE(764), + [sym_parenthesized_expression] = STATE(764), + [sym_concatenated_string] = STATE(764), + [sym_string] = STATE(693), + [sym_await] = STATE(764), [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(260), [anon_sym_from] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(555), [anon_sym_COMMA] = ACTIONS(287), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(570), + [anon_sym_print] = ACTIONS(557), [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_COLON_EQ] = ACTIONS(271), [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(570), + [anon_sym_async] = ACTIONS(557), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(570), + [anon_sym_match] = ACTIONS(557), [anon_sym_PIPE] = ACTIONS(287), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(561), [anon_sym_LBRACE] = ACTIONS(51), [anon_sym_STAR_STAR] = ACTIONS(287), [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), + [anon_sym_exec] = ACTIONS(557), + [anon_sym_type] = ACTIONS(557), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -22280,7 +22326,7 @@ 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(576), + [anon_sym_await] = ACTIONS(563), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -22289,39 +22335,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(287), [sym__string_start] = ACTIONS(81), }, - [143] = { - [sym_primary_expression] = STATE(640), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [144] = { + [sym_primary_expression] = STATE(626), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_RPAREN] = ACTIONS(264), [anon_sym_COMMA] = ACTIONS(264), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(287), [anon_sym_COLON_EQ] = ACTIONS(580), [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(558), + [anon_sym_async] = ACTIONS(568), [anon_sym_for] = ACTIONS(260), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(287), [anon_sym_DASH] = ACTIONS(582), [anon_sym_PLUS] = ACTIONS(582), @@ -22329,8 +22375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(264), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -22360,48 +22406,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(299), }, - [144] = { - [sym_primary_expression] = STATE(640), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), - [sym_identifier] = ACTIONS(295), + [145] = { + [sym_primary_expression] = STATE(718), + [sym_binary_operator] = STATE(787), + [sym_unary_operator] = STATE(787), + [sym_attribute] = STATE(787), + [sym_subscript] = STATE(787), + [sym_call] = STATE(787), + [sym_list] = STATE(787), + [sym_set] = STATE(787), + [sym_tuple] = STATE(787), + [sym_dictionary] = STATE(787), + [sym_list_comprehension] = STATE(787), + [sym_dictionary_comprehension] = STATE(787), + [sym_set_comprehension] = STATE(787), + [sym_generator_expression] = STATE(787), + [sym_parenthesized_expression] = STATE(787), + [sym_concatenated_string] = STATE(787), + [sym_string] = STATE(708), + [sym_await] = STATE(787), + [sym_identifier] = ACTIONS(588), [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(590), [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_as] = ACTIONS(260), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(592), [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_COLON_EQ] = ACTIONS(594), [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(558), - [anon_sym_for] = ACTIONS(260), + [anon_sym_COLON] = ACTIONS(260), + [anon_sym_async] = ACTIONS(592), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(592), [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(600), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_exec] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -22412,7 +22458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(287), [anon_sym_CARET] = ACTIONS(287), [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(596), [anon_sym_LT] = ACTIONS(260), [anon_sym_LT_EQ] = ACTIONS(287), [anon_sym_EQ_EQ] = ACTIONS(287), @@ -22421,129 +22467,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(260), [anon_sym_LT_GT] = ACTIONS(287), [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(293), - [sym_integer] = ACTIONS(295), - [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(586), - [sym_true] = ACTIONS(295), - [sym_false] = ACTIONS(295), - [sym_none] = ACTIONS(295), + [sym_ellipsis] = ACTIONS(602), + [sym_integer] = ACTIONS(588), + [sym_float] = ACTIONS(602), + [anon_sym_await] = ACTIONS(604), + [sym_true] = ACTIONS(588), + [sym_false] = ACTIONS(588), + [sym_none] = ACTIONS(588), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(299), - }, - [145] = { - [sym_primary_expression] = STATE(725), - [sym_binary_operator] = STATE(759), - [sym_unary_operator] = STATE(759), - [sym_attribute] = STATE(759), - [sym_subscript] = STATE(759), - [sym_call] = STATE(759), - [sym_list] = STATE(759), - [sym_set] = STATE(759), - [sym_tuple] = STATE(759), - [sym_dictionary] = STATE(759), - [sym_list_comprehension] = STATE(759), - [sym_dictionary_comprehension] = STATE(759), - [sym_set_comprehension] = STATE(759), - [sym_generator_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_concatenated_string] = STATE(759), - [sym_string] = STATE(709), - [sym_await] = STATE(759), - [sym_identifier] = ACTIONS(77), - [anon_sym_DOT] = ACTIONS(260), - [anon_sym_from] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(570), - [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(260), - [anon_sym_exec] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), - [anon_sym_AT] = ACTIONS(287), - [anon_sym_not] = ACTIONS(260), - [anon_sym_and] = ACTIONS(260), - [anon_sym_or] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(287), - [anon_sym_SLASH_SLASH] = ACTIONS(287), - [anon_sym_AMP] = ACTIONS(287), - [anon_sym_CARET] = ACTIONS(287), - [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(287), - [anon_sym_EQ_EQ] = ACTIONS(287), - [anon_sym_BANG_EQ] = ACTIONS(287), - [anon_sym_GT_EQ] = ACTIONS(287), - [anon_sym_GT] = ACTIONS(260), - [anon_sym_LT_GT] = ACTIONS(287), - [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(576), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(287), - [sym__newline] = ACTIONS(287), - [sym__string_start] = ACTIONS(81), + [sym__string_start] = ACTIONS(606), }, [146] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(827), - [sym_unary_operator] = STATE(827), - [sym_attribute] = STATE(827), - [sym_subscript] = STATE(827), - [sym_call] = STATE(827), - [sym_list] = STATE(827), - [sym_set] = STATE(827), - [sym_tuple] = STATE(827), - [sym_dictionary] = STATE(827), - [sym_list_comprehension] = STATE(827), - [sym_dictionary_comprehension] = STATE(827), - [sym_set_comprehension] = STATE(827), - [sym_generator_expression] = STATE(827), - [sym_parenthesized_expression] = STATE(827), - [sym_concatenated_string] = STATE(827), - [sym_string] = STATE(713), - [sym_await] = STATE(827), - [sym_identifier] = ACTIONS(590), + [sym_primary_expression] = STATE(626), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), + [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_COMMA] = ACTIONS(287), - [anon_sym_as] = ACTIONS(260), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(594), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_COLON_EQ] = ACTIONS(596), + [anon_sym_COLON_EQ] = ACTIONS(580), [anon_sym_if] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_async] = ACTIONS(594), + [anon_sym_async] = ACTIONS(568), + [anon_sym_for] = ACTIONS(260), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(594), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_exec] = ACTIONS(594), - [anon_sym_type] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(608), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -22554,7 +22529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(287), [anon_sym_CARET] = ACTIONS(287), [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(582), [anon_sym_LT] = ACTIONS(260), [anon_sym_LT_EQ] = ACTIONS(287), [anon_sym_EQ_EQ] = ACTIONS(287), @@ -22563,57 +22538,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(260), [anon_sym_LT_GT] = ACTIONS(287), [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(604), - [sym_integer] = ACTIONS(590), - [sym_float] = ACTIONS(604), - [anon_sym_await] = ACTIONS(606), - [sym_true] = ACTIONS(590), - [sym_false] = ACTIONS(590), - [sym_none] = ACTIONS(590), + [sym_ellipsis] = ACTIONS(293), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(293), + [anon_sym_await] = ACTIONS(586), + [sym_true] = ACTIONS(295), + [sym_false] = ACTIONS(295), + [sym_none] = ACTIONS(295), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(608), + [sym__string_start] = ACTIONS(299), }, [147] = { - [sym_primary_expression] = STATE(741), - [sym_binary_operator] = STATE(827), - [sym_unary_operator] = STATE(827), - [sym_attribute] = STATE(827), - [sym_subscript] = STATE(827), - [sym_call] = STATE(827), - [sym_list] = STATE(827), - [sym_set] = STATE(827), - [sym_tuple] = STATE(827), - [sym_dictionary] = STATE(827), - [sym_list_comprehension] = STATE(827), - [sym_dictionary_comprehension] = STATE(827), - [sym_set_comprehension] = STATE(827), - [sym_generator_expression] = STATE(827), - [sym_parenthesized_expression] = STATE(827), - [sym_concatenated_string] = STATE(827), - [sym_string] = STATE(713), - [sym_await] = STATE(827), - [sym_identifier] = ACTIONS(590), + [sym_primary_expression] = STATE(718), + [sym_binary_operator] = STATE(787), + [sym_unary_operator] = STATE(787), + [sym_attribute] = STATE(787), + [sym_subscript] = STATE(787), + [sym_call] = STATE(787), + [sym_list] = STATE(787), + [sym_set] = STATE(787), + [sym_tuple] = STATE(787), + [sym_dictionary] = STATE(787), + [sym_list_comprehension] = STATE(787), + [sym_dictionary_comprehension] = STATE(787), + [sym_set_comprehension] = STATE(787), + [sym_generator_expression] = STATE(787), + [sym_parenthesized_expression] = STATE(787), + [sym_concatenated_string] = STATE(787), + [sym_string] = STATE(708), + [sym_await] = STATE(787), + [sym_identifier] = ACTIONS(588), [anon_sym_DOT] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_COMMA] = ACTIONS(287), [anon_sym_as] = ACTIONS(260), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(594), + [anon_sym_print] = ACTIONS(592), [anon_sym_GT_GT] = ACTIONS(287), [anon_sym_if] = ACTIONS(260), [anon_sym_COLON] = ACTIONS(287), - [anon_sym_async] = ACTIONS(594), + [anon_sym_async] = ACTIONS(592), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(594), + [anon_sym_match] = ACTIONS(592), [anon_sym_PIPE] = ACTIONS(287), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_LBRACE] = ACTIONS(600), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_exec] = ACTIONS(594), - [anon_sym_type] = ACTIONS(594), + [anon_sym_exec] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -22624,7 +22599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(287), [anon_sym_CARET] = ACTIONS(287), [anon_sym_LT_LT] = ACTIONS(287), - [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(596), [anon_sym_LT] = ACTIONS(260), [anon_sym_LT_EQ] = ACTIONS(287), [anon_sym_EQ_EQ] = ACTIONS(287), @@ -22633,57 +22608,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(260), [anon_sym_LT_GT] = ACTIONS(287), [anon_sym_is] = ACTIONS(260), - [sym_ellipsis] = ACTIONS(604), - [sym_integer] = ACTIONS(590), - [sym_float] = ACTIONS(604), - [anon_sym_await] = ACTIONS(606), - [sym_true] = ACTIONS(590), - [sym_false] = ACTIONS(590), - [sym_none] = ACTIONS(590), + [sym_ellipsis] = ACTIONS(602), + [sym_integer] = ACTIONS(588), + [sym_float] = ACTIONS(602), + [anon_sym_await] = ACTIONS(604), + [sym_true] = ACTIONS(588), + [sym_false] = ACTIONS(588), + [sym_none] = ACTIONS(588), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(608), + [sym__string_start] = ACTIONS(606), }, [148] = { - [sym_primary_expression] = STATE(637), - [sym_binary_operator] = STATE(605), - [sym_unary_operator] = STATE(605), - [sym_attribute] = STATE(605), - [sym_subscript] = STATE(605), - [sym_call] = STATE(605), - [sym_list] = STATE(605), - [sym_set] = STATE(605), - [sym_tuple] = STATE(605), - [sym_dictionary] = STATE(605), - [sym_list_comprehension] = STATE(605), - [sym_dictionary_comprehension] = STATE(605), - [sym_set_comprehension] = STATE(605), - [sym_generator_expression] = STATE(605), - [sym_parenthesized_expression] = STATE(605), - [sym_concatenated_string] = STATE(605), - [sym_string] = STATE(586), - [sym_await] = STATE(605), + [sym_primary_expression] = STATE(632), + [sym_binary_operator] = STATE(575), + [sym_unary_operator] = STATE(575), + [sym_attribute] = STATE(575), + [sym_subscript] = STATE(575), + [sym_call] = STATE(575), + [sym_list] = STATE(575), + [sym_set] = STATE(575), + [sym_tuple] = STATE(575), + [sym_dictionary] = STATE(575), + [sym_list_comprehension] = STATE(575), + [sym_dictionary_comprehension] = STATE(575), + [sym_set_comprehension] = STATE(575), + [sym_generator_expression] = STATE(575), + [sym_parenthesized_expression] = STATE(575), + [sym_concatenated_string] = STATE(575), + [sym_string] = STATE(569), + [sym_await] = STATE(575), [sym_identifier] = ACTIONS(295), [anon_sym_DOT] = ACTIONS(260), [anon_sym_LPAREN] = ACTIONS(262), [anon_sym_RPAREN] = ACTIONS(287), [anon_sym_COMMA] = ACTIONS(287), [anon_sym_STAR] = ACTIONS(260), - [anon_sym_print] = ACTIONS(558), + [anon_sym_print] = ACTIONS(568), [anon_sym_GT_GT] = ACTIONS(287), - [anon_sym_COLON_EQ] = ACTIONS(560), + [anon_sym_COLON_EQ] = ACTIONS(570), [anon_sym_if] = ACTIONS(260), - [anon_sym_async] = ACTIONS(558), + [anon_sym_async] = ACTIONS(568), [anon_sym_in] = ACTIONS(260), - [anon_sym_match] = ACTIONS(558), + [anon_sym_match] = ACTIONS(568), [anon_sym_PIPE] = ACTIONS(287), [anon_sym_DASH] = ACTIONS(285), [anon_sym_PLUS] = ACTIONS(285), [anon_sym_LBRACK] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_exec] = ACTIONS(558), - [anon_sym_type] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(608), + [anon_sym_exec] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), [anon_sym_AT] = ACTIONS(287), [anon_sym_not] = ACTIONS(260), [anon_sym_and] = ACTIONS(260), @@ -22706,7 +22681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(293), [sym_integer] = ACTIONS(295), [sym_float] = ACTIONS(293), - [anon_sym_await] = ACTIONS(566), + [anon_sym_await] = ACTIONS(576), [sym_true] = ACTIONS(295), [sym_false] = ACTIONS(295), [sym_none] = ACTIONS(295), @@ -22741,30 +22716,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(871), 1, + STATE(850), 1, sym_pattern, - STATE(880), 1, + STATE(857), 1, sym_pattern_list, - STATE(1029), 1, + STATE(976), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(422), 2, + STATE(414), 2, sym_attribute, sym_subscript, - STATE(1321), 2, + STATE(1300), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -22779,20 +22754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1373), 5, + STATE(1353), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 14, + STATE(764), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -22832,30 +22807,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(871), 1, + STATE(850), 1, sym_pattern, - STATE(880), 1, + STATE(857), 1, sym_pattern_list, - STATE(1029), 1, + STATE(976), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(422), 2, + STATE(414), 2, sym_attribute, sym_subscript, - STATE(1321), 2, + STATE(1300), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -22870,20 +22845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1357), 5, + STATE(1346), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 14, + STATE(764), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -22923,30 +22898,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym__string_start, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(871), 1, + STATE(850), 1, sym_pattern, - STATE(880), 1, + STATE(857), 1, sym_pattern_list, - STATE(1029), 1, + STATE(976), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(422), 2, + STATE(414), 2, sym_attribute, sym_subscript, - STATE(1321), 2, + STATE(1300), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -22961,20 +22936,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1356), 5, + STATE(1293), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 14, + STATE(764), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23014,18 +22989,18 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(610), 1, anon_sym_from, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(891), 1, + STATE(877), 1, sym_expression, - STATE(1000), 1, + STATE(988), 1, sym_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1367), 2, + STATE(1329), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(285), 3, @@ -23043,7 +23018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, @@ -23058,7 +23033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -23075,7 +23050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [464] = 27, + [464] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -23087,11 +23062,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(616), 1, anon_sym_LPAREN, ACTIONS(618), 1, + anon_sym_RPAREN, + ACTIONS(620), 1, anon_sym_STAR, - ACTIONS(622), 1, - anon_sym_LBRACK, ACTIONS(624), 1, - anon_sym_RBRACK, + anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, ACTIONS(628), 1, @@ -23100,55 +23075,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(632), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(930), 1, + STATE(912), 1, sym_expression, - STATE(1134), 1, + STATE(1112), 1, sym_pattern, - STATE(1402), 1, + STATE(1192), 1, + sym_yield, + STATE(1380), 1, sym__patterns, - STATE(1469), 1, + STATE(1389), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(765), 2, + STATE(771), 2, sym_attribute, sym_subscript, + STATE(1065), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(620), 5, + ACTIONS(622), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23163,7 +23139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [579] = 29, + [581] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -23174,9 +23150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(620), 1, anon_sym_STAR, - ACTIONS(622), 1, + ACTIONS(624), 1, anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, @@ -23187,58 +23163,56 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(632), 1, anon_sym_await, ACTIONS(634), 1, - anon_sym_RPAREN, - STATE(586), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(918), 1, + STATE(898), 1, sym_expression, - STATE(1134), 1, + STATE(1112), 1, sym_pattern, - STATE(1216), 1, - sym_yield, - STATE(1298), 1, - sym_list_splat, - STATE(1303), 1, - sym_parenthesized_list_splat, - STATE(1426), 1, - sym__patterns, - STATE(1471), 1, + STATE(1393), 1, sym__collection_elements, + STATE(1406), 1, + sym__patterns, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(765), 2, + STATE(771), 2, sym_attribute, sym_subscript, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, + STATE(1065), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(620), 5, + ACTIONS(622), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23253,59 +23227,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [698] = 28, + [696] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, + ACTIONS(285), 1, + anon_sym_TILDE, ACTIONS(299), 1, sym__string_start, - ACTIONS(614), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(616), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(622), 1, + ACTIONS(646), 1, + anon_sym_in, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_not, - ACTIONS(628), 1, - anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(632), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(636), 1, - anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(934), 1, - sym_expression, - STATE(1134), 1, + STATE(834), 1, sym_pattern, - STATE(1307), 1, - sym_yield, - STATE(1418), 1, - sym__collection_elements, - STATE(1426), 1, - sym__patterns, + STATE(843), 1, + sym_primary_expression, + ACTIONS(275), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(765), 2, + STATE(712), 2, sym_attribute, sym_subscript, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(582), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23314,20 +23272,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(620), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23342,80 +23293,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [815] = 27, + ACTIONS(644), 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, + [799] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, + ACTIONS(285), 1, + anon_sym_TILDE, ACTIONS(299), 1, sym__string_start, - ACTIONS(614), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(616), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(640), 1, anon_sym_STAR, - ACTIONS(622), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_not, - ACTIONS(628), 1, - anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(632), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(638), 1, - anon_sym_RBRACK, - STATE(586), 1, + ACTIONS(654), 1, + anon_sym_in, + STATE(569), 1, sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(930), 1, - sym_expression, - STATE(1134), 1, + STATE(834), 1, sym_pattern, - STATE(1402), 1, - sym__patterns, - STATE(1469), 1, - sym__collection_elements, + STATE(843), 1, + sym_primary_expression, + ACTIONS(275), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(765), 2, + STATE(712), 2, sym_attribute, sym_subscript, - ACTIONS(582), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(620), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23430,7 +23375,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [930] = 27, + ACTIONS(652), 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, + [902] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -23441,9 +23402,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(620), 1, anon_sym_STAR, - ACTIONS(622), 1, + ACTIONS(624), 1, anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, @@ -23453,35 +23414,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(632), 1, anon_sym_await, - ACTIONS(640), 1, + ACTIONS(656), 1, anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(929), 1, + STATE(893), 1, sym_expression, - STATE(1134), 1, + STATE(1112), 1, sym_pattern, - STATE(1402), 1, + STATE(1406), 1, sym__patterns, - STATE(1403), 1, + STATE(1413), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(765), 2, + STATE(771), 2, sym_attribute, sym_subscript, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1100), 3, + STATE(1065), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -23490,20 +23451,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(620), 5, + ACTIONS(622), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23518,43 +23479,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1045] = 21, + [1017] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_TILDE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(614), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(646), 1, + ACTIONS(620), 1, anon_sym_STAR, - ACTIONS(652), 1, - anon_sym_in, - ACTIONS(654), 1, + ACTIONS(624), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(628), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(632), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(658), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(856), 1, - sym_pattern, - STATE(865), 1, + STATE(576), 1, sym_primary_expression, - ACTIONS(275), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(912), 1, + sym_expression, + STATE(1112), 1, + sym_pattern, + STATE(1192), 1, + sym_yield, + STATE(1243), 1, + sym_parenthesized_list_splat, + STATE(1244), 1, + sym_list_splat, + STATE(1380), 1, + sym__patterns, + STATE(1389), 1, + sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(771), 2, sym_attribute, sym_subscript, - STATE(860), 3, + ACTIONS(582), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23563,13 +23541,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(622), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23584,23 +23569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(650), 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, - [1148] = 28, + [1136] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -23611,9 +23580,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(620), 1, anon_sym_STAR, - ACTIONS(622), 1, + ACTIONS(624), 1, anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, @@ -23623,58 +23592,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(632), 1, anon_sym_await, - ACTIONS(658), 1, - anon_sym_RPAREN, - STATE(586), 1, + ACTIONS(660), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(918), 1, + STATE(898), 1, sym_expression, - STATE(1134), 1, + STATE(1112), 1, sym_pattern, - STATE(1216), 1, - sym_yield, - STATE(1426), 1, - sym__patterns, - STATE(1471), 1, + STATE(1393), 1, sym__collection_elements, + STATE(1406), 1, + sym__patterns, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(765), 2, + STATE(771), 2, sym_attribute, sym_subscript, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, + STATE(1065), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(620), 5, + ACTIONS(622), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23689,43 +23657,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1265] = 21, + [1251] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_TILDE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(614), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(616), 1, anon_sym_LPAREN, - ACTIONS(646), 1, + ACTIONS(620), 1, anon_sym_STAR, - ACTIONS(654), 1, + ACTIONS(624), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(628), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(632), 1, anon_sym_await, ACTIONS(662), 1, - anon_sym_in, - STATE(586), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(856), 1, - sym_pattern, - STATE(865), 1, + STATE(576), 1, sym_primary_expression, - ACTIONS(275), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(905), 1, + sym_expression, + STATE(1112), 1, + sym_pattern, + STATE(1216), 1, + sym_yield, + STATE(1370), 1, + sym__collection_elements, + STATE(1380), 1, + sym__patterns, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(771), 2, sym_attribute, sym_subscript, - STATE(860), 3, + STATE(1065), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(582), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23734,13 +23718,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(622), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -23755,88 +23746,77 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(660), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [1368] = 22, + [1368] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(297), 1, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(576), 1, sym_primary_expression, - STATE(920), 1, + STATE(873), 1, sym_expression, + STATE(971), 1, + sym_pair, + STATE(1199), 1, + sym_dictionary_splat, + STATE(1401), 1, + sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1004), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1065), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(664), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -23853,7 +23833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1472] = 22, + [1482] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -23876,16 +23856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(920), 1, + STATE(897), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1004), 2, + STATE(998), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(285), 3, @@ -23903,14 +23883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(666), 7, + ACTIONS(676), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -23918,7 +23898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -23935,7 +23915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1576] = 27, + [1586] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -23954,27 +23934,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(672), 1, + ACTIONS(674), 1, + anon_sym_await, + ACTIONS(678), 1, anon_sym_COMMA, - ACTIONS(676), 1, + ACTIONS(680), 1, anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(907), 1, + STATE(869), 1, sym_expression, - STATE(1031), 1, + STATE(974), 1, sym_pair, - STATE(1192), 1, + STATE(1207), 1, sym_dictionary_splat, - STATE(1392), 1, + STATE(1460), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, @@ -23983,7 +23963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1065), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -23992,20 +23972,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24022,7 +24002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1690] = 22, + [1700] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -24045,16 +24025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(920), 1, + STATE(897), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1004), 2, + STATE(998), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(285), 3, @@ -24072,14 +24052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(664), 7, + ACTIONS(676), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -24087,7 +24067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24104,77 +24084,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1794] = 27, + [1804] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, ACTIONS(267), 1, anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(670), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(680), 1, - anon_sym_COMMA, - ACTIONS(682), 1, - anon_sym_RBRACE, - STATE(586), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(893), 1, + STATE(897), 1, sym_expression, - STATE(1035), 1, - sym_pair, - STATE(1223), 1, - sym_dictionary_splat, - STATE(1467), 1, - sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + STATE(998), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + ACTIONS(682), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24210,27 +24185,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, ACTIONS(684), 1, anon_sym_COMMA, ACTIONS(686), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(889), 1, + STATE(874), 1, sym_expression, - STATE(1032), 1, + STATE(986), 1, sym_pair, - STATE(1230), 1, + STATE(1178), 1, sym_dictionary_splat, - STATE(1429), 1, + STATE(1363), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, @@ -24239,7 +24214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1065), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24248,20 +24223,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24278,13 +24253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2022] = 24, + [2022] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(267), 1, - anon_sym_STAR, + ACTIONS(258), 1, + sym_identifier, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -24293,26 +24266,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(289), 1, anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, ACTIONS(299), 1, sym__string_start, + ACTIONS(630), 1, + anon_sym_yield, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, ACTIONS(692), 1, - anon_sym_RPAREN, - ACTIONS(694), 1, - anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_await, - STATE(586), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1036), 1, + STATE(1009), 1, sym_expression, - STATE(1252), 1, - sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, @@ -24320,29 +24289,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1251), 3, + ACTIONS(690), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1133), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24359,70 +24332,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2127] = 23, + [2123] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(297), 1, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(696), 1, + anon_sym_RPAREN, + ACTIONS(698), 1, + anon_sym_COMMA, + ACTIONS(702), 1, anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(630), 1, - anon_sym_yield, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(576), 1, sym_primary_expression, - STATE(937), 1, + STATE(904), 1, sym_expression, + STATE(1225), 1, + sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1367), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1073), 3, - sym_expression_list, - sym_yield, - sym__f_expression, + STATE(1218), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(700), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24439,71 +24413,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2230] = 24, + [2228] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(327), 1, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(664), 1, sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(700), 1, - anon_sym_from, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(674), 1, + anon_sym_await, + ACTIONS(692), 1, + anon_sym_STAR, + ACTIONS(704), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(946), 1, + STATE(576), 1, + sym_primary_expression, + STATE(875), 1, sym_expression, - STATE(1227), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1177), 1, + sym_yield, + STATE(1185), 1, + sym_with_item, + STATE(1359), 1, + sym__collection_elements, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(702), 2, - sym__newline, - sym__semicolon, - STATE(1321), 2, + STATE(1065), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + sym_parenthesized_list_splat, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24520,11 +24495,17 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2335] = 22, + [2335] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -24539,31 +24520,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1005), 1, + STATE(918), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, + STATE(1329), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(704), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1167), 3, - sym_list_splat, - sym_parenthesized_list_splat, + STATE(1074), 3, + sym_expression_list, sym_yield, + sym__f_expression, ACTIONS(295), 4, sym_integer, sym_true, @@ -24575,14 +24551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24599,98 +24575,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2436] = 24, + [2438] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_not, - ACTIONS(628), 1, - anon_sym_lambda, - ACTIONS(670), 1, - anon_sym_LPAREN, - ACTIONS(708), 1, - sym_identifier, - ACTIONS(710), 1, - anon_sym_RPAREN, - ACTIONS(712), 1, - anon_sym_COMMA, - ACTIONS(716), 1, - anon_sym_await, - STATE(586), 1, - sym_string, - STATE(590), 1, - sym_primary_expression, - STATE(927), 1, - sym_expression, - STATE(1211), 1, - sym_parenthesized_list_splat, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(582), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(1218), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(714), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [2541] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(267), 1, - anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -24705,26 +24594,31 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(630), 1, anon_sym_yield, - STATE(586), 1, + ACTIONS(688), 1, + anon_sym_LPAREN, + ACTIONS(692), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(937), 1, + STATE(1009), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1367), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1090), 3, - sym_expression_list, + ACTIONS(706), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1133), 3, + sym_list_splat, + sym_parenthesized_list_splat, sym_yield, - sym__f_expression, ACTIONS(295), 4, sym_integer, sym_true, @@ -24736,14 +24630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24760,7 +24654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2644] = 22, + [2539] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -24779,15 +24673,15 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(690), 1, + ACTIONS(688), 1, anon_sym_LPAREN, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1005), 1, + STATE(1009), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -24796,11 +24690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 3, + ACTIONS(690), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1167), 3, + STATE(1133), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24815,14 +24709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24839,7 +24733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2745] = 24, + [2640] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -24856,23 +24750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(692), 1, - anon_sym_RPAREN, ACTIONS(694), 1, - anon_sym_COMMA, - ACTIONS(708), 1, sym_identifier, - ACTIONS(716), 1, + ACTIONS(702), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(708), 1, + anon_sym_RPAREN, + ACTIONS(710), 1, + anon_sym_COMMA, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(932), 1, + STATE(900), 1, sym_expression, - STATE(1252), 1, + STATE(1230), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -24881,7 +24775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1251), 3, + STATE(1229), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -24890,20 +24784,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(714), 5, + ACTIONS(700), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24920,49 +24814,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2850] = 24, + [2745] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, ACTIONS(267), 1, anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(670), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(688), 1, anon_sym_LPAREN, ACTIONS(708), 1, + anon_sym_RPAREN, + ACTIONS(710), 1, + anon_sym_COMMA, + ACTIONS(712), 1, sym_identifier, ACTIONS(716), 1, anon_sym_await, - ACTIONS(720), 1, - anon_sym_RPAREN, - ACTIONS(722), 1, - anon_sym_COMMA, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(917), 1, + STATE(1031), 1, sym_expression, - STATE(1196), 1, + STATE(1230), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1193), 3, + STATE(1229), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -24977,14 +24871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25001,11 +24895,17 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2955] = 22, + [2850] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -25020,31 +24920,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1005), 1, + STATE(918), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, + STATE(1329), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1167), 3, - sym_list_splat, - sym_parenthesized_list_splat, + STATE(1052), 3, + sym_expression_list, sym_yield, + sym__f_expression, ACTIONS(295), 4, sym_integer, sym_true, @@ -25056,14 +24951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25080,7 +24975,88 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3056] = 24, + [2953] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(628), 1, + anon_sym_lambda, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(694), 1, + sym_identifier, + ACTIONS(702), 1, + anon_sym_await, + ACTIONS(718), 1, + anon_sym_RPAREN, + ACTIONS(720), 1, + anon_sym_COMMA, + STATE(569), 1, + sym_string, + STATE(576), 1, + sym_primary_expression, + STATE(903), 1, + sym_expression, + STATE(1220), 1, + sym_parenthesized_list_splat, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(582), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1219), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(700), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [3058] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -25095,23 +25071,23 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(724), 1, + ACTIONS(722), 1, anon_sym_from, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(1014), 1, + STATE(975), 1, sym_expression, - STATE(1339), 1, + STATE(1291), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, @@ -25119,7 +25095,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(612), 2, sym__newline, sym__semicolon, - STATE(1321), 2, + STATE(1300), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -25131,20 +25107,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25161,72 +25137,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3161] = 25, + [3163] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(531), 1, sym_identifier, - ACTIONS(670), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(726), 1, - anon_sym_RPAREN, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + ACTIONS(724), 1, + anon_sym_from, + STATE(692), 1, sym_primary_expression, - STATE(898), 1, + STATE(693), 1, + sym_string, + STATE(948), 1, sym_expression, - STATE(1204), 1, - sym_yield, - STATE(1295), 1, - sym_with_item, - STATE(1395), 1, - sym__collection_elements, - ACTIONS(293), 2, + STATE(1167), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1100), 2, + ACTIONS(726), 2, + sym__newline, + sym__semicolon, + STATE(1300), 2, sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(582), 3, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25261,20 +25236,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, ACTIONS(728), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -25283,7 +25258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25292,20 +25267,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25340,20 +25315,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, ACTIONS(730), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -25362,7 +25337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25371,20 +25346,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25404,66 +25379,66 @@ static const uint16_t ts_small_parse_table[] = { [3472] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(670), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(688), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, ACTIONS(732), 1, - anon_sym_RBRACK, - STATE(586), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(930), 1, + STATE(1066), 1, sym_expression, - STATE(1469), 1, - sym__collection_elements, + STATE(1286), 1, + sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1287), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25480,69 +25455,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3574] = 23, + [3574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(734), 1, - anon_sym_from, - ACTIONS(736), 1, - anon_sym_STAR, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, + anon_sym_await, ACTIONS(738), 1, - anon_sym_STAR_STAR, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(1026), 1, + STATE(576), 1, + sym_primary_expression, + STATE(919), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(666), 2, - sym__newline, - sym__semicolon, - STATE(1150), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + STATE(987), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(734), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(736), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25559,7 +25532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3676] = 24, + [3672] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -25574,30 +25547,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(726), 1, + ACTIONS(704), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(918), 1, + STATE(896), 1, sym_expression, - STATE(1216), 1, + STATE(1177), 1, sym_yield, - STATE(1471), 1, + STATE(1359), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1100), 2, + STATE(1065), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(582), 3, @@ -25609,20 +25582,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25639,7 +25612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3780] = 23, + [3776] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -25657,20 +25630,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, ACTIONS(740), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -25679,7 +25652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25688,20 +25661,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25718,7 +25691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3882] = 25, + [3878] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -25733,33 +25706,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(742), 1, + ACTIONS(704), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(918), 1, + STATE(912), 1, sym_expression, - STATE(1216), 1, + STATE(1192), 1, sym_yield, - STATE(1298), 1, - sym_list_splat, - STATE(1303), 1, - sym_parenthesized_list_splat, - STATE(1471), 1, + STATE(1389), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, + STATE(1065), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, @@ -25769,20 +25741,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25799,69 +25771,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3988] = 23, + [3982] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(664), 1, sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(736), 1, + ACTIONS(674), 1, + anon_sym_await, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(738), 1, - anon_sym_STAR_STAR, - ACTIONS(744), 1, - anon_sym_from, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(742), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(1026), 1, + STATE(576), 1, + sym_primary_expression, + STATE(905), 1, sym_expression, - ACTIONS(75), 2, + STATE(1216), 1, + sym_yield, + STATE(1370), 1, + sym__collection_elements, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(664), 2, - sym__newline, - sym__semicolon, - STATE(1150), 2, + STATE(1065), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + sym_parenthesized_list_splat, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25878,7 +25851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4090] = 23, + [4086] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -25896,20 +25869,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(746), 1, + ACTIONS(744), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -25918,7 +25891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25927,20 +25900,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25957,7 +25930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4192] = 24, + [4188] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -25972,55 +25945,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(748), 1, - anon_sym_RPAREN, - STATE(586), 1, + ACTIONS(746), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(934), 1, + STATE(893), 1, sym_expression, - STATE(1307), 1, - sym_yield, - STATE(1418), 1, + STATE(1413), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1065), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26037,7 +26009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4296] = 23, + [4290] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26055,20 +26027,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(750), 1, + ACTIONS(748), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -26077,7 +26049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26086,20 +26058,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26116,69 +26088,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4398] = 23, + [4392] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(688), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(537), 1, anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + ACTIONS(750), 1, + anon_sym_from, ACTIONS(752), 1, - anon_sym_RPAREN, - STATE(586), 1, - sym_string, - STATE(616), 1, + anon_sym_STAR, + ACTIONS(754), 1, + anon_sym_STAR_STAR, + STATE(692), 1, sym_primary_expression, - STATE(1089), 1, + STATE(693), 1, + sym_string, + STATE(972), 1, sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(676), 2, + sym__newline, + sym__semicolon, + STATE(1088), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26195,69 +26167,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4500] = 23, + [4494] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(327), 1, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(664), 1, sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(674), 1, + anon_sym_await, + ACTIONS(692), 1, + anon_sym_STAR, + ACTIONS(704), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(1025), 1, + STATE(576), 1, + sym_primary_expression, + STATE(912), 1, sym_expression, - STATE(1322), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1192), 1, + sym_yield, + STATE(1243), 1, + sym_parenthesized_list_splat, + STATE(1244), 1, + sym_list_splat, + STATE(1389), 1, + sym__collection_elements, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(754), 2, - sym__newline, - sym__semicolon, - STATE(1321), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26274,67 +26248,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4602] = 21, + [4600] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(668), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + ACTIONS(752), 1, + anon_sym_STAR, + ACTIONS(754), 1, + anon_sym_STAR_STAR, + ACTIONS(756), 1, + anon_sym_from, + STATE(692), 1, sym_primary_expression, - STATE(935), 1, + STATE(693), 1, + sym_string, + STATE(972), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1024), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(582), 3, + ACTIONS(682), 2, + sym__newline, + sym__semicolon, + STATE(1088), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(756), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(758), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 4, + ACTIONS(533), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26351,69 +26327,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4700] = 23, + [4702] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, ACTIONS(299), 1, sym__string_start, - ACTIONS(688), 1, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(628), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(664), 1, sym_identifier, - ACTIONS(690), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(762), 1, - anon_sym_RPAREN, - STATE(586), 1, + ACTIONS(692), 1, + anon_sym_STAR, + ACTIONS(758), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(576), 1, sym_primary_expression, - STATE(1089), 1, + STATE(898), 1, sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, + STATE(1393), 1, + sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1065), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26430,86 +26406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4802] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(736), 1, - anon_sym_STAR, - ACTIONS(738), 1, - anon_sym_STAR_STAR, - ACTIONS(744), 1, - anon_sym_from, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, - sym_string, - STATE(1026), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(664), 2, - sym__newline, - sym__semicolon, - STATE(1150), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(329), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(985), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(759), 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, - [4904] = 23, + [4804] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -26524,23 +26421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(764), 1, + ACTIONS(758), 1, anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(929), 1, + STATE(911), 1, sym_expression, - STATE(1403), 1, + STATE(1361), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, @@ -26549,7 +26446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1065), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -26558,20 +26455,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26588,7 +26485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5006] = 25, + [4906] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -26603,33 +26500,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(726), 1, + ACTIONS(760), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(918), 1, + STATE(912), 1, sym_expression, - STATE(1216), 1, + STATE(1192), 1, sym_yield, - STATE(1298), 1, - sym_list_splat, - STATE(1303), 1, - sym_parenthesized_list_splat, - STATE(1471), 1, + STATE(1389), 1, sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, + STATE(1065), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, @@ -26639,20 +26535,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26669,7 +26565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5112] = 23, + [5010] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26687,20 +26583,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(766), 1, + ACTIONS(762), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -26709,7 +26605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26718,20 +26614,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26748,7 +26644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5214] = 23, + [5112] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26766,20 +26662,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(768), 1, + ACTIONS(764), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -26788,7 +26684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26797,20 +26693,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26827,69 +26723,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5316] = 23, + [5214] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, ACTIONS(299), 1, sym__string_start, - ACTIONS(688), 1, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(628), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(664), 1, sym_identifier, - ACTIONS(690), 1, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(770), 1, - anon_sym_RPAREN, - STATE(586), 1, + ACTIONS(692), 1, + anon_sym_STAR, + ACTIONS(766), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(576), 1, sym_primary_expression, - STATE(1089), 1, + STATE(898), 1, sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, + STATE(1393), 1, + sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1065), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26906,67 +26802,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5418] = 21, + [5316] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, ACTIONS(584), 1, anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, - ACTIONS(668), 1, + ACTIONS(628), 1, + anon_sym_lambda, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(664), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_await, + ACTIONS(692), 1, + anon_sym_STAR, ACTIONS(760), 1, - anon_sym_lambda, - STATE(586), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(935), 1, + STATE(912), 1, sym_expression, + STATE(1192), 1, + sym_yield, + STATE(1243), 1, + sym_parenthesized_list_splat, + STATE(1244), 1, + sym_list_splat, + STATE(1389), 1, + sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1024), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(772), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(774), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 4, + ACTIONS(670), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26983,7 +26883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5516] = 23, + [5422] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27001,20 +26901,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -27023,7 +26923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27032,20 +26932,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27062,67 +26962,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5618] = 21, + [5524] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(668), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(531), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(760), 1, - anon_sym_lambda, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(935), 1, + STATE(693), 1, + sym_string, + STATE(1010), 1, sym_expression, - ACTIONS(293), 2, + STATE(1341), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1024), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(582), 3, + ACTIONS(770), 2, + sym__newline, + sym__semicolon, + STATE(1300), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(778), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(780), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 4, + ACTIONS(533), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27139,7 +27041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5716] = 23, + [5626] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27157,20 +27059,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(782), 1, + ACTIONS(772), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -27179,7 +27081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27188,20 +27090,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27218,69 +27120,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5818] = 23, + [5728] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(670), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(688), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(732), 1, - anon_sym_RBRACK, - STATE(586), 1, + ACTIONS(774), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(913), 1, + STATE(1066), 1, sym_expression, - STATE(1397), 1, - sym__collection_elements, + STATE(1286), 1, + sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1287), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27297,7 +27199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5920] = 23, + [5830] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27315,20 +27217,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(784), 1, + ACTIONS(776), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -27337,7 +27239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27346,20 +27248,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27376,69 +27278,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6022] = 23, + [5932] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, ACTIONS(299), 1, sym__string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(786), 1, - anon_sym_RPAREN, - STATE(586), 1, + ACTIONS(738), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(576), 1, sym_primary_expression, - STATE(1089), 1, + STATE(919), 1, sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + STATE(987), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(778), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(780), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(670), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27455,7 +27355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6124] = 21, + [6030] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -27468,33 +27368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(760), 1, + ACTIONS(738), 1, anon_sym_lambda, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(935), 1, + STATE(919), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1024), 2, + STATE(987), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(788), 3, + ACTIONS(782), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(790), 3, + ACTIONS(784), 3, anon_sym_if, anon_sym_async, anon_sym_for, @@ -27503,19 +27403,19 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 4, + ACTIONS(670), 4, anon_sym_print, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27532,7 +27432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6222] = 23, + [6128] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27550,20 +27450,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(299), 1, sym__string_start, ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, anon_sym_LPAREN, - ACTIONS(698), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(792), 1, + ACTIONS(786), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1066), 1, sym_expression, - STATE(1370), 1, + STATE(1286), 1, sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, @@ -27572,7 +27472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1287), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27581,20 +27481,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27611,69 +27511,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6324] = 23, + [6230] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(670), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(688), 1, anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(794), 1, - anon_sym_RBRACK, - STATE(586), 1, + ACTIONS(788), 1, + anon_sym_RPAREN, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(930), 1, + STATE(1066), 1, sym_expression, - STATE(1469), 1, - sym__collection_elements, + STATE(1286), 1, + sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1100), 3, + STATE(1287), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27690,70 +27590,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6426] = 24, + [6332] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, sym_identifier, - ACTIONS(670), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(706), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + ACTIONS(750), 1, + anon_sym_from, + ACTIONS(752), 1, anon_sym_STAR, - ACTIONS(726), 1, - anon_sym_RPAREN, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(754), 1, + anon_sym_STAR_STAR, + STATE(692), 1, sym_primary_expression, - STATE(926), 1, + STATE(693), 1, + sym_string, + STATE(972), 1, sym_expression, - STATE(1204), 1, - sym_yield, - STATE(1395), 1, - sym__collection_elements, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1100), 2, + ACTIONS(676), 2, + sym__newline, + sym__semicolon, + STATE(1088), 2, sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(582), 3, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27770,70 +27669,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6530] = 24, + [6434] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, ACTIONS(584), 1, anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, - ACTIONS(628), 1, - anon_sym_lambda, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(670), 1, - anon_sym_LPAREN, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(742), 1, - anon_sym_RPAREN, - STATE(586), 1, + ACTIONS(738), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(918), 1, + STATE(919), 1, sym_expression, - STATE(1216), 1, - sym_yield, - STATE(1471), 1, - sym__collection_elements, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1100), 2, - sym_list_splat, - sym_parenthesized_list_splat, + STATE(987), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + ACTIONS(790), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(792), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27850,69 +27746,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6634] = 3, + [6532] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(798), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(796), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [6695] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, + ACTIONS(267), 1, + anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -27921,24 +27761,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(690), 1, + ACTIONS(688), 1, anon_sym_LPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(718), 1, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, + anon_sym_await, + ACTIONS(794), 1, anon_sym_RPAREN, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1005), 1, + STATE(1066), 1, sym_expression, + STATE(1286), 1, + sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, @@ -27946,29 +27786,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1167), 3, + STATE(1287), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27985,184 +27825,87 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6794] = 3, + [6634] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(802), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(800), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(277), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [6855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(804), 36, - anon_sym_DOT, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(688), 1, anon_sym_LPAREN, + ACTIONS(690), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [6916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 17, - anon_sym_as, + ACTIONS(692), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1009), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(804), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + STATE(1133), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [6977] = 3, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [6733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 17, + ACTIONS(798), 17, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -28180,7 +27923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(808), 36, + ACTIONS(796), 36, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -28217,71 +27960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_type_conversion, - [7038] = 3, + [6794] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(814), 17, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(812), 36, - anon_sym_DOT, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7099] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(267), 1, - anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -28290,22 +27975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(289), 1, anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(698), 1, - anon_sym_await, - STATE(586), 1, + ACTIONS(692), 1, + anon_sym_STAR, + ACTIONS(800), 1, + anon_sym_COLON, + ACTIONS(802), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1089), 1, + STATE(1041), 1, sym_expression, - STATE(1370), 1, - sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, @@ -28313,29 +27998,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1303), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym__index_expression, + sym_slice, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(696), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28352,65 +28037,84 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7198] = 3, + [6893] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(798), 17, - anon_sym_as, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(692), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(800), 1, + anon_sym_COLON, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1041), 1, + sym_expression, + STATE(1379), 1, + sym_index_expression_list, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(796), 36, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_TILDE, + STATE(1236), 3, + sym_list_splat, + sym__index_expression, + sym_slice, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_type_conversion, - [7259] = 22, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [6992] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -28429,17 +28133,17 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(630), 1, anon_sym_yield, - ACTIONS(690), 1, + ACTIONS(688), 1, anon_sym_LPAREN, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(718), 1, + ACTIONS(690), 1, anon_sym_RPAREN, - STATE(586), 1, + ACTIONS(692), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1005), 1, + STATE(1009), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -28448,7 +28152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1167), 3, + STATE(1133), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -28463,14 +28167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28487,7 +28191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7358] = 16, + [7091] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(262), 1, @@ -28498,11 +28202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(566), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(637), 1, + STATE(632), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, @@ -28515,7 +28219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(816), 3, + ACTIONS(804), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -28525,7 +28229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, @@ -28541,7 +28245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28558,70 +28262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7445] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(822), 1, - anon_sym_else, - ACTIONS(824), 1, - anon_sym_except, - ACTIONS(826), 1, - anon_sym_finally, - STATE(436), 1, - sym_else_clause, - STATE(519), 1, - sym_finally_clause, - STATE(285), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(820), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(818), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7517] = 22, + [7178] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -28640,28 +28281,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(828), 1, + ACTIONS(800), 1, anon_sym_COLON, - ACTIONS(830), 1, - anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1041), 1, sym_expression, + STATE(1377), 1, + sym_index_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1227), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(295), 4, sym_integer, sym_true, @@ -28673,14 +28315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28697,79 +28339,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7615] = 9, + [7277] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(822), 1, - anon_sym_else, - ACTIONS(826), 1, - anon_sym_finally, - ACTIONS(832), 1, - anon_sym_except, - STATE(436), 1, - sym_else_clause, - STATE(519), 1, - sym_finally_clause, - STATE(284), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(820), 12, - sym__dedent, - sym__string_start, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(818), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [7687] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(283), 1, anon_sym_not, @@ -28779,28 +28358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(828), 1, + ACTIONS(800), 1, anon_sym_COLON, - ACTIONS(834), 1, - anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1041), 1, sym_expression, + STATE(1477), 1, + sym_index_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1232), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(295), 4, sym_integer, sym_true, @@ -28812,14 +28392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28836,13 +28416,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7785] = 22, + [7376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(808), 17, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(806), 36, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_type_conversion, + [7437] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(267), 1, + anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -28851,51 +28489,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - ACTIONS(836), 1, - anon_sym_RBRACK, - STATE(586), 1, + ACTIONS(688), 1, + anon_sym_LPAREN, + ACTIONS(712), 1, + sym_identifier, + ACTIONS(716), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1066), 1, sym_expression, + STATE(1286), 1, + sym_parenthesized_list_splat, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1287), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(714), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28912,11 +28551,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7883] = 21, + [7536] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -28929,17 +28570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(630), 1, - anon_sym_yield, - ACTIONS(690), 1, - anon_sym_LPAREN, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - STATE(586), 1, + ACTIONS(800), 1, + anon_sym_COLON, + ACTIONS(810), 1, + anon_sym_RBRACK, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1005), 1, + STATE(1041), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -28948,10 +28589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1167), 3, + STATE(1303), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym__index_expression, + sym_slice, ACTIONS(295), 4, sym_integer, sym_true, @@ -28963,14 +28604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28987,99 +28628,86 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7979] = 22, + [7635] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(816), 1, + anon_sym_else, + ACTIONS(818), 1, + anon_sym_except, + ACTIONS(820), 1, + anon_sym_finally, + STATE(362), 1, + sym_else_clause, + STATE(547), 1, + sym_finally_clause, + STATE(272), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(814), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1049), 1, - sym_expression, - STATE(1505), 1, - sym_expression_list, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(1367), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(812), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [8077] = 9, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [7707] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, + ACTIONS(822), 1, anon_sym_else, - ACTIONS(844), 1, + ACTIONS(824), 1, anon_sym_except, - ACTIONS(846), 1, + ACTIONS(826), 1, anon_sym_finally, - STATE(440), 1, + STATE(380), 1, sym_else_clause, - STATE(477), 1, + STATE(512), 1, sym_finally_clause, - STATE(297), 2, + STATE(258), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(838), 12, + ACTIONS(814), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -29092,7 +28720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(840), 33, + ACTIONS(812), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -29126,23 +28754,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8149] = 9, + [7779] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, + ACTIONS(822), 1, anon_sym_else, - ACTIONS(846), 1, - anon_sym_finally, - ACTIONS(848), 1, + ACTIONS(824), 1, anon_sym_except, - STATE(440), 1, + ACTIONS(826), 1, + anon_sym_finally, + STATE(390), 1, sym_else_clause, - STATE(477), 1, + STATE(510), 1, sym_finally_clause, - STATE(296), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(838), 12, + STATE(258), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(828), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -29155,7 +28783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(840), 33, + ACTIONS(830), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -29189,17 +28817,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8221] = 22, + [7851] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(267), 1, - anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -29212,24 +28836,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + ACTIONS(692), 1, + anon_sym_STAR, + ACTIONS(800), 1, + anon_sym_COLON, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1067), 1, + STATE(1041), 1, sym_expression, - STATE(1444), 1, - sym_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1367), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1303), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(295), 4, sym_integer, sym_true, @@ -29241,14 +28868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29265,13 +28892,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8319] = 22, + [7947] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(816), 1, + anon_sym_else, + ACTIONS(818), 1, + anon_sym_except, + ACTIONS(820), 1, + anon_sym_finally, + STATE(417), 1, + sym_else_clause, + STATE(495), 1, + sym_finally_clause, + STATE(272), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(828), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(830), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [8019] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, ACTIONS(262), 1, anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -29284,24 +28978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - ACTIONS(850), 1, - anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1042), 1, sym_expression, + STATE(1440), 1, + sym_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, + STATE(1329), 2, sym_list_splat, - sym_slice, + sym_dictionary_splat, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -29317,14 +29007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29341,13 +29031,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8417] = 22, + [8117] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -29360,28 +29048,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(630), 1, + anon_sym_yield, + ACTIONS(688), 1, + anon_sym_LPAREN, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - ACTIONS(852), 1, - anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1009), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1133), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(295), 4, sym_integer, sym_true, @@ -29393,14 +29082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29417,76 +29106,17 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8515] = 9, + [8213] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, - anon_sym_else, - ACTIONS(844), 1, - anon_sym_except, - ACTIONS(846), 1, - anon_sym_finally, - STATE(438), 1, - sym_else_clause, - STATE(510), 1, - sym_finally_clause, - STATE(297), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(820), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(818), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [8587] = 22, - ACTIONS(3), 1, - sym_comment, ACTIONS(258), 1, sym_identifier, ACTIONS(262), 1, anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -29499,24 +29129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - ACTIONS(854), 1, - anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1021), 1, sym_expression, + STATE(1355), 1, + sym_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, + STATE(1329), 2, sym_list_splat, - sym_slice, + sym_dictionary_splat, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -29532,14 +29158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29556,23 +29182,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8685] = 9, + [8311] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, + ACTIONS(822), 1, anon_sym_else, - ACTIONS(846), 1, + ACTIONS(826), 1, anon_sym_finally, - ACTIONS(848), 1, + ACTIONS(832), 1, anon_sym_except, - STATE(438), 1, + STATE(390), 1, sym_else_clause, STATE(510), 1, sym_finally_clause, - STATE(296), 2, + STATE(260), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(820), 12, + ACTIONS(828), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -29585,7 +29211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(818), 33, + ACTIONS(830), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -29619,23 +29245,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8757] = 9, + [8383] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_else, - ACTIONS(826), 1, + ACTIONS(820), 1, anon_sym_finally, - ACTIONS(832), 1, + ACTIONS(834), 1, anon_sym_except, - STATE(453), 1, + STATE(362), 1, sym_else_clause, - STATE(531), 1, + STATE(547), 1, sym_finally_clause, - STATE(284), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(838), 12, + STATE(270), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(814), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -29648,7 +29274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(840), 33, + ACTIONS(812), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -29682,159 +29308,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [8829] = 22, + [8455] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(816), 1, + anon_sym_else, + ACTIONS(820), 1, + anon_sym_finally, + ACTIONS(834), 1, + anon_sym_except, + STATE(417), 1, + sym_else_clause, + STATE(495), 1, + sym_finally_clause, + STATE(270), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(828), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(267), 1, - anon_sym_STAR, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1057), 1, - sym_expression, - STATE(1481), 1, - sym_expression_list, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(1367), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(830), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [8927] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, + anon_sym_class, anon_sym_not, - ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - ACTIONS(856), 1, - anon_sym_RBRACK, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1054), 1, - sym_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(269), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [9025] = 22, + [8527] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -29849,26 +29386,26 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(267), 1, anon_sym_STAR, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(1027), 1, + STATE(1002), 1, sym_expression, - STATE(1333), 1, + STATE(1338), 1, sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1321), 2, + STATE(1300), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -29880,20 +29417,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29910,13 +29447,17 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9123] = 22, + [8625] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, ACTIONS(262), 1, anon_sym_LPAREN, + ACTIONS(267), 1, + anon_sym_STAR, ACTIONS(277), 1, anon_sym_LBRACK, ACTIONS(279), 1, @@ -29929,24 +29470,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - ACTIONS(858), 1, - anon_sym_RBRACK, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1036), 1, sym_expression, + STATE(1396), 1, + sym_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, + STATE(1329), 2, sym_list_splat, - sym_slice, + sym_dictionary_splat, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -29962,14 +29499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29986,25 +29523,25 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9221] = 9, + [8723] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(822), 1, anon_sym_else, - ACTIONS(824), 1, - anon_sym_except, ACTIONS(826), 1, anon_sym_finally, - STATE(453), 1, + ACTIONS(832), 1, + anon_sym_except, + STATE(380), 1, sym_else_clause, - STATE(531), 1, + STATE(512), 1, sym_finally_clause, - STATE(285), 2, + STATE(260), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(838), 12, - sym__dedent, + ACTIONS(814), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -30015,7 +29552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(840), 33, + ACTIONS(812), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -30049,7 +29586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [9293] = 22, + [8795] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30072,18 +29609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1066), 1, + STATE(1030), 1, sym_expression, - STATE(1451), 1, + STATE(1424), 1, sym_expression_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1367), 2, + STATE(1329), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(285), 3, @@ -30101,14 +29638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30125,9 +29662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9391] = 22, + [8893] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, ACTIONS(262), 1, @@ -30144,24 +29683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - ACTIONS(860), 1, - anon_sym_RBRACK, - STATE(586), 1, + ACTIONS(836), 1, + anon_sym_RBRACE, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, + STATE(1319), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -30177,14 +29712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30201,7 +29736,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9489] = 21, + [8988] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(838), 1, + anon_sym_for, + ACTIONS(840), 1, + anon_sym_with, + ACTIONS(842), 1, + anon_sym_def, + ACTIONS(273), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(291), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(260), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [9061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30224,16 +29822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(920), 1, + STATE(897), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1004), 2, + STATE(998), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(285), 3, @@ -30251,14 +29849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30275,7 +29873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9584] = 21, + [9156] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30296,18 +29894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(862), 1, + ACTIONS(844), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1319), 2, sym_dictionary_splat, sym_pair, ACTIONS(285), 3, @@ -30325,14 +29923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30349,64 +29947,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9679] = 21, + [9251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(864), 1, - anon_sym_RBRACE, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + ACTIONS(752), 1, + anon_sym_STAR, + ACTIONS(754), 1, + anon_sym_STAR_STAR, + STATE(692), 1, sym_primary_expression, - STATE(1142), 1, + STATE(693), 1, + sym_string, + STATE(972), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1088), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, - ACTIONS(285), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30423,9 +30021,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9774] = 21, + [9346] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, ACTIONS(262), 1, @@ -30442,22 +30042,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - STATE(586), 1, + ACTIONS(846), 1, + anon_sym_RBRACE, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1023), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1254), 2, - sym_list_splat, - sym_slice, + STATE(1319), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -30473,14 +30071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30497,127 +30095,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9869] = 10, + [9441] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(271), 1, - anon_sym_COLON_EQ, - ACTIONS(866), 1, - anon_sym_for, - ACTIONS(868), 1, - anon_sym_with, - ACTIONS(870), 1, - anon_sym_def, - ACTIONS(273), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(291), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(287), 16, - sym__newline, - anon_sym_DOT, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(277), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [9942] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(736), 1, - anon_sym_STAR, - ACTIONS(738), 1, - anon_sym_STAR_STAR, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(848), 1, + anon_sym_RBRACE, + STATE(569), 1, sym_string, - STATE(1026), 1, + STATE(589), 1, + sym_primary_expression, + STATE(1148), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1150), 2, - sym_list_splat, + STATE(1319), 2, sym_dictionary_splat, - ACTIONS(47), 3, + sym_pair, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30634,7 +30169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10037] = 21, + [9536] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30655,18 +30190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(872), 1, + ACTIONS(850), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1319), 2, sym_dictionary_splat, sym_pair, ACTIONS(285), 3, @@ -30684,14 +30219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30708,7 +30243,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10132] = 21, + [9631] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(852), 1, + anon_sym_for, + ACTIONS(854), 1, + anon_sym_with, + ACTIONS(856), 1, + anon_sym_def, + ACTIONS(273), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(291), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(260), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [9704] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30729,18 +30327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(874), 1, + ACTIONS(858), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1319), 2, sym_dictionary_splat, sym_pair, ACTIONS(285), 3, @@ -30758,14 +30356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30782,7 +30380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10227] = 21, + [9799] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30803,18 +30401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(876), 1, + ACTIONS(860), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1319), 2, sym_dictionary_splat, sym_pair, ACTIONS(285), 3, @@ -30832,14 +30430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30856,7 +30454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10322] = 21, + [9894] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30877,18 +30475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(878), 1, + ACTIONS(862), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1319), 2, sym_dictionary_splat, sym_pair, ACTIONS(285), 3, @@ -30906,14 +30504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30930,70 +30528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10417] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(271), 1, - anon_sym_COLON_EQ, - ACTIONS(880), 1, - anon_sym_for, - ACTIONS(882), 1, - anon_sym_with, - ACTIONS(884), 1, - anon_sym_def, - ACTIONS(273), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(291), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(287), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [10490] = 21, + [9989] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -31014,18 +30549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(886), 1, + ACTIONS(864), 1, anon_sym_RBRACE, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1319), 2, sym_dictionary_splat, sym_pair, ACTIONS(285), 3, @@ -31043,14 +30578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31067,11 +30602,9 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10585] = 21, + [10084] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(258), 1, sym_identifier, ACTIONS(262), 1, @@ -31088,20 +30621,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(888), 1, - anon_sym_RBRACE, - STATE(586), 1, + ACTIONS(692), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(995), 1, sym_expression, + STATE(1115), 1, + sym_list_splat, + STATE(1429), 1, + sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31117,14 +30651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31141,7 +30675,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10680] = 21, + [10178] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(816), 1, + anon_sym_else, + ACTIONS(870), 1, + anon_sym_elif, + STATE(280), 1, + aux_sym_if_statement_repeat1, + STATE(425), 1, + sym_elif_clause, + STATE(492), 1, + sym_else_clause, + ACTIONS(868), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(866), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [10246] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -31160,22 +30754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1018), 1, + STATE(995), 1, sym_expression, + STATE(1115), 1, + sym_list_splat, + STATE(1375), 1, + sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1209), 2, - sym_list_splat, - sym_slice, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31191,14 +30784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31215,64 +30808,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10775] = 21, + [10340] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(890), 1, - anon_sym_RBRACE, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + ACTIONS(872), 1, + anon_sym_STAR, + STATE(692), 1, sym_primary_expression, - STATE(1142), 1, + STATE(693), 1, + sym_string, + STATE(1022), 1, sym_expression, - ACTIONS(293), 2, + STATE(1210), 1, + sym_list_splat, + STATE(1211), 1, + sym_type, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1334), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(285), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31289,7 +30881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10870] = 21, + [10434] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -31308,22 +30900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1054), 1, + STATE(995), 1, sym_expression, + STATE(1115), 1, + sym_list_splat, + STATE(1431), 1, + sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1369), 2, - sym_list_splat, - sym_slice, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31339,14 +30930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31363,7 +30954,174 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10965] = 21, + [10528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(874), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(876), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [10586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(878), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(880), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [10644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(886), 1, + anon_sym_except, + STATE(258), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(882), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(884), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [10706] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -31382,22 +31140,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - ACTIONS(828), 1, - anon_sym_COLON, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1028), 1, + STATE(995), 1, sym_expression, + STATE(1115), 1, + sym_list_splat, + STATE(1467), 1, + sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1202), 2, - sym_list_splat, - sym_slice, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31413,14 +31170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31437,10 +31194,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11060] = 3, + [10800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(893), 1, + anon_sym_except, + STATE(260), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(889), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(891), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [10862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 12, + ACTIONS(878), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -31453,7 +31267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(892), 38, + ACTIONS(880), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -31492,7 +31306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11118] = 3, + [10920] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(896), 12, @@ -31547,85 +31361,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11176] = 21, + [10978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(902), 12, + sym__dedent, sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(900), 1, - anon_sym_STAR, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, - sym_string, - STATE(1040), 1, - sym_expression, - STATE(1237), 1, - sym_type, - STATE(1243), 1, - sym_list_splat, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(329), 5, + sym_ellipsis, + sym_float, + ACTIONS(900), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(985), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(759), 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, - [11270] = 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, + [11036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(902), 12, + ACTIONS(906), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -31675,94 +31471,77 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11328] = 20, + [11094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(902), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(908), 1, - anon_sym_COLON, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1051), 1, - sym_expression, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(906), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(900), 38, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [11420] = 8, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11152] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(822), 1, anon_sym_else, - ACTIONS(914), 1, + ACTIONS(908), 1, anon_sym_elif, - STATE(318), 1, + STATE(278), 1, aux_sym_if_statement_repeat1, - STATE(368), 1, + STATE(424), 1, sym_elif_clause, - STATE(489), 1, + STATE(491), 1, sym_else_clause, - ACTIONS(912), 12, - sym__dedent, + ACTIONS(868), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -31773,7 +31552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(910), 33, + ACTIONS(866), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -31807,7 +31586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11488] = 21, + [11220] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -31826,17 +31605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1011), 1, + STATE(995), 1, sym_expression, - STATE(1153), 1, + STATE(1115), 1, sym_list_splat, - STATE(1456), 1, + STATE(1434), 1, sym_type, ACTIONS(293), 2, sym_ellipsis, @@ -31856,14 +31635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31880,154 +31659,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11582] = 21, + [11314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(896), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1011), 1, - sym_expression, - STATE(1153), 1, - sym_list_splat, - STATE(1417), 1, - sym_type, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [11676] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(271), 1, - anon_sym_COLON_EQ, - ACTIONS(916), 1, - sym__string_start, - STATE(1239), 1, - sym_string, - ACTIONS(273), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(291), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(260), 15, + ACTIONS(898), 38, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(287), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_case, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [11746] = 8, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(822), 1, - anon_sym_else, - ACTIONS(914), 1, - anon_sym_elif, - STATE(280), 1, - aux_sym_if_statement_repeat1, - STATE(368), 1, - sym_elif_clause, - STATE(516), 1, - sym_else_clause, - ACTIONS(920), 12, + ACTIONS(874), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -32040,7 +31730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(918), 33, + ACTIONS(876), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32053,12 +31743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -32074,80 +31769,64 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [11814] = 21, + [11430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(910), 1, + anon_sym_except, + STATE(270), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(889), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1011), 1, - sym_expression, - STATE(1153), 1, - sym_list_splat, - STATE(1458), 1, - sym_type, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(891), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [11908] = 21, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [11492] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -32166,21 +31845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, + ACTIONS(915), 1, + anon_sym_COLON, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1011), 1, + STATE(1044), 1, sym_expression, - STATE(1153), 1, - sym_list_splat, - STATE(1420), 1, - sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, + ACTIONS(913), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32196,14 +31874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32220,10 +31898,15 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12002] = 3, + [11584] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(924), 12, + ACTIONS(917), 1, + anon_sym_except, + STATE(272), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(882), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -32236,7 +31919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(922), 38, + ACTIONS(884), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32249,17 +31932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -32275,62 +31955,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12060] = 3, + [11646] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(902), 12, - sym__dedent, - sym__string_start, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(922), 1, + anon_sym_COLON, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1025), 1, + sym_expression, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(904), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(920), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12118] = 20, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [11738] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -32351,16 +32048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1142), 1, + STATE(1148), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1334), 2, + STATE(1319), 2, sym_dictionary_splat, sym_pair, ACTIONS(285), 3, @@ -32378,14 +32075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32402,7 +32099,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12210] = 20, + [11830] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(924), 1, + sym__string_start, + STATE(1281), 1, + sym_string, + ACTIONS(273), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(291), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(260), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [11900] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -32421,20 +32179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(928), 1, - anon_sym_COLON, - STATE(586), 1, + ACTIONS(692), 1, + anon_sym_STAR, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1052), 1, + STATE(995), 1, sym_expression, + STATE(1115), 1, + sym_list_splat, + STATE(1383), 1, + sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(926), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32450,14 +32209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32474,20 +32233,20 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12302] = 8, + [11994] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, + ACTIONS(822), 1, anon_sym_else, - ACTIONS(930), 1, + ACTIONS(908), 1, anon_sym_elif, - STATE(286), 1, + STATE(281), 1, aux_sym_if_statement_repeat1, - STATE(400), 1, + STATE(424), 1, sym_elif_clause, - STATE(492), 1, + STATE(523), 1, sym_else_clause, - ACTIONS(920), 12, + ACTIONS(926), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -32500,7 +32259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(918), 33, + ACTIONS(928), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32534,22 +32293,22 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12370] = 8, + [12062] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(822), 1, anon_sym_else, - ACTIONS(914), 1, + ACTIONS(908), 1, anon_sym_elif, - STATE(318), 1, + STATE(303), 1, aux_sym_if_statement_repeat1, - STATE(368), 1, + STATE(424), 1, sym_elif_clause, - STATE(574), 1, + STATE(528), 1, sym_else_clause, - ACTIONS(934), 12, - sym__dedent, + ACTIONS(930), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -32594,20 +32353,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12438] = 8, + [12130] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_else, - ACTIONS(914), 1, + ACTIONS(870), 1, anon_sym_elif, - STATE(268), 1, + STATE(286), 1, aux_sym_if_statement_repeat1, - STATE(368), 1, + STATE(425), 1, sym_elif_clause, - STATE(573), 1, + STATE(536), 1, sym_else_clause, - ACTIONS(938), 12, + ACTIONS(926), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -32620,7 +32379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(936), 33, + ACTIONS(928), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32654,254 +32413,54 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12506] = 21, + [12198] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(816), 1, + anon_sym_else, + ACTIONS(870), 1, + anon_sym_elif, + STATE(304), 1, + aux_sym_if_statement_repeat1, + STATE(425), 1, + sym_elif_clause, + STATE(526), 1, + sym_else_clause, + ACTIONS(930), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1011), 1, - sym_expression, - STATE(1153), 1, - sym_list_splat, - STATE(1474), 1, - sym_type, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(932), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [12600] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1011), 1, - sym_expression, - STATE(1153), 1, - sym_list_splat, - STATE(1171), 1, - sym_type, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [12694] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(944), 1, - anon_sym_except, - STATE(284), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(942), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(940), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [12756] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(951), 1, - anon_sym_except, - STATE(285), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(949), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(947), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, anon_sym_class, @@ -32914,18 +32473,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12818] = 8, + [12266] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, + ACTIONS(822), 1, anon_sym_else, - ACTIONS(930), 1, + ACTIONS(908), 1, anon_sym_elif, - STATE(304), 1, + STATE(303), 1, aux_sym_if_statement_repeat1, - STATE(400), 1, + STATE(424), 1, sym_elif_clause, - STATE(499), 1, + STATE(467), 1, sym_else_clause, ACTIONS(934), 12, sym__string_start, @@ -32940,7 +32499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(932), 33, + ACTIONS(936), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -32974,20 +32533,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12886] = 8, + [12334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, - anon_sym_else, - ACTIONS(930), 1, - anon_sym_elif, - STATE(304), 1, - aux_sym_if_statement_repeat1, - STATE(400), 1, - sym_elif_clause, - STATE(540), 1, - sym_else_clause, - ACTIONS(912), 12, + ACTIONS(906), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -33000,7 +32549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(910), 33, + ACTIONS(904), 38, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33013,12 +32562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -33034,7 +32588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [12954] = 21, + [12392] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -33053,17 +32607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1011), 1, + STATE(995), 1, sym_expression, - STATE(1153), 1, + STATE(1115), 1, sym_list_splat, - STATE(1312), 1, + STATE(1151), 1, sym_type, ACTIONS(293), 2, sym_ellipsis, @@ -33083,14 +32637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33107,67 +32661,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13048] = 8, + [12486] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, - anon_sym_else, - ACTIONS(930), 1, - anon_sym_elif, - STATE(287), 1, - aux_sym_if_statement_repeat1, - STATE(400), 1, - sym_elif_clause, - STATE(494), 1, - sym_else_clause, - ACTIONS(938), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(692), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(995), 1, + sym_expression, + STATE(1115), 1, + sym_list_splat, + STATE(1435), 1, + sym_type, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(936), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13116] = 21, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [12580] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -33186,17 +32753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1011), 1, + STATE(995), 1, sym_expression, - STATE(1153), 1, + STATE(1115), 1, sym_list_splat, - STATE(1472), 1, + STATE(1459), 1, sym_type, ACTIONS(293), 2, sym_ellipsis, @@ -33216,14 +32783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33240,12 +32807,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13210] = 3, + [12674] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 12, + ACTIONS(816), 1, + anon_sym_else, + ACTIONS(870), 1, + anon_sym_elif, + STATE(304), 1, + aux_sym_if_statement_repeat1, + STATE(425), 1, + sym_elif_clause, + STATE(511), 1, + sym_else_clause, + ACTIONS(934), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -33256,7 +32833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(956), 38, + ACTIONS(936), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -33269,17 +32846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -33295,172 +32867,80 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [13268] = 3, + [12742] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(892), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(283), 1, anon_sym_not, + ACTIONS(289), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(297), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [13326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(896), 12, - sym__dedent, + ACTIONS(299), 1, sym__string_start, - anon_sym_LPAREN, + ACTIONS(692), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(995), 1, + sym_expression, + STATE(1115), 1, + sym_list_splat, + STATE(1259), 1, + sym_type, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(898), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(295), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [13384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(956), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(269), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13442] = 21, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [12836] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -33479,18 +32959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, + ACTIONS(692), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1011), 1, + STATE(1068), 1, sym_expression, - STATE(1153), 1, + STATE(1335), 1, sym_list_splat, - STATE(1461), 1, - sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, @@ -33509,14 +32987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33533,130 +33011,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13536] = 5, + [12927] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_except, - STATE(296), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(949), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(947), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13598] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_except, - STATE(297), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(942), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(940), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13660] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(283), 1, anon_sym_not, @@ -33666,21 +33030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1011), 1, + STATE(1055), 1, sym_expression, - STATE(1153), 1, - sym_list_splat, - STATE(1462), 1, - sym_type, ACTIONS(293), 2, sym_ellipsis, sym_float, + ACTIONS(938), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33696,14 +33057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33720,62 +33081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(924), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(922), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_match, - anon_sym_case, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [13812] = 19, + [13016] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -33794,16 +33100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1076), 1, + STATE(1072), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(964), 2, + ACTIONS(940), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(285), 3, @@ -33821,14 +33127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33845,60 +33151,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13901] = 19, + [13105] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, + anon_sym_await, + ACTIONS(738), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(1060), 1, + STATE(576), 1, + sym_primary_expression, + STATE(913), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(966), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + STATE(982), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33915,38 +33221,38 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13990] = 19, + [13194] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(678), 1, - anon_sym_await, - ACTIONS(760), 1, + ACTIONS(289), 1, anon_sym_lambda, - STATE(586), 1, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(936), 1, + STATE(1079), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(1034), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(582), 3, + ACTIONS(942), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -33955,20 +33261,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33985,7 +33291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14079] = 19, + [13283] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -33998,22 +33304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(626), 1, anon_sym_not, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(760), 1, + ACTIONS(738), 1, anon_sym_lambda, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(935), 1, + STATE(919), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(980), 2, + STATE(987), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(582), 3, @@ -34025,20 +33331,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34055,117 +33361,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14168] = 6, + [13372] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_elif, - STATE(304), 1, - aux_sym_if_statement_repeat1, - STATE(400), 1, - sym_elif_clause, - ACTIONS(968), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(970), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [14231] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(946), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, + STATE(705), 1, sym_primary_expression, - STATE(709), 1, + STATE(708), 1, sym_string, - STATE(1060), 1, + STATE(980), 1, sym_expression, - ACTIONS(75), 2, + STATE(1193), 1, + sym_with_item, + STATE(1405), 1, + sym_with_clause, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(975), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34182,61 +33432,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14320] = 20, + [13463] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_LPAREN, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(608), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(979), 1, - anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_COLON, - ACTIONS(985), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_await, - STATE(713), 1, + ACTIONS(738), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(726), 1, + STATE(576), 1, sym_primary_expression, - STATE(1063), 1, + STATE(919), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + STATE(943), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34253,60 +33502,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14411] = 19, + [13552] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(626), 1, + anon_sym_not, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, + anon_sym_await, + ACTIONS(738), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(1060), 1, + STATE(576), 1, + sym_primary_expression, + STATE(921), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(991), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + STATE(977), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34323,60 +33572,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14500] = 19, + [13641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_not, - ACTIONS(668), 1, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_await, - ACTIONS(760), 1, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, anon_sym_lambda, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(954), 1, + anon_sym_await, + ACTIONS(956), 1, + anon_sym_STAR, + ACTIONS(958), 1, + anon_sym_COLON, + STATE(705), 1, sym_primary_expression, - STATE(935), 1, + STATE(708), 1, + sym_string, + STATE(1024), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - STATE(1024), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(582), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34393,60 +33643,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14589] = 19, + [13732] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_not, - ACTIONS(668), 1, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, sym_identifier, - ACTIONS(678), 1, - anon_sym_await, - ACTIONS(760), 1, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, anon_sym_lambda, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(954), 1, + anon_sym_await, + ACTIONS(960), 1, + anon_sym_RPAREN, + STATE(705), 1, sym_primary_expression, - STATE(938), 1, + STATE(708), 1, + sym_string, + STATE(980), 1, sym_expression, - ACTIONS(293), 2, + STATE(1265), 1, + sym_with_item, + ACTIONS(602), 2, sym_ellipsis, sym_float, - STATE(1022), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(582), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34463,60 +33714,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14678] = 19, + [13823] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(944), 1, sym_identifier, - ACTIONS(333), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(946), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_lambda, + ACTIONS(954), 1, + anon_sym_await, + STATE(705), 1, sym_primary_expression, - STATE(709), 1, + STATE(708), 1, sym_string, - STATE(1060), 1, + STATE(980), 1, sym_expression, - ACTIONS(75), 2, + STATE(1193), 1, + sym_with_item, + STATE(1403), 1, + sym_with_clause, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(993), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34533,60 +33785,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14767] = 19, + [13914] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(946), 1, + anon_sym_LPAREN, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(297), 1, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + STATE(705), 1, sym_primary_expression, - STATE(1078), 1, + STATE(708), 1, + sym_string, + STATE(980), 1, sym_expression, - ACTIONS(293), 2, + STATE(1193), 1, + sym_with_item, + STATE(1411), 1, + sym_with_clause, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(995), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34603,60 +33856,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14856] = 19, + [14005] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(297), 1, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(962), 1, + anon_sym_STAR, + ACTIONS(964), 1, + anon_sym_COLON, + STATE(705), 1, sym_primary_expression, - STATE(1093), 1, + STATE(708), 1, + sym_string, + STATE(1034), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34673,61 +33927,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14945] = 20, + [14096] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(977), 1, + ACTIONS(944), 1, sym_identifier, - ACTIONS(985), 1, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(999), 1, - anon_sym_LPAREN, - STATE(713), 1, - sym_string, - STATE(726), 1, + ACTIONS(966), 1, + anon_sym_RPAREN, + STATE(705), 1, sym_primary_expression, - STATE(1033), 1, + STATE(708), 1, + sym_string, + STATE(980), 1, sym_expression, - STATE(1201), 1, + STATE(1265), 1, sym_with_item, - STATE(1405), 1, - sym_with_clause, - ACTIONS(604), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34744,273 +33998,174 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15036] = 19, + [14187] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(972), 1, + anon_sym_elif, + STATE(303), 1, + aux_sym_if_statement_repeat1, + STATE(424), 1, + sym_elif_clause, + ACTIONS(968), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1099), 1, - sym_expression, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1001), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(970), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [15125] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_LPAREN, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + anon_sym_class, anon_sym_not, - ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1003), 1, - anon_sym_RPAREN, - STATE(713), 1, - sym_string, - STATE(726), 1, - sym_primary_expression, - STATE(1033), 1, - sym_expression, - STATE(1268), 1, - sym_with_item, - ACTIONS(604), 2, - sym_ellipsis, - sym_float, - ACTIONS(598), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(590), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(981), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1003), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(827), 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, - [15216] = 20, + [14250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(975), 1, + anon_sym_elif, + STATE(304), 1, + aux_sym_if_statement_repeat1, + STATE(425), 1, + sym_elif_clause, + ACTIONS(968), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(706), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1092), 1, - sym_expression, - STATE(1335), 1, - sym_list_splat, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(970), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [15307] = 20, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [14313] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - STATE(713), 1, - sym_string, - STATE(726), 1, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(1033), 1, + STATE(693), 1, + sym_string, + STATE(1018), 1, sym_expression, - STATE(1201), 1, - sym_with_item, - STATE(1438), 1, - sym_with_clause, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(978), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35027,118 +34182,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15398] = 6, + [14402] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 1, - anon_sym_elif, - STATE(318), 1, - aux_sym_if_statement_repeat1, - STATE(368), 1, - sym_elif_clause, - ACTIONS(968), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(970), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, sym_identifier, + ACTIONS(537), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [15461] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1008), 1, - anon_sym_RPAREN, - STATE(713), 1, - sym_string, - STATE(726), 1, + STATE(692), 1, sym_primary_expression, - STATE(1033), 1, + STATE(693), 1, + sym_string, + STATE(1018), 1, sym_expression, - STATE(1268), 1, - sym_with_item, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(980), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35155,61 +34252,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15552] = 20, + [14491] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(999), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - STATE(713), 1, - sym_string, - STATE(726), 1, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(1033), 1, + STATE(693), 1, + sym_string, + STATE(1018), 1, sym_expression, - STATE(1201), 1, - sym_with_item, - STATE(1430), 1, - sym_with_clause, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(982), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35226,61 +34322,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15643] = 20, + [14580] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(608), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(999), 1, - anon_sym_LPAREN, - STATE(713), 1, + ACTIONS(738), 1, + anon_sym_lambda, + STATE(569), 1, sym_string, - STATE(726), 1, + STATE(576), 1, sym_primary_expression, - STATE(1033), 1, + STATE(919), 1, sym_expression, - STATE(1201), 1, - sym_with_item, - STATE(1427), 1, - sym_with_clause, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + STATE(968), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35297,14 +34392,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15734] = 8, + [14669] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(264), 1, anon_sym_COMMA, ACTIONS(271), 1, anon_sym_COLON_EQ, - ACTIONS(1010), 1, + ACTIONS(984), 1, sym_identifier, ACTIONS(273), 2, anon_sym_COLON, @@ -35356,60 +34451,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_is, - [15801] = 19, + [14736] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(578), 1, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(946), 1, anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(678), 1, - anon_sym_await, - ACTIONS(760), 1, + ACTIONS(952), 1, anon_sym_lambda, - STATE(586), 1, + ACTIONS(954), 1, + anon_sym_await, + STATE(705), 1, + sym_primary_expression, + STATE(708), 1, sym_string, - STATE(590), 1, + STATE(980), 1, + sym_expression, + STATE(1193), 1, + sym_with_item, + STATE(1392), 1, + sym_with_clause, + ACTIONS(602), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(588), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(948), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(978), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(787), 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, + [14827] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(935), 1, + STATE(693), 1, + sym_string, + STATE(1018), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(957), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(582), 3, + ACTIONS(986), 2, + sym__newline, + sym__semicolon, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35426,61 +34592,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15890] = 20, + [14916] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(1012), 1, - anon_sym_STAR, - ACTIONS(1014), 1, - anon_sym_COLON, - STATE(713), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(726), 1, + STATE(589), 1, sym_primary_expression, - STATE(1056), 1, + STATE(1076), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(988), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35497,12 +34662,17 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15981] = 3, + [15005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 12, - sym__dedent, + ACTIONS(994), 1, + anon_sym_case, + STATE(313), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(990), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35513,7 +34683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 36, + ACTIONS(992), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35526,13 +34696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -35550,121 +34717,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16037] = 3, + [15065] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(806), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(804), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, + ACTIONS(590), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [16093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(814), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(952), 1, + anon_sym_lambda, + ACTIONS(954), 1, + anon_sym_await, + STATE(705), 1, + sym_primary_expression, + STATE(708), 1, + sym_string, + STATE(980), 1, + sym_expression, + STATE(1265), 1, + sym_with_item, + ACTIONS(602), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(812), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [16149] = 5, + anon_sym_TILDE, + ACTIONS(588), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(948), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(978), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(787), 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, + [15153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 1, - anon_sym_case, - STATE(328), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1022), 12, + ACTIONS(999), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -35677,7 +34802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1020), 33, + ACTIONS(997), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35690,10 +34815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -35711,12 +34839,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16209] = 3, + [15209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 12, + ACTIONS(1003), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35727,7 +34855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1029), 36, + ACTIONS(1001), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35764,12 +34892,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16265] = 3, + [15265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 12, + ACTIONS(1007), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -35780,7 +34908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1033), 36, + ACTIONS(1005), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35817,10 +34945,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16321] = 3, + [15321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 12, + ACTIONS(1009), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -35833,7 +34961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1037), 36, + ACTIONS(1011), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35870,79 +34998,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16377] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_LPAREN, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - ACTIONS(1014), 1, - anon_sym_COLON, - STATE(713), 1, - sym_string, - STATE(726), 1, - sym_primary_expression, - STATE(1056), 1, - sym_expression, - ACTIONS(604), 2, - sym_ellipsis, - sym_float, - ACTIONS(598), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(590), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(981), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(1003), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(827), 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, - [16465] = 3, + [15377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 12, + ACTIONS(1013), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -35955,7 +35014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1041), 36, + ACTIONS(1015), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -35992,15 +35051,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16521] = 5, + [15433] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 1, - anon_sym_case, - STATE(328), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1045), 12, + ACTIONS(570), 1, + anon_sym_COLON_EQ, + ACTIONS(572), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(565), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(574), 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(287), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(260), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [15497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1013), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -36013,7 +35124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1043), 33, + ACTIONS(1015), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36026,10 +35137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -36047,37 +35161,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16581] = 7, + [15553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(271), 1, - anon_sym_COLON_EQ, - ACTIONS(273), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(291), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(260), 15, + ACTIONS(798), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_SLASH, anon_sym_PERCENT, @@ -36087,11 +35181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(287), 16, + ACTIONS(796), 32, sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -36103,11 +35200,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, sym__semicolon, - [16645] = 3, + [15609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 12, + ACTIONS(1009), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -36120,7 +35230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1049), 36, + ACTIONS(1011), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36157,12 +35267,122 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16701] = 3, + [15665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 12, - sym__dedent, + ACTIONS(808), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(806), 32, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym__semicolon, + [15721] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_COLON_EQ, + ACTIONS(1026), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1019), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1028), 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(1017), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1022), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [15785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36173,7 +35393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1053), 36, + ACTIONS(1005), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36210,12 +35430,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16757] = 3, + [15841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 12, - sym__dedent, + ACTIONS(1030), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36226,7 +35446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1057), 36, + ACTIONS(1032), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36263,17 +35483,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16813] = 5, + [15897] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1038), 1, anon_sym_case, - STATE(339), 2, + STATE(337), 2, sym_case_block, aux_sym_cases_repeat1, - ACTIONS(1022), 12, + ACTIONS(1036), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36284,7 +35504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1020), 33, + ACTIONS(1034), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36318,12 +35538,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16873] = 3, + [15957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 12, + ACTIONS(1042), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36334,7 +35554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1066), 36, + ACTIONS(1040), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36371,12 +35591,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16929] = 3, + [16013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1068), 12, + ACTIONS(1046), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36387,7 +35607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1070), 36, + ACTIONS(1044), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36424,12 +35644,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [16985] = 3, + [16069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1068), 12, - sym__dedent, + ACTIONS(1048), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36440,7 +35660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1070), 36, + ACTIONS(1050), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36477,12 +35697,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17041] = 3, + [16125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1064), 12, - sym__dedent, + ACTIONS(1052), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36493,7 +35713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1066), 36, + ACTIONS(1054), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36530,84 +35750,125 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17097] = 19, + [16181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(1003), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(600), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, - sym_primary_expression, - STATE(1033), 1, - sym_expression, - STATE(1268), 1, - sym_with_item, - ACTIONS(604), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(598), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(590), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(981), 5, + ACTIONS(1001), 36, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(1003), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(827), 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, - [17185] = 5, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16237] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1056), 1, + anon_sym_COMMA, + ACTIONS(1059), 1, + anon_sym_COLON_EQ, + ACTIONS(1061), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1063), 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(1022), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [16301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1072), 1, + ACTIONS(1065), 1, anon_sym_case, - STATE(339), 2, + STATE(313), 2, sym_case_block, aux_sym_cases_repeat1, - ACTIONS(1045), 12, + ACTIONS(1036), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -36620,7 +35881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1043), 33, + ACTIONS(1034), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36654,12 +35915,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17245] = 3, + [16361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 12, - sym__dedent, + ACTIONS(999), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36670,7 +35931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1041), 36, + ACTIONS(997), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36707,12 +35968,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17301] = 3, + [16417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1018), 12, + ACTIONS(1067), 1, + anon_sym_case, + STATE(337), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(990), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36723,7 +35989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1016), 36, + ACTIONS(992), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36736,13 +36002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -36760,10 +36023,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17357] = 3, + [16477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 12, + ACTIONS(1046), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -36776,7 +36039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1057), 36, + ACTIONS(1044), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36813,12 +36076,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17413] = 3, + [16533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 12, - sym__dedent, + ACTIONS(1042), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36829,7 +36092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1037), 36, + ACTIONS(1040), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -36866,45 +36129,86 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17469] = 3, + [16589] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(798), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_lambda, + ACTIONS(954), 1, + anon_sym_await, + ACTIONS(964), 1, + anon_sym_COLON, + STATE(705), 1, + sym_primary_expression, + STATE(708), 1, + sym_string, + STATE(1034), 1, + sym_expression, + ACTIONS(602), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(796), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + anon_sym_TILDE, + ACTIONS(588), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(948), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(978), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(787), 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, + [16677] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 1, anon_sym_COMMA, - anon_sym_if, + ACTIONS(271), 1, + anon_sym_COLON_EQ, + ACTIONS(273), 2, anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, + anon_sym_EQ, + ACTIONS(291), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36918,18 +36222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym__semicolon, - [17525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(802), 16, + ACTIONS(260), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_SLASH, anon_sym_PERCENT, @@ -36939,14 +36238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(800), 32, + ACTIONS(287), 16, sym__newline, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -36958,26 +36254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, sym__semicolon, - [17581] = 3, + [16741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 12, + ACTIONS(1048), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -36988,7 +36271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1053), 36, + ACTIONS(1050), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37025,118 +36308,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17637] = 3, + [16797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(798), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(796), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, + ACTIONS(1030), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [17693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(810), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, - anon_sym_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(808), 32, - sym__newline, - anon_sym_DOT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1032), 36, + anon_sym_import, anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [17749] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [16853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 12, + ACTIONS(1052), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -37147,7 +36377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1049), 36, + ACTIONS(1054), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37184,59 +36414,59 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [17805] = 19, + [16909] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(977), 1, + ACTIONS(944), 1, sym_identifier, - ACTIONS(983), 1, - anon_sym_COLON, - ACTIONS(985), 1, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(954), 1, anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, + ACTIONS(958), 1, + anon_sym_COLON, + STATE(705), 1, sym_primary_expression, - STATE(1063), 1, + STATE(708), 1, + sym_string, + STATE(1024), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37253,287 +36483,136 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17893] = 7, + [16997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 1, - anon_sym_COMMA, - ACTIONS(1081), 1, - anon_sym_COLON_EQ, - ACTIONS(1083), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1085), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1079), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, + ACTIONS(822), 1, + anon_sym_else, + STATE(502), 1, + sym_else_clause, + ACTIONS(1070), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_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(1074), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1072), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [17957] = 7, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [17056] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(560), 1, - anon_sym_COLON_EQ, - ACTIONS(562), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(555), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(564), 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(287), 14, - anon_sym_DOT, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(260), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [18021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(804), 32, - sym__newline, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym__semicolon, - [18077] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1090), 1, - anon_sym_COLON_EQ, - ACTIONS(1092), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1087), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1094), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1074), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1079), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [18141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1031), 12, - sym__dedent, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(299), 1, sym__string_start, - anon_sym_LPAREN, + ACTIONS(1074), 1, + sym_identifier, + ACTIONS(1078), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(890), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + STATE(392), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1033), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1076), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18197] = 3, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [17143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 12, + ACTIONS(816), 1, + anon_sym_else, + STATE(556), 1, + sym_else_clause, + ACTIONS(1082), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -37546,7 +36625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1029), 36, + ACTIONS(1080), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37559,13 +36638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -37583,124 +36659,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18253] = 18, + [17202] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1166), 1, - sym_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [18338] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_LPAREN, ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(977), 1, + ACTIONS(944), 1, sym_identifier, - ACTIONS(985), 1, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(954), 1, anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1010), 1, + STATE(708), 1, + sym_string, + STATE(999), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37717,7 +36726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18423] = 18, + [17287] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -37728,19 +36737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(996), 1, + STATE(966), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -37754,20 +36763,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37784,35 +36793,35 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18508] = 18, + [17372] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(678), 1, + ACTIONS(297), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(882), 1, + STATE(1045), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -37821,20 +36830,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37851,14 +36860,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18593] = 5, + [17457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(822), 1, + ACTIONS(816), 1, anon_sym_else, - STATE(572), 1, + STATE(517), 1, sym_else_clause, - ACTIONS(1098), 12, + ACTIONS(1086), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -37871,7 +36880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1096), 33, + ACTIONS(1084), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -37905,109 +36914,179 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [18652] = 3, + [17516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1102), 12, - sym__dedent, - sym__string_start, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1108), 1, + sym_expression, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1100), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [17601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_COMMA, + ACTIONS(1097), 1, + anon_sym_EQ, + ACTIONS(1095), 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(1093), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1088), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [18707] = 18, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [17662] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(678), 1, + ACTIONS(954), 1, anon_sym_await, - STATE(586), 1, - sym_string, - STATE(590), 1, + STATE(705), 1, sym_primary_expression, - STATE(909), 1, + STATE(708), 1, + sym_string, + STATE(990), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38024,7 +37103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18792] = 18, + [17747] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -38043,11 +37122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1151), 1, + STATE(1110), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -38067,14 +37146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38091,111 +37170,124 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18877] = 5, + [17832] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(822), 1, - anon_sym_else, - STATE(567), 1, - sym_else_clause, - ACTIONS(1106), 12, - sym__dedent, - sym__string_start, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1095), 1, + sym_expression, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1104), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [18936] = 18, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [17917] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(668), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(537), 1, anon_sym_await, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(910), 1, + STATE(693), 1, + sym_string, + STATE(985), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38212,90 +37304,35 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19021] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1110), 1, - anon_sym_COMMA, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(1115), 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(1113), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1108), 16, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [19082] = 18, + [18002] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(297), 1, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(576), 1, sym_primary_expression, - STATE(1086), 1, + STATE(876), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -38304,20 +37341,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38334,7 +37371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19167] = 18, + [18087] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -38353,11 +37390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(901), 1, + STATE(909), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -38377,14 +37414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38401,7 +37438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19252] = 18, + [18172] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -38416,15 +37453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(977), 1, + STATE(872), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -38438,20 +37475,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38468,102 +37505,89 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19337] = 18, + [18257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(820), 1, + anon_sym_finally, + STATE(515), 1, + sym_finally_clause, + ACTIONS(1101), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(600), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, - sym_primary_expression, - STATE(999), 1, - sym_expression, - ACTIONS(604), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(598), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(590), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(981), 5, + ACTIONS(1099), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(1003), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(827), 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, - [19422] = 18, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [18316] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(297), 1, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(576), 1, sym_primary_expression, - STATE(911), 1, + STATE(860), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -38572,20 +37596,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38602,62 +37626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1092), 1, - anon_sym_EQ, - ACTIONS(1087), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1074), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1094), 14, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1079), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - [19568] = 18, + [18401] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -38668,19 +37637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(987), 1, + STATE(1083), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -38694,87 +37663,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(985), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(759), 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, - [19653] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(900), 1, - sym_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38791,7 +37693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19738] = 18, + [18486] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -38810,11 +37712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1041), 1, + STATE(1026), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -38834,14 +37736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38858,7 +37760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19823] = 18, + [18571] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -38869,19 +37771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(971), 1, + STATE(1017), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -38895,20 +37797,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38925,57 +37827,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19908] = 18, + [18656] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(1121), 1, + STATE(576), 1, + sym_primary_expression, + STATE(883), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38992,57 +37894,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19993] = 18, + [18741] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(1065), 1, + STATE(576), 1, + sym_primary_expression, + STATE(886), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39059,10 +37961,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20078] = 3, + [18826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 12, + ACTIONS(816), 1, + anon_sym_else, + STATE(458), 1, + sym_else_clause, + ACTIONS(1105), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -39075,7 +37981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1119), 35, + ACTIONS(1103), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -39088,8 +37994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -39111,57 +38015,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [20133] = 18, + [18885] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(978), 1, + STATE(576), 1, + sym_primary_expression, + STATE(928), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39178,57 +38082,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20218] = 18, + [18970] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(944), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_lambda, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, + STATE(705), 1, sym_primary_expression, - STATE(709), 1, + STATE(708), 1, sym_string, - STATE(1097), 1, + STATE(1001), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39245,111 +38149,124 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20303] = 5, + [19055] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, - anon_sym_else, - STATE(502), 1, - sym_else_clause, - ACTIONS(1123), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1056), 1, + sym_expression, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1125), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20362] = 18, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [19140] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(674), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(998), 1, + STATE(576), 1, + sym_primary_expression, + STATE(984), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39366,7 +38283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20447] = 18, + [19225] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -39385,11 +38302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(912), 1, + STATE(881), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -39409,14 +38326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39433,7 +38350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20532] = 18, + [19310] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -39452,11 +38369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(888), 1, + STATE(901), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -39476,14 +38393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39500,57 +38417,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20617] = 18, + [19395] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(1083), 1, + STATE(589), 1, + sym_primary_expression, + STATE(880), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39567,57 +38484,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20702] = 18, + [19480] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(678), 1, + ACTIONS(954), 1, anon_sym_await, - STATE(586), 1, - sym_string, - STATE(590), 1, + STATE(705), 1, sym_primary_expression, - STATE(1002), 1, + STATE(708), 1, + sym_string, + STATE(1053), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39634,61 +38551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20787] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(822), 1, - anon_sym_else, - STATE(547), 1, - sym_else_clause, - ACTIONS(1129), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1127), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [20846] = 18, + [19565] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -39707,11 +38570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1175), 1, + STATE(870), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -39731,14 +38594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39755,7 +38618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20931] = 18, + [19650] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -39774,11 +38637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1122), 1, + STATE(878), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -39798,14 +38661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39822,57 +38685,111 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21016] = 18, + [19735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(826), 1, + anon_sym_finally, + STATE(470), 1, + sym_finally_clause, + ACTIONS(1101), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1099), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(333), 1, anon_sym_await, - ACTIONS(568), 1, + sym_true, + sym_false, + sym_none, + [19794] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(979), 1, + STATE(589), 1, + sym_primary_expression, + STATE(1101), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39889,284 +38806,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21101] = 18, + [19879] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1064), 1, - sym_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [21186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1102), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1100), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(822), 1, - anon_sym_else, - STATE(507), 1, - sym_else_clause, - ACTIONS(1133), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1131), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21300] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_else, - STATE(504), 1, - sym_else_clause, - ACTIONS(1098), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(590), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(598), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1096), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [21359] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_LPAREN, ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(977), 1, + ACTIONS(944), 1, sym_identifier, - ACTIONS(985), 1, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(954), 1, anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, + STATE(705), 1, sym_primary_expression, - STATE(1084), 1, + STATE(708), 1, + sym_string, + STATE(973), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40183,7 +38873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21444] = 18, + [19964] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -40194,19 +38884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(956), 1, + STATE(1152), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -40220,20 +38910,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40250,7 +38940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21529] = 18, + [20049] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -40261,19 +38951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(950), 1, + STATE(957), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -40287,20 +38977,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40317,7 +39007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21614] = 18, + [20134] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -40336,11 +39026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1110), 1, + STATE(1149), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -40360,14 +39050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40384,57 +39074,111 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21699] = 18, + [20219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(816), 1, + anon_sym_else, + STATE(494), 1, + sym_else_clause, + ACTIONS(1070), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(600), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1072), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [20278] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, sym_identifier, - ACTIONS(985), 1, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(297), 1, anon_sym_await, - STATE(713), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(726), 1, + STATE(589), 1, sym_primary_expression, - STATE(1007), 1, + STATE(866), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40451,57 +39195,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21784] = 18, + [20363] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(914), 1, + STATE(693), 1, + sym_string, + STATE(970), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40518,57 +39262,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21869] = 18, + [20448] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(668), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(537), 1, anon_sym_await, - STATE(586), 1, - sym_string, - STATE(590), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(904), 1, + STATE(693), 1, + sym_string, + STATE(960), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40585,12 +39329,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21954] = 3, + [20533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 12, - sym__dedent, + ACTIONS(826), 1, + anon_sym_finally, + STATE(513), 1, + sym_finally_clause, + ACTIONS(1107), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -40601,7 +39349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1135), 35, + ACTIONS(1109), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40614,8 +39362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -40637,14 +39383,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22009] = 5, + [20592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(822), 1, - anon_sym_else, - STATE(518), 1, - sym_else_clause, - ACTIONS(1123), 12, + ACTIONS(1113), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -40657,7 +39399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1125), 33, + ACTIONS(1111), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -40670,6 +39412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -40691,57 +39435,112 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22068] = 18, + [20647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(1026), 1, + anon_sym_EQ, + ACTIONS(1019), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1017), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(279), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1028), 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(1022), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [20708] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(882), 1, + STATE(693), 1, + sym_string, + STATE(1037), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40758,57 +39557,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22153] = 18, + [20793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(297), 1, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + STATE(705), 1, sym_primary_expression, - STATE(1045), 1, + STATE(708), 1, + sym_string, + STATE(1008), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40825,7 +39624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22238] = 18, + [20878] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -40840,15 +39639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(908), 1, + STATE(868), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -40862,20 +39661,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40892,57 +39691,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22323] = 18, + [20963] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(297), 1, anon_sym_await, - STATE(713), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(726), 1, + STATE(589), 1, sym_primary_expression, - STATE(1008), 1, + STATE(1011), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40959,16 +39758,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22408] = 5, + [21048] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(822), 1, anon_sym_else, - STATE(562), 1, + STATE(484), 1, sym_else_clause, - ACTIONS(1141), 12, - sym__dedent, + ACTIONS(1086), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -40979,7 +39778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1139), 33, + ACTIONS(1084), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41013,57 +39812,109 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22467] = 18, + [21107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(1113), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(600), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, - sym_primary_expression, - STATE(1009), 1, - sym_expression, - ACTIONS(604), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(598), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(1111), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [21162] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_lambda, + ACTIONS(954), 1, + anon_sym_await, + STATE(705), 1, + sym_primary_expression, + STATE(708), 1, + sym_string, + STATE(1047), 1, + sym_expression, + ACTIONS(602), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41080,14 +39931,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22552] = 5, + [21247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, + ACTIONS(822), 1, anon_sym_else, - STATE(533), 1, + STATE(519), 1, sym_else_clause, - ACTIONS(1133), 12, + ACTIONS(1115), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -41100,7 +39951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1131), 33, + ACTIONS(1117), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -41134,57 +39985,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [22611] = 18, + [21306] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_LPAREN, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(608), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(626), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(664), 1, + sym_identifier, + ACTIONS(674), 1, anon_sym_await, - STATE(713), 1, + STATE(569), 1, sym_string, - STATE(726), 1, + STATE(576), 1, sym_primary_expression, - STATE(1012), 1, + STATE(882), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41201,57 +40052,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22696] = 18, + [21391] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(297), 1, anon_sym_await, - STATE(713), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(726), 1, + STATE(589), 1, sym_primary_expression, - STATE(1016), 1, + STATE(1145), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41268,57 +40119,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22781] = 18, + [21476] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_LPAREN, - ACTIONS(600), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(1017), 1, + STATE(693), 1, + sym_string, + STATE(941), 1, sym_expression, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(981), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(1003), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41335,112 +40186,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22866] = 6, + [21561] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 1, - anon_sym_COMMA, - ACTIONS(1083), 1, - anon_sym_EQ, - ACTIONS(1085), 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(1079), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 16, - sym__newline, - anon_sym_DOT, + ACTIONS(590), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(598), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [22927] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(944), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_lambda, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, + STATE(705), 1, sym_primary_expression, - STATE(709), 1, + STATE(708), 1, sym_string, - STATE(1060), 1, + STATE(1006), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41457,57 +40253,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23012] = 18, + [21646] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(890), 1, + STATE(693), 1, + sym_string, + STATE(923), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41524,112 +40320,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23097] = 6, + [21731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - anon_sym_COMMA, - ACTIONS(1152), 1, - anon_sym_EQ, - ACTIONS(1150), 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(1148), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1143), 16, - sym__newline, - anon_sym_DOT, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_if, - anon_sym_in, + ACTIONS(277), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [23158] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, + STATE(589), 1, + sym_primary_expression, STATE(1087), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41646,109 +40387,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23243] = 3, + [21816] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(590), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(598), 1, anon_sym_LBRACK, + ACTIONS(600), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1135), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23298] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(950), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(952), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, + ACTIONS(954), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, + STATE(705), 1, sym_primary_expression, - STATE(709), 1, + STATE(708), 1, sym_string, - STATE(1059), 1, + STATE(1005), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(588), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(948), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(978), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41765,7 +40454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23383] = 18, + [21901] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -41784,11 +40473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1140), 1, + STATE(1144), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -41808,14 +40497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41832,57 +40521,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23468] = 18, + [21986] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(1126), 1, + STATE(693), 1, + sym_string, + STATE(934), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41899,7 +40588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23553] = 18, + [22071] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -41918,11 +40607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(903), 1, + STATE(1140), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -41942,14 +40631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41966,61 +40655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_else, - STATE(498), 1, - sym_else_clause, - ACTIONS(1106), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1104), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [23697] = 18, + [22156] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -42031,19 +40666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(1079), 1, + STATE(1061), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -42057,20 +40692,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42087,7 +40722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23782] = 18, + [22241] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -42106,11 +40741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1085), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -42130,14 +40765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42154,57 +40789,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23867] = 18, + [22326] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, - sym_identifier, - ACTIONS(333), 1, + ACTIONS(297), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(973), 1, + STATE(589), 1, + sym_primary_expression, + STATE(879), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(295), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42221,61 +40856,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23952] = 5, + [22411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(826), 1, - anon_sym_finally, - STATE(532), 1, - sym_finally_clause, - ACTIONS(1156), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(1056), 1, + anon_sym_COMMA, + ACTIONS(1061), 1, + anon_sym_EQ, + ACTIONS(1063), 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(1022), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1154), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [24011] = 18, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [22472] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -42294,11 +40930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1115), 1, + STATE(1138), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -42318,14 +40954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42342,111 +40978,57 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24096] = 5, + [22557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, - anon_sym_finally, - STATE(482), 1, - sym_finally_clause, - ACTIONS(1156), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1154), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, sym_identifier, + ACTIONS(537), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [24155] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(626), 1, - anon_sym_not, - ACTIONS(628), 1, - anon_sym_lambda, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(678), 1, - anon_sym_await, - STATE(586), 1, - sym_string, - STATE(590), 1, + STATE(692), 1, sym_primary_expression, - STATE(894), 1, + STATE(693), 1, + sym_string, + STATE(932), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42463,16 +41045,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24240] = 5, + [22642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(820), 1, anon_sym_finally, - STATE(528), 1, + STATE(546), 1, sym_finally_clause, - ACTIONS(1158), 12, + ACTIONS(1107), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -42483,7 +41065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1160), 33, + ACTIONS(1109), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42517,215 +41099,122 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24299] = 18, + [22701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(816), 1, + anon_sym_else, + STATE(541), 1, + sym_else_clause, + ACTIONS(1115), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1160), 1, - sym_expression, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(1117), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [24384] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, + anon_sym_class, anon_sym_not, - ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1173), 1, - sym_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(269), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [24469] = 18, + [22760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(822), 1, + anon_sym_else, + STATE(529), 1, + sym_else_clause, + ACTIONS(1119), 12, + sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(600), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(602), 1, anon_sym_LBRACE, - ACTIONS(608), 1, - sym__string_start, - ACTIONS(977), 1, - sym_identifier, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(989), 1, - anon_sym_await, - STATE(713), 1, - sym_string, - STATE(726), 1, - sym_primary_expression, - STATE(1106), 1, - sym_expression, - ACTIONS(604), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(598), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(590), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(981), 5, + ACTIONS(1121), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(1003), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(827), 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, - [24554] = 5, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [22819] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, + ACTIONS(822), 1, anon_sym_else, - STATE(490), 1, + STATE(472), 1, sym_else_clause, - ACTIONS(1141), 12, + ACTIONS(1105), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -42738,7 +41227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1139), 33, + ACTIONS(1103), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42772,7 +41261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [24613] = 18, + [22878] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -42791,11 +41280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(896), 1, + STATE(1107), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -42815,14 +41304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42839,141 +41328,59 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24698] = 18, + [22963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, - sym_identifier, - ACTIONS(262), 1, + ACTIONS(1125), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, - sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(1117), 1, - sym_expression, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(269), 5, + ACTIONS(1123), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [24783] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(327), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(333), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(707), 1, - sym_primary_expression, - STATE(709), 1, - sym_string, - STATE(975), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(329), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(985), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(759), 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, - [24868] = 18, + [23018] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -42984,19 +41391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(1021), 1, + STATE(953), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43010,20 +41417,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43040,14 +41447,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24953] = 5, + [23103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(842), 1, - anon_sym_else, - STATE(480), 1, - sym_else_clause, - ACTIONS(1129), 12, + ACTIONS(1127), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -43060,7 +41463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1127), 33, + ACTIONS(1129), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43073,6 +41476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -43094,75 +41499,59 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25012] = 19, + [23158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(1127), 12, + sym__dedent, + sym__string_start, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_not, - ACTIONS(289), 1, - anon_sym_lambda, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(1162), 1, - sym_identifier, - ACTIONS(1166), 1, - anon_sym_await, - STATE(586), 1, - sym_string, - STATE(616), 1, - sym_primary_expression, - STATE(912), 1, - sym_expression, - ACTIONS(293), 2, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(379), 2, - sym_attribute, - sym_subscript, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1164), 5, + ACTIONS(1129), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - STATE(883), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(605), 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, - [25099] = 18, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23213] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -43181,11 +41570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1132), 1, + STATE(1093), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -43205,14 +41594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43229,7 +41618,114 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25184] = 18, + [23298] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 1, + anon_sym_COMMA, + ACTIONS(1140), 1, + anon_sym_EQ, + ACTIONS(1138), 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(1136), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1131), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [23359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1125), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1123), 35, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [23414] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43240,19 +41736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(962), 1, + STATE(1018), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43266,20 +41762,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43296,61 +41792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25269] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(826), 1, - anon_sym_finally, - STATE(524), 1, - sym_finally_clause, - ACTIONS(1158), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1160), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [25328] = 18, + [23499] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -43369,11 +41811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1098), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -43393,14 +41835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43417,57 +41859,124 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25413] = 18, + [23584] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, sym_identifier, - ACTIONS(262), 1, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + STATE(692), 1, + sym_primary_expression, + STATE(693), 1, + sym_string, + STATE(1050), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(937), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(764), 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, + [23669] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(289), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(297), 1, - anon_sym_await, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - STATE(586), 1, - sym_string, - STATE(616), 1, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, sym_primary_expression, - STATE(1082), 1, + STATE(693), 1, + sym_string, + STATE(1078), 1, sym_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(269), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43484,7 +41993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25498] = 18, + [23754] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -43499,15 +42008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(628), 1, anon_sym_lambda, - ACTIONS(668), 1, + ACTIONS(664), 1, sym_identifier, - ACTIONS(678), 1, + ACTIONS(674), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(576), 1, sym_primary_expression, - STATE(899), 1, + STATE(871), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -43521,20 +42030,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(670), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43551,7 +42060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25583] = 18, + [23839] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -43570,11 +42079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1138), 1, + STATE(860), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -43594,14 +42103,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 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, + [23924] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + STATE(692), 1, + sym_primary_expression, + STATE(693), 1, + sym_string, + STATE(991), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43618,10 +42194,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25668] = 3, + [24009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 12, + ACTIONS(822), 1, + anon_sym_else, + STATE(488), 1, + sym_else_clause, + ACTIONS(1082), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -43634,7 +42214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1119), 35, + ACTIONS(1080), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43647,8 +42227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_while, @@ -43670,7 +42248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25723] = 18, + [24068] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -43689,11 +42267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(1109), 1, + STATE(1128), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -43713,14 +42291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43737,35 +42315,35 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25808] = 18, + [24153] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(626), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, anon_sym_not, - ACTIONS(628), 1, + ACTIONS(289), 1, anon_sym_lambda, - ACTIONS(668), 1, - sym_identifier, - ACTIONS(678), 1, + ACTIONS(297), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, sym_string, - STATE(590), 1, + STATE(589), 1, sym_primary_expression, - STATE(897), 1, + STATE(888), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -43774,20 +42352,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(674), 5, + ACTIONS(269), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43804,7 +42382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25893] = 18, + [24238] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -43815,19 +42393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym__string_start, - ACTIONS(327), 1, + ACTIONS(531), 1, sym_identifier, - ACTIONS(333), 1, + ACTIONS(537), 1, anon_sym_await, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - STATE(707), 1, + STATE(692), 1, sym_primary_expression, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(1102), 1, + STATE(1064), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -43841,20 +42419,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(329), 5, + ACTIONS(533), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(985), 6, + STATE(937), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43871,7 +42449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25978] = 18, + [24323] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(258), 1, @@ -43890,11 +42468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(299), 1, sym__string_start, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(616), 1, + STATE(589), 1, sym_primary_expression, - STATE(895), 1, + STATE(890), 1, sym_expression, ACTIONS(293), 2, sym_ellipsis, @@ -43914,14 +42492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(883), 6, + STATE(862), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43938,12 +42516,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26063] = 3, + [24408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 12, + ACTIONS(816), 1, + anon_sym_else, + STATE(537), 1, + sym_else_clause, + ACTIONS(1119), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -43954,7 +42536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 34, + ACTIONS(1121), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43971,7 +42553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -43989,78 +42570,295 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26117] = 3, + [24467] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 12, - sym__dedent, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, + ACTIONS(531), 1, + sym_identifier, + ACTIONS(537), 1, + anon_sym_await, + ACTIONS(555), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(561), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + STATE(692), 1, + sym_primary_expression, + STATE(693), 1, + sym_string, + STATE(962), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1172), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(533), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26171] = 3, + STATE(937), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(764), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24552] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 12, - sym__string_start, - ts_builtin_sym_end, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1178), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1069), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24637] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(283), 1, + anon_sym_not, + ACTIONS(289), 1, + anon_sym_lambda, + ACTIONS(297), 1, + anon_sym_await, + ACTIONS(299), 1, + sym__string_start, + STATE(569), 1, + sym_string, + STATE(589), 1, + sym_primary_expression, + STATE(1067), 1, + sym_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(269), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(862), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(575), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24722] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(944), 1, + sym_identifier, + ACTIONS(950), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_lambda, + ACTIONS(954), 1, + anon_sym_await, + STATE(705), 1, + sym_primary_expression, + STATE(708), 1, + sym_string, + STATE(969), 1, + sym_expression, + ACTIONS(602), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(588), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(948), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(978), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(787), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [24807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1144), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1142), 34, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, anon_sym_assert, anon_sym_return, anon_sym_del, @@ -44091,12 +42889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26225] = 3, + [24861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 12, + ACTIONS(1148), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44107,7 +42905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 34, + ACTIONS(1146), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44124,9 +42922,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44142,12 +42940,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26279] = 3, + [24915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 12, - sym__dedent, + ACTIONS(1150), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44158,7 +42956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1184), 34, + ACTIONS(1152), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44193,10 +42991,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26333] = 3, + [24969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1188), 12, + ACTIONS(1148), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -44209,7 +43007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 34, + ACTIONS(1146), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44226,9 +43024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44244,12 +43042,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26387] = 3, + [25023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 12, - sym__dedent, + ACTIONS(1154), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44260,7 +43058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1182), 34, + ACTIONS(1156), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44277,9 +43075,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, - anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44295,10 +43093,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26441] = 3, + [25077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1176), 12, + ACTIONS(1150), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -44311,7 +43109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1178), 34, + ACTIONS(1152), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44346,10 +43144,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26495] = 3, + [25131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 12, + ACTIONS(1144), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -44362,7 +43160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1184), 34, + ACTIONS(1142), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44397,12 +43195,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26549] = 3, + [25185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 12, + ACTIONS(1160), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44413,7 +43211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1172), 34, + ACTIONS(1158), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44430,9 +43228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44448,10 +43246,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26603] = 3, + [25239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 12, + ACTIONS(1164), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -44464,7 +43262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1170), 34, + ACTIONS(1162), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44481,9 +43279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44499,12 +43297,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26657] = 3, + [25293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1188), 12, - sym__dedent, + ACTIONS(1160), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44515,7 +43313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1190), 34, + ACTIONS(1158), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44550,10 +43348,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26711] = 3, + [25347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, + ACTIONS(1164), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -44566,7 +43364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1194), 33, + ACTIONS(1162), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44585,6 +43383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_with, anon_sym_match, + anon_sym_case, anon_sym_def, anon_sym_global, anon_sym_nonlocal, @@ -44600,12 +43399,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26764] = 3, + [25401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1196), 12, + ACTIONS(1154), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44616,7 +43415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1198), 33, + ACTIONS(1156), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44633,6 +43432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_match, anon_sym_def, @@ -44650,12 +43450,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26817] = 3, + [25455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 12, + ACTIONS(1168), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44666,7 +43466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1160), 33, + ACTIONS(1166), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44700,10 +43500,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26870] = 3, + [25508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1170), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -44716,7 +43516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(1172), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44750,12 +43550,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26923] = 3, + [25561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 12, + ACTIONS(1176), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44766,7 +43566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1206), 33, + ACTIONS(1174), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44800,12 +43600,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26976] = 3, + [25614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 12, + ACTIONS(1180), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44816,7 +43616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1210), 33, + ACTIONS(1178), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44850,12 +43650,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27029] = 3, + [25667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 12, - sym__dedent, + ACTIONS(1182), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44866,7 +43666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(818), 33, + ACTIONS(1184), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44900,10 +43700,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27082] = 3, + [25720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 12, + ACTIONS(1186), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -44916,7 +43716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1214), 33, + ACTIONS(1188), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44950,12 +43750,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27135] = 3, + [25773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1192), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44966,7 +43766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1190), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45000,12 +43800,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27188] = 3, + [25826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1186), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45016,7 +43816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1222), 33, + ACTIONS(1188), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45050,10 +43850,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27241] = 3, + [25879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 12, + ACTIONS(1196), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -45066,7 +43866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1224), 33, + ACTIONS(1194), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45100,12 +43900,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27294] = 3, + [25932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 12, - sym__dedent, + ACTIONS(1198), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45116,7 +43916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1228), 33, + ACTIONS(1200), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45150,10 +43950,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27347] = 3, + [25985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, + ACTIONS(1204), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -45166,7 +43966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1232), 33, + ACTIONS(1202), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45200,12 +44000,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27400] = 3, + [26038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 12, + ACTIONS(828), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45216,7 +44016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1238), 33, + ACTIONS(830), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45250,12 +44050,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27453] = 3, + [26091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 12, - sym__dedent, + ACTIONS(1206), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45266,7 +44066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1240), 33, + ACTIONS(1208), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45300,10 +44100,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27506] = 3, + [26144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 12, + ACTIONS(1210), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45316,7 +44116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1246), 33, + ACTIONS(1212), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45350,10 +44150,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27559] = 3, + [26197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, + ACTIONS(1168), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45366,7 +44166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1166), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45400,12 +44200,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27612] = 3, + [26250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, + ACTIONS(1216), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45416,7 +44216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1214), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45450,10 +44250,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27665] = 3, + [26303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 12, + ACTIONS(1192), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45466,7 +44266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1258), 33, + ACTIONS(1190), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45500,10 +44300,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27718] = 3, + [26356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1218), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45516,7 +44316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1262), 33, + ACTIONS(1220), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45550,77 +44350,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27771] = 20, + [26409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(642), 1, - sym_identifier, - ACTIONS(644), 1, - anon_sym_LPAREN, - ACTIONS(654), 1, - anon_sym_LBRACK, - ACTIONS(656), 1, - anon_sym_await, - ACTIONS(1264), 1, - anon_sym_RPAREN, - ACTIONS(1266), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(865), 1, - sym_primary_expression, - STATE(1134), 1, - sym_pattern, - STATE(1426), 1, - sym__patterns, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - STATE(729), 2, - sym_attribute, - sym_subscript, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(860), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(648), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(605), 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, - [27858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 12, + ACTIONS(1222), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45633,7 +44366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1270), 33, + ACTIONS(1224), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45667,12 +44400,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27911] = 3, + [26462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 12, - sym__dedent, + ACTIONS(1226), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45683,7 +44416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 33, + ACTIONS(1228), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45717,10 +44450,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27964] = 3, + [26515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 12, + ACTIONS(1230), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45733,7 +44466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1278), 33, + ACTIONS(1232), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45767,10 +44500,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28017] = 3, + [26568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1234), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45783,7 +44516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1282), 33, + ACTIONS(1236), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45817,12 +44550,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28070] = 3, + [26621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 12, - sym__dedent, + ACTIONS(1180), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45833,7 +44566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1194), 33, + ACTIONS(1178), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45867,10 +44600,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28123] = 3, + [26674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 12, + ACTIONS(1196), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45883,7 +44616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1286), 33, + ACTIONS(1194), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45917,10 +44650,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28176] = 3, + [26727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 12, + ACTIONS(1216), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -45933,7 +44666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 33, + ACTIONS(1214), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45967,12 +44700,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28229] = 3, + [26780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 12, + ACTIONS(1210), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45983,7 +44716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 33, + ACTIONS(1212), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46017,10 +44750,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28282] = 3, + [26833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1238), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46033,7 +44766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1298), 33, + ACTIONS(1240), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46067,10 +44800,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28335] = 3, + [26886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 12, + ACTIONS(1182), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46083,7 +44816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1300), 33, + ACTIONS(1184), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46117,12 +44850,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28388] = 3, + [26939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 12, - sym__dedent, + ACTIONS(1242), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46133,7 +44866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1304), 33, + ACTIONS(1244), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46167,12 +44900,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28441] = 3, + [26992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, - sym__dedent, + ACTIONS(1246), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46183,7 +44916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1308), 33, + ACTIONS(1248), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46217,10 +44950,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28494] = 3, + [27045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 12, + ACTIONS(1250), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46233,7 +44966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1314), 33, + ACTIONS(1252), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46267,10 +45000,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28547] = 3, + [27098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 12, + ACTIONS(1254), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46283,7 +45016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1256), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46317,10 +45050,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28600] = 3, + [27151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 12, + ACTIONS(1258), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46333,7 +45066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1154), 33, + ACTIONS(1260), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46367,10 +45100,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28653] = 3, + [27204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, + ACTIONS(1262), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -46383,7 +45116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1322), 33, + ACTIONS(1264), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46417,12 +45150,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28706] = 3, + [27257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 12, + ACTIONS(1262), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46433,7 +45166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1272), 33, + ACTIONS(1264), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46467,10 +45200,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28759] = 3, + [27310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 12, + ACTIONS(1268), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46483,7 +45216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1324), 33, + ACTIONS(1266), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46517,12 +45250,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28812] = 3, + [27363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 12, + ACTIONS(1272), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46533,7 +45266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(840), 33, + ACTIONS(1270), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46567,10 +45300,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28865] = 3, + [27416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 12, + ACTIONS(1107), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46583,7 +45316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1328), 33, + ACTIONS(1109), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46617,12 +45350,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28918] = 3, + [27469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 12, - sym__dedent, + ACTIONS(1268), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46633,7 +45366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1254), 33, + ACTIONS(1266), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46667,10 +45400,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28971] = 3, + [27522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 12, + ACTIONS(814), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -46683,7 +45416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1270), 33, + ACTIONS(812), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46717,12 +45450,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29024] = 3, + [27575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 12, - sym__dedent, + ACTIONS(1204), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46733,7 +45466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1290), 33, + ACTIONS(1202), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46767,12 +45500,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29077] = 3, + [27628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1156), 12, - sym__dedent, + ACTIONS(1274), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46783,7 +45516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1154), 33, + ACTIONS(1276), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46817,12 +45550,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29130] = 3, + [27681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1280), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46833,7 +45566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1278), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46867,78 +45600,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29183] = 19, + [27734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(642), 1, - sym_identifier, - ACTIONS(644), 1, - anon_sym_LPAREN, - ACTIONS(654), 1, - anon_sym_LBRACK, - ACTIONS(656), 1, - anon_sym_await, - ACTIONS(1266), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(856), 1, - sym_pattern, - STATE(865), 1, - sym_primary_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(1336), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(729), 2, - sym_attribute, - sym_subscript, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(860), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(648), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(605), 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, - [29268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 12, - sym__dedent, + ACTIONS(1282), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46949,7 +45616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(840), 33, + ACTIONS(1284), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46983,12 +45650,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29321] = 3, + [27787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, - sym__dedent, + ACTIONS(1272), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46999,7 +45666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(1270), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47033,12 +45700,78 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29374] = 3, + [27840] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, - sym__dedent, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(636), 1, + sym_identifier, + ACTIONS(638), 1, + anon_sym_LPAREN, + ACTIONS(648), 1, + anon_sym_LBRACK, + ACTIONS(650), 1, + anon_sym_await, + ACTIONS(1288), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(834), 1, + sym_pattern, + STATE(843), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(1286), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(712), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(837), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(642), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(575), 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, + [27925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1176), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47049,7 +45782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1174), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47083,12 +45816,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29427] = 3, + [27978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1292), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47099,7 +45832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1348), 33, + ACTIONS(1290), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47133,10 +45866,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29480] = 3, + [28031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1296), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -47149,7 +45882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1334), 33, + ACTIONS(1294), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47183,10 +45916,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29533] = 3, + [28084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1300), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -47199,7 +45932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1350), 33, + ACTIONS(1298), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47233,12 +45966,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29586] = 3, + [28137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, + ACTIONS(1304), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47249,7 +45982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1342), 33, + ACTIONS(1302), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47283,10 +46016,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29639] = 3, + [28190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 12, + ACTIONS(828), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -47299,7 +46032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1338), 33, + ACTIONS(830), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47333,78 +46066,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29692] = 19, + [28243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(642), 1, - sym_identifier, - ACTIONS(644), 1, - anon_sym_LPAREN, - ACTIONS(654), 1, - anon_sym_LBRACK, - ACTIONS(656), 1, - anon_sym_await, - ACTIONS(1266), 1, - anon_sym_STAR, - STATE(586), 1, - sym_string, - STATE(856), 1, - sym_pattern, - STATE(865), 1, - sym_primary_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(1354), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(729), 2, - sym_attribute, - sym_subscript, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(860), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(295), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(648), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(605), 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, - [29777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1158), 12, - sym__dedent, + ACTIONS(1107), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47415,7 +46082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1160), 33, + ACTIONS(1109), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47449,10 +46116,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29830] = 3, + [28296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 12, + ACTIONS(1198), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -47465,7 +46132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1214), 33, + ACTIONS(1200), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47499,10 +46166,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29883] = 3, + [28349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 12, + ACTIONS(1101), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -47515,7 +46182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1308), 33, + ACTIONS(1099), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47549,12 +46216,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29936] = 3, + [28402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 12, - sym__dedent, + ACTIONS(1306), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47565,7 +46232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1356), 33, + ACTIONS(1308), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47599,12 +46266,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29989] = 3, + [28455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1196), 12, - sym__dedent, + ACTIONS(814), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47615,7 +46282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1198), 33, + ACTIONS(812), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47649,10 +46316,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30042] = 3, + [28508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 12, + ACTIONS(1206), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -47665,7 +46332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1360), 33, + ACTIONS(1208), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47699,12 +46366,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30095] = 3, + [28561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 12, + ACTIONS(1274), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47715,7 +46382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1304), 33, + ACTIONS(1276), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47749,12 +46416,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30148] = 3, + [28614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 12, + ACTIONS(1238), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47765,7 +46432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1300), 33, + ACTIONS(1240), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47799,112 +46466,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30201] = 3, + [28667] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 12, - sym__dedent, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, sym__string_start, + ACTIONS(636), 1, + sym_identifier, + ACTIONS(638), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(648), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(650), 1, + anon_sym_await, + ACTIONS(1288), 1, + anon_sym_STAR, + ACTIONS(1310), 1, + anon_sym_RPAREN, + STATE(569), 1, + sym_string, + STATE(843), 1, + sym_primary_expression, + STATE(1112), 1, + sym_pattern, + STATE(1380), 1, + sym__patterns, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1322), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(712), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(837), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [30254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1242), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1240), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(642), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [30307] = 3, + STATE(575), 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, + [28754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 12, - sym__dedent, + ACTIONS(1312), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47915,7 +46549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1364), 33, + ACTIONS(1314), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47949,12 +46583,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30360] = 3, + [28807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 12, - sym__dedent, + ACTIONS(1280), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47965,7 +46599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1368), 33, + ACTIONS(1278), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47999,12 +46633,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30413] = 3, + [28860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 12, - sym__dedent, + ACTIONS(1316), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48015,7 +46649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1372), 33, + ACTIONS(1318), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48049,12 +46683,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30466] = 3, + [28913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 12, - sym__dedent, + ACTIONS(1320), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48065,7 +46699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1318), 33, + ACTIONS(1322), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48099,12 +46733,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30519] = 3, + [28966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 12, - sym__dedent, + ACTIONS(1324), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48115,7 +46749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1202), 33, + ACTIONS(1326), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48149,12 +46783,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30572] = 3, + [29019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 12, - sym__dedent, + ACTIONS(1304), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48165,7 +46799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1206), 33, + ACTIONS(1302), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48199,10 +46833,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30625] = 3, + [29072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1208), 12, + ACTIONS(1254), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48215,7 +46849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1210), 33, + ACTIONS(1256), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48249,10 +46883,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30678] = 3, + [29125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 12, + ACTIONS(1330), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48265,7 +46899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1376), 33, + ACTIONS(1328), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48299,10 +46933,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30731] = 3, + [29178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1242), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48315,7 +46949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1218), 33, + ACTIONS(1244), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48349,10 +46983,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30784] = 3, + [29231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 12, + ACTIONS(1330), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48365,7 +46999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1360), 33, + ACTIONS(1328), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48399,12 +47033,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30837] = 3, + [29284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 12, - sym__dedent, + ACTIONS(1332), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48415,7 +47049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1314), 33, + ACTIONS(1334), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48449,12 +47083,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30890] = 3, + [29337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 12, - sym__dedent, + ACTIONS(1336), 12, sym__string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48465,7 +47099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1222), 33, + ACTIONS(1338), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48499,10 +47133,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30943] = 3, + [29390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 12, + ACTIONS(1340), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48515,7 +47149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1356), 33, + ACTIONS(1342), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48549,7 +47183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30996] = 3, + [29443] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 12, @@ -48565,7 +47199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1348), 33, + ACTIONS(1344), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48599,12 +47233,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31049] = 3, + [29496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 12, + ACTIONS(1350), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48615,7 +47249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1232), 33, + ACTIONS(1348), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48649,12 +47283,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31102] = 3, + [29549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 12, + ACTIONS(1340), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48665,7 +47299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1228), 33, + ACTIONS(1342), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48699,12 +47333,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31155] = 3, + [29602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 12, + ACTIONS(1336), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48715,7 +47349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1364), 33, + ACTIONS(1338), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48749,12 +47383,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31208] = 3, + [29655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 12, + ACTIONS(1324), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48765,7 +47399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1368), 33, + ACTIONS(1326), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48799,10 +47433,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31261] = 3, + [29708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 12, + ACTIONS(1332), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48815,7 +47449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1238), 33, + ACTIONS(1334), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48849,12 +47483,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31314] = 3, + [29761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 12, + ACTIONS(1320), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48865,7 +47499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1376), 33, + ACTIONS(1322), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48899,10 +47533,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31367] = 3, + [29814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 12, + ACTIONS(1350), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -48915,7 +47549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1372), 33, + ACTIONS(1348), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48949,10 +47583,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31420] = 3, + [29867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 12, + ACTIONS(1316), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -48965,7 +47599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1246), 33, + ACTIONS(1318), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48999,12 +47633,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31473] = 3, + [29920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 12, + ACTIONS(1312), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49015,7 +47649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1324), 33, + ACTIONS(1314), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49049,10 +47683,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31526] = 3, + [29973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 12, + ACTIONS(1246), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49065,7 +47699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1250), 33, + ACTIONS(1248), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49099,260 +47733,76 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31579] = 3, + [30026] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1224), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 12, - sym__dedent, + ACTIONS(299), 1, sym__string_start, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1258), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(636), 1, sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 12, - sym__dedent, - sym__string_start, + ACTIONS(638), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(648), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(650), 1, + anon_sym_await, + ACTIONS(1288), 1, + anon_sym_STAR, + STATE(569), 1, + sym_string, + STATE(834), 1, + sym_pattern, + STATE(843), 1, + sym_primary_expression, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(1278), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 12, - sym__dedent, - sym__string_start, - anon_sym_LPAREN, + ACTIONS(1352), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(712), 2, + sym_attribute, + sym_subscript, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1286), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(837), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(295), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [31791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 12, - sym__string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1328), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(642), 5, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [31844] = 3, + STATE(575), 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, + [30111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 12, + ACTIONS(1170), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49365,7 +47815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1294), 33, + ACTIONS(1172), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49399,12 +47849,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31897] = 3, + [30164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 12, + ACTIONS(1282), 12, + sym__dedent, sym__string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49415,7 +47865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1350), 33, + ACTIONS(1284), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49449,10 +47899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31950] = 3, + [30217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 12, + ACTIONS(1306), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49465,7 +47915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1298), 33, + ACTIONS(1308), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49499,10 +47949,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32003] = 3, + [30270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 12, + ACTIONS(1101), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49515,7 +47965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1262), 33, + ACTIONS(1099), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49549,10 +47999,410 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32056] = 3, + [30323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 12, + ACTIONS(1234), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1236), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1344), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1292), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1290), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1230), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1232), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1260), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1226), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1228), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1224), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1220), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 12, sym__dedent, sym__string_start, anon_sym_LPAREN, @@ -49565,7 +48415,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1282), 33, + ACTIONS(1252), 33, + anon_sym_import, + anon_sym_from, + anon_sym_STAR, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_match, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [30800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1296), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1294), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49599,10 +48499,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32109] = 3, + [30853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 12, + ACTIONS(1300), 12, sym__string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -49615,7 +48515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(818), 33, + ACTIONS(1298), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49649,42 +48549,42 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32162] = 19, + [30906] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, STATE(1186), 1, sym_pattern, - STATE(1479), 1, + STATE(1437), 1, sym_pattern_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -49693,13 +48593,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -49714,42 +48614,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32246] = 19, + [30990] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1256), 1, sym_pattern, - STATE(1425), 1, + STATE(1391), 1, sym_pattern_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -49758,13 +48658,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -49779,42 +48679,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32330] = 19, + [31074] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, - STATE(1190), 1, + STATE(1262), 1, sym_pattern, - STATE(1503), 1, + STATE(1476), 1, sym_pattern_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -49823,13 +48723,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -49844,42 +48744,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32414] = 19, + [31158] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, - STATE(1191), 1, + STATE(1213), 1, sym_pattern, - STATE(1500), 1, + STATE(1416), 1, sym_pattern_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -49888,13 +48788,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -49909,42 +48809,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32498] = 19, + [31242] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, - STATE(1224), 1, + STATE(1164), 1, sym_pattern, - STATE(1502), 1, + STATE(1388), 1, sym_pattern_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -49953,13 +48853,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -49974,42 +48874,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32582] = 19, + [31326] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, - STATE(1180), 1, + STATE(1241), 1, sym_pattern, - STATE(1387), 1, + STATE(1473), 1, sym_pattern_list, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -50018,13 +48918,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -50039,22 +48939,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32666] = 5, + [31410] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(299), 1, sym__string_start, - STATE(584), 2, + STATE(567), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1382), 6, + ACTIONS(1356), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 34, + ACTIONS(1354), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50089,40 +48989,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [32721] = 18, + [31465] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(856), 1, - sym_pattern, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, + STATE(1267), 1, + sym_pattern, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -50131,13 +49031,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -50152,22 +49052,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32802] = 5, + [31546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 1, + ACTIONS(1362), 1, sym__string_start, - STATE(584), 2, + STATE(567), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1386), 6, + ACTIONS(1360), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1384), 34, + ACTIONS(1358), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50202,40 +49102,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [32857] = 18, + [31601] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(642), 1, + ACTIONS(636), 1, sym_identifier, - ACTIONS(644), 1, + ACTIONS(638), 1, anon_sym_LPAREN, - ACTIONS(654), 1, + ACTIONS(648), 1, anon_sym_LBRACK, - ACTIONS(656), 1, + ACTIONS(650), 1, anon_sym_await, - ACTIONS(1266), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, - sym_primary_expression, - STATE(1271), 1, + STATE(834), 1, sym_pattern, + STATE(843), 1, + sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(729), 2, + STATE(712), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(860), 3, + STATE(837), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -50244,13 +49144,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(648), 5, + ACTIONS(642), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -50265,22 +49165,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32938] = 5, + [31682] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(299), 1, sym__string_start, - STATE(582), 2, + STATE(565), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1079), 6, + ACTIONS(1022), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 34, + ACTIONS(1017), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50315,36 +49215,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [32993] = 16, + [31737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(1367), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1365), 35, + sym__string_start, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(277), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(279), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [31786] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(1391), 1, + ACTIONS(1369), 1, sym_identifier, - ACTIONS(1397), 1, + ACTIONS(1375), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(843), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(749), 2, + STATE(734), 2, sym_attribute, sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1393), 3, + ACTIONS(1371), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -50353,13 +49299,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1395), 5, + ACTIONS(1373), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -50374,17 +49320,17 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33068] = 3, + [31861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 6, + ACTIONS(1379), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 35, + ACTIONS(1377), 35, sym__string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -50420,18 +49366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33117] = 3, + [31910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 6, + ACTIONS(1383), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1403), 35, - sym__string_start, + ACTIONS(1381), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50466,58 +49411,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33166] = 20, + [31958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1387), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1385), 34, anon_sym_DOT, - ACTIONS(1409), 1, anon_sym_LPAREN, - ACTIONS(1413), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [32006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, anon_sym_as, - ACTIONS(1421), 1, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [32054] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1389), 1, + anon_sym_DOT, + ACTIONS(1391), 1, + anon_sym_LPAREN, + ACTIONS(1395), 1, + anon_sym_as, + ACTIONS(1403), 1, anon_sym_PIPE, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1431), 1, + ACTIONS(1413), 1, anon_sym_not, - ACTIONS(1433), 1, + ACTIONS(1415), 1, anon_sym_AMP, - ACTIONS(1435), 1, + ACTIONS(1417), 1, anon_sym_CARET, - ACTIONS(1439), 1, + ACTIONS(1421), 1, anon_sym_is, - STATE(852), 1, + STATE(830), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1415), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 2, + ACTIONS(1399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1423), 2, + ACTIONS(1405), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1437), 2, + ACTIONS(1419), 2, anon_sym_LT, anon_sym_GT, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1429), 3, + ACTIONS(1411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1419), 6, + ACTIONS(1401), 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(1411), 10, + ACTIONS(1393), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -50528,17 +49563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [33248] = 3, + [32136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 6, + ACTIONS(1425), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1441), 34, + ACTIONS(1423), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50573,17 +49608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33296] = 3, + [32184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 6, + ACTIONS(1429), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 34, + ACTIONS(1427), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50618,17 +49653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33344] = 3, + [32232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 6, + ACTIONS(1433), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1449), 34, + ACTIONS(1431), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50663,17 +49698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33392] = 3, + [32280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 6, + ACTIONS(1437), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1453), 34, + ACTIONS(1435), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50708,17 +49743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33440] = 3, + [32328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 6, + ACTIONS(1441), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1453), 34, + ACTIONS(1439), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50753,17 +49788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33488] = 3, + [32376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 6, + ACTIONS(1445), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 34, + ACTIONS(1443), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50798,17 +49833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33536] = 3, + [32424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 6, + ACTIONS(1441), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 34, + ACTIONS(1439), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50843,17 +49878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33584] = 3, + [32472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 6, + ACTIONS(260), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 34, + ACTIONS(287), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50888,17 +49923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33632] = 3, + [32520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 6, + ACTIONS(1449), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1469), 34, + ACTIONS(1447), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50933,17 +49968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33680] = 3, + [32568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 6, + ACTIONS(1453), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1473), 34, + ACTIONS(1451), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -50978,17 +50013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33728] = 3, + [32616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 6, + ACTIONS(1457), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 34, + ACTIONS(1455), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51023,17 +50058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33776] = 3, + [32664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 6, + ACTIONS(1457), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 34, + ACTIONS(1455), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51068,17 +50103,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33824] = 3, + [32712] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 6, + ACTIONS(1389), 1, + anon_sym_DOT, + ACTIONS(1391), 1, + anon_sym_LPAREN, + ACTIONS(1395), 1, + anon_sym_EQ, + ACTIONS(1407), 1, + anon_sym_LBRACK, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1473), 1, + anon_sym_not, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1481), 1, + anon_sym_is, + STATE(829), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1479), 2, + anon_sym_LT, + anon_sym_GT, + STATE(601), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1463), 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(1393), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [32794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1485), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 34, + ACTIONS(1483), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51113,17 +50210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33872] = 3, + [32842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 6, + ACTIONS(1489), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(287), 34, + ACTIONS(1487), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51158,17 +50255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33920] = 3, + [32890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 6, + ACTIONS(1493), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 34, + ACTIONS(1491), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51203,17 +50300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [33968] = 3, + [32938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 6, + ACTIONS(1497), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1489), 34, + ACTIONS(1495), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51248,17 +50345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34016] = 3, + [32986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 6, + ACTIONS(1501), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 34, + ACTIONS(1499), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51293,17 +50390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34064] = 3, + [33034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 6, + ACTIONS(1505), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1493), 34, + ACTIONS(1503), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51338,17 +50435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34112] = 3, + [33082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 6, + ACTIONS(1509), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 34, + ACTIONS(1507), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51383,17 +50480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34160] = 3, + [33130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 6, + ACTIONS(1513), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 34, + ACTIONS(1511), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51428,17 +50525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34208] = 3, + [33178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 6, + ACTIONS(1517), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1505), 34, + ACTIONS(1515), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51473,17 +50570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34256] = 3, + [33226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 6, + ACTIONS(1449), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1509), 34, + ACTIONS(1447), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51518,17 +50615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34304] = 3, + [33274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 6, + ACTIONS(1433), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1513), 34, + ACTIONS(1431), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51563,17 +50660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34352] = 3, + [33322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 6, + ACTIONS(1521), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1489), 34, + ACTIONS(1519), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51608,17 +50705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34400] = 3, + [33370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 6, + ACTIONS(1525), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 34, + ACTIONS(1523), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51653,79 +50750,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34448] = 20, + [33418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1413), 1, - anon_sym_EQ, - ACTIONS(1425), 1, - anon_sym_LBRACK, - ACTIONS(1527), 1, - anon_sym_PIPE, - ACTIONS(1531), 1, - anon_sym_STAR_STAR, - ACTIONS(1535), 1, - anon_sym_not, - ACTIONS(1537), 1, - anon_sym_AMP, - ACTIONS(1539), 1, - anon_sym_CARET, - ACTIONS(1543), 1, - anon_sym_is, - STATE(851), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1521), 2, + ACTIONS(1529), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1523), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1527), 34, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1529), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1541), 2, - anon_sym_LT, - anon_sym_GT, - STATE(619), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1533), 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1525), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1411), 10, + anon_sym_is, + sym_type_conversion, + [33466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1533), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1531), 34, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, sym_type_conversion, - [34530] = 3, + [33514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 6, + ACTIONS(1537), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1545), 34, + ACTIONS(1535), 34, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -51760,44 +50885,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34578] = 3, + [33562] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 6, - anon_sym_as, + ACTIONS(1389), 1, + anon_sym_DOT, + ACTIONS(1391), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(601), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1541), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1539), 20, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -51805,41 +50939,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34626] = 3, + [33629] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 6, - anon_sym_as, + ACTIONS(1389), 1, + anon_sym_DOT, + ACTIONS(1391), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1459), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(601), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1541), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1553), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1539), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -51850,41 +50990,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34674] = 3, + [33690] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 6, - anon_sym_as, + ACTIONS(1389), 1, + anon_sym_DOT, + ACTIONS(1391), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1459), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(601), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1541), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1557), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1539), 23, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -51895,41 +51042,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34722] = 3, + [33753] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 6, - anon_sym_as, + ACTIONS(1389), 1, + anon_sym_DOT, + ACTIONS(1391), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_LBRACK, + ACTIONS(1409), 1, + anon_sym_STAR_STAR, + ACTIONS(1397), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(601), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1411), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1541), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1539), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -51939,36 +51093,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [34770] = 3, + [33814] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 6, - anon_sym_as, + ACTIONS(590), 1, + anon_sym_LPAREN, + ACTIONS(598), 1, + anon_sym_LBRACK, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + anon_sym_await, + ACTIONS(606), 1, + sym__string_start, + ACTIONS(1543), 1, + anon_sym_not, + STATE(708), 1, + sym_string, + STATE(727), 1, + sym_primary_expression, + ACTIONS(602), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(588), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(787), 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, + [33883] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1389), 1, + anon_sym_DOT, + ACTIONS(1391), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + STATE(601), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1541), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1557), 34, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1539), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -51985,44 +51197,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [34818] = 12, + [33940] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1415), 2, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 2, + ACTIONS(1461), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1423), 2, + ACTIONS(1467), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1429), 3, + ACTIONS(1471), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, - anon_sym_as, + ACTIONS(1541), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 21, + ACTIONS(1539), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACK, @@ -52030,158 +51245,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [34883] = 8, + sym_type_conversion, + [34009] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR_STAR, - STATE(619), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1567), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 28, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [34940] = 15, - ACTIONS(3), 1, - sym_comment, ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1425), 1, anon_sym_LBRACK, - ACTIONS(1527), 1, - anon_sym_PIPE, - ACTIONS(1531), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, - anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1417), 1, anon_sym_CARET, - ACTIONS(1521), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1523), 2, + ACTIONS(1399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1529), 2, + ACTIONS(1405), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1571), 3, - anon_sym_EQ, + ACTIONS(1541), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 18, + ACTIONS(1539), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35011] = 14, + [34076] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(576), 1, anon_sym_await, - ACTIONS(608), 1, + ACTIONS(1545), 1, + anon_sym_not, + STATE(569), 1, + sym_string, + STATE(620), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(568), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(575), 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, + [34145] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, sym__string_start, - ACTIONS(1573), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(586), 1, + anon_sym_await, + ACTIONS(1547), 1, anon_sym_not, - STATE(713), 1, + STATE(569), 1, sym_string, - STATE(743), 1, + STATE(621), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52198,92 +51416,99 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35080] = 8, + [34214] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - STATE(619), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1577), 5, + ACTIONS(1415), 1, + anon_sym_AMP, + ACTIONS(1417), 1, + anon_sym_CARET, + ACTIONS(1397), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1399), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1405), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(601), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1411), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1541), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1575), 28, + ACTIONS(1539), 19, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35137] = 12, + [34283] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1521), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1523), 2, + ACTIONS(1399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1529), 2, + ACTIONS(1405), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, - anon_sym_EQ, + ACTIONS(1541), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 21, + ACTIONS(1539), 21, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACK, @@ -52299,34 +51524,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35202] = 8, + [34348] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 5, + ACTIONS(1541), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1539), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -52348,48 +51573,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35259] = 10, + [34405] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1521), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, - anon_sym_EQ, + ACTIONS(1541), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 25, + ACTIONS(1539), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -52399,50 +51622,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35320] = 14, + [34462] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, + ACTIONS(1475), 1, anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1477), 1, anon_sym_CARET, - ACTIONS(1521), 2, + ACTIONS(1459), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1523), 2, + ACTIONS(1461), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1529), 2, + ACTIONS(1467), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1471), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, + ACTIONS(1551), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 19, + ACTIONS(1549), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, @@ -52455,49 +51678,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35389] = 15, + [34533] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, - anon_sym_LBRACK, - ACTIONS(1527), 1, + ACTIONS(1403), 1, anon_sym_PIPE, - ACTIONS(1531), 1, + ACTIONS(1407), 1, + anon_sym_LBRACK, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, + ACTIONS(1415), 1, anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1417), 1, anon_sym_CARET, - ACTIONS(1521), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1523), 2, + ACTIONS(1399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1529), 2, + ACTIONS(1405), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_EQ, + ACTIONS(1551), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 18, + ACTIONS(1549), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_RBRACK, anon_sym_RBRACE, @@ -52510,39 +51734,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [35460] = 11, + [34604] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1521), 2, + ACTIONS(1459), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1529), 2, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1471), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, + ACTIONS(1541), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 23, + ACTIONS(1539), 21, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, @@ -52555,7 +51780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -52563,48 +51787,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35523] = 8, + [34669] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - STATE(619), 2, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, + anon_sym_CARET, + ACTIONS(1459), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1461), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1467), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 5, - anon_sym_STAR, + ACTIONS(1471), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1555), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1553), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -52612,108 +51843,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35580] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(566), 1, - anon_sym_await, - ACTIONS(1583), 1, - anon_sym_not, - STATE(586), 1, - sym_string, - STATE(632), 1, - sym_primary_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(285), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(558), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(605), 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, - [35649] = 13, + [34740] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1465), 1, + anon_sym_PIPE, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1539), 1, + ACTIONS(1475), 1, + anon_sym_AMP, + ACTIONS(1477), 1, anon_sym_CARET, - ACTIONS(1521), 2, + ACTIONS(1459), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1523), 2, + ACTIONS(1461), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1529), 2, + ACTIONS(1467), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1471), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, + ACTIONS(1559), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 20, + ACTIONS(1557), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -52721,27 +51899,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35716] = 8, + [34811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1587), 5, + ACTIONS(1563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 28, + ACTIONS(1561), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -52770,185 +51948,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [35773] = 15, + [34868] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_PIPE, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1433), 1, - anon_sym_AMP, - ACTIONS(1435), 1, - anon_sym_CARET, - ACTIONS(1415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1417), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1429), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1571), 3, + ACTIONS(1567), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 18, + ACTIONS(1565), 28, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35844] = 15, + [34925] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1421), 1, + ACTIONS(1403), 1, anon_sym_PIPE, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1433), 1, + ACTIONS(1415), 1, anon_sym_AMP, - ACTIONS(1435), 1, + ACTIONS(1417), 1, anon_sym_CARET, - ACTIONS(1415), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 2, + ACTIONS(1399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1423), 2, + ACTIONS(1405), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1429), 3, + ACTIONS(1411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1591), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [35915] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1425), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR_STAR, - STATE(619), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1587), 5, + ACTIONS(1559), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 28, + ACTIONS(1557), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [35972] = 14, + [34996] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(563), 1, anon_sym_await, - ACTIONS(1593), 1, + ACTIONS(1569), 1, anon_sym_not, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(721), 1, + STATE(694), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -52963,13 +52085,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52986,137 +52108,27 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36041] = 15, + [35065] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, - anon_sym_LBRACK, - ACTIONS(1527), 1, - anon_sym_PIPE, - ACTIONS(1531), 1, - anon_sym_STAR_STAR, - ACTIONS(1537), 1, - anon_sym_AMP, - ACTIONS(1539), 1, - anon_sym_CARET, - ACTIONS(1521), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1523), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1529), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(619), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1533), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1591), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36112] = 13, - ACTIONS(3), 1, - sym_comment, ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1425), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR_STAR, - ACTIONS(1435), 1, - anon_sym_CARET, - ACTIONS(1415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1417), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(619), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1429), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36179] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 1, - anon_sym_DOT, ACTIONS(1409), 1, - anon_sym_LPAREN, - ACTIONS(1425), 1, - anon_sym_LBRACK, - ACTIONS(1427), 1, anon_sym_STAR_STAR, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 5, + ACTIONS(1563), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1561), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -53145,35 +52157,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36236] = 11, + [35122] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1415), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1423), 2, + ACTIONS(1405), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1429), 3, + ACTIONS(1411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, + ACTIONS(1541), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 23, + ACTIONS(1539), 23, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -53197,89 +52209,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36299] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, - anon_sym_await, - ACTIONS(1595), 1, - anon_sym_not, - STATE(586), 1, - sym_string, - STATE(648), 1, - sym_primary_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(582), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(558), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(605), 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, - [36368] = 8, + [35185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1577), 5, - anon_sym_as, + ACTIONS(1541), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1575), 28, + ACTIONS(1539), 28, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -53301,98 +52257,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36425] = 15, + sym_type_conversion, + [35242] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1421), 1, - anon_sym_PIPE, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1433), 1, - anon_sym_AMP, - ACTIONS(1435), 1, - anon_sym_CARET, - ACTIONS(1415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1417), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1429), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1581), 3, - anon_sym_as, + ACTIONS(1567), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 18, + ACTIONS(1565), 28, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36496] = 14, + sym_type_conversion, + [35299] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1403), 1, + anon_sym_PIPE, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, + ACTIONS(1409), 1, anon_sym_STAR_STAR, - ACTIONS(1433), 1, + ACTIONS(1415), 1, anon_sym_AMP, - ACTIONS(1435), 1, + ACTIONS(1417), 1, anon_sym_CARET, - ACTIONS(1415), 2, + ACTIONS(1397), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1417), 2, + ACTIONS(1399), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1423), 2, + ACTIONS(1405), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1429), 3, + ACTIONS(1411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, + ACTIONS(1555), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 19, + ACTIONS(1553), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -53400,7 +52352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, @@ -53412,138 +52363,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [36565] = 10, + [35370] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(1427), 1, - anon_sym_STAR_STAR, - ACTIONS(1415), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(619), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1429), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1567), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 25, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [36626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1090), 1, - anon_sym_COLON_EQ, - ACTIONS(1079), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 31, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + anon_sym_await, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, + sym_string, + STATE(727), 1, + sym_primary_expression, + ACTIONS(602), 2, + sym_ellipsis, + sym_float, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [36674] = 13, + anon_sym_TILDE, + ACTIONS(588), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(592), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(787), 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, + [35436] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(578), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(586), 1, + ACTIONS(563), 1, anon_sym_await, - STATE(586), 1, + STATE(693), 1, sym_string, - STATE(649), 1, + STATE(694), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53560,43 +52469,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36740] = 13, + [35502] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(563), 1, anon_sym_await, - ACTIONS(608), 1, - sym__string_start, - STATE(713), 1, + STATE(693), 1, sym_string, - STATE(748), 1, + STATE(700), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53613,22 +52522,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36806] = 13, + [35568] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(563), 1, anon_sym_await, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(711), 1, + STATE(698), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -53643,13 +52552,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53666,43 +52575,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36872] = 13, + [35634] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(563), 1, anon_sym_await, - ACTIONS(608), 1, - sym__string_start, - STATE(713), 1, + STATE(693), 1, sym_string, - STATE(746), 1, + STATE(701), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53719,43 +52628,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36938] = 13, + [35700] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(563), 1, anon_sym_await, - ACTIONS(608), 1, - sym__string_start, - STATE(713), 1, + STATE(693), 1, sym_string, - STATE(745), 1, + STATE(697), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53772,7 +52681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37004] = 13, + [35766] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(262), 1, @@ -53783,36 +52692,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(566), 1, + ACTIONS(1571), 1, + sym_identifier, + ACTIONS(1575), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(642), 1, + STATE(843), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, + STATE(835), 2, + sym_attribute, + sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(295), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(1573), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -53825,43 +52736,87 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37070] = 13, + [35836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(570), 1, + anon_sym_COLON_EQ, + ACTIONS(260), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 31, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(600), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(602), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [35884] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(606), 1, - anon_sym_await, - ACTIONS(608), 1, + ACTIONS(81), 1, sym__string_start, - STATE(713), 1, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(561), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_await, + STATE(693), 1, sym_string, - STATE(742), 1, + STATE(702), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53878,43 +52833,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37136] = 13, + [35950] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(563), 1, anon_sym_await, - ACTIONS(608), 1, - sym__string_start, - STATE(713), 1, + STATE(693), 1, sym_string, - STATE(752), 1, + STATE(703), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53931,7 +52886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37202] = 13, + [36016] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(262), 1, @@ -53942,11 +52897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(566), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(625), 1, + STATE(611), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, @@ -53961,13 +52916,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53984,43 +52939,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37268] = 13, + [36082] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(606), 1, - anon_sym_await, - ACTIONS(608), 1, + ACTIONS(299), 1, sym__string_start, - STATE(713), 1, + ACTIONS(576), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(751), 1, + STATE(608), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54037,43 +52992,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37334] = 13, + [36148] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(606), 1, - anon_sym_await, - ACTIONS(608), 1, + ACTIONS(299), 1, sym__string_start, - STATE(713), 1, + ACTIONS(576), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(743), 1, + STATE(620), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54090,27 +53045,27 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37400] = 13, + [36214] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(647), 1, + STATE(612), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54120,13 +53075,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54143,43 +53098,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37466] = 13, + [36280] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(277), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(606), 1, - anon_sym_await, - ACTIONS(608), 1, + ACTIONS(299), 1, sym__string_start, - STATE(713), 1, + ACTIONS(576), 1, + anon_sym_await, + STATE(569), 1, sym_string, - STATE(728), 1, + STATE(607), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54196,43 +53151,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37532] = 13, + [36346] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(563), 1, anon_sym_await, - ACTIONS(608), 1, - sym__string_start, - STATE(713), 1, + STATE(693), 1, sym_string, - STATE(731), 1, + STATE(704), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54249,27 +53204,27 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37598] = 13, + [36412] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(623), 1, + STATE(631), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54279,13 +53234,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54302,27 +53257,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37664] = 13, + [36478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1093), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1088), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [36524] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(643), 1, + STATE(606), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54332,13 +53330,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54355,20 +53353,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37730] = 5, + [36590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, - sym__string_start, - STATE(674), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1382), 4, + ACTIONS(1136), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 31, + ACTIONS(1131), 33, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54377,6 +53371,7 @@ 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_PIPE, anon_sym_DASH, @@ -54400,27 +53395,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [37780] = 13, + sym_type_conversion, + [36636] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(644), 1, + STATE(622), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54430,13 +53426,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54453,49 +53449,47 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37846] = 15, + [36702] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(1597), 1, - sym_identifier, - ACTIONS(1601), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(586), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(865), 1, + STATE(629), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - STATE(862), 2, - sym_attribute, - sym_subscript, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(295), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1599), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(575), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54508,43 +53502,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37916] = 13, + [36768] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(584), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(586), 1, + ACTIONS(600), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(650), 1, + STATE(711), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54561,87 +53555,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37982] = 4, + [36834] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(560), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(287), 31, - anon_sym_DOT, + ACTIONS(590), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(598), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38030] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(566), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(628), 1, + STATE(735), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54658,20 +53608,20 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38096] = 5, + [36900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1603), 1, + ACTIONS(606), 1, sym__string_start, - STATE(674), 2, + STATE(683), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1386), 4, + ACTIONS(1356), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1384), 31, + ACTIONS(1354), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -54703,49 +53653,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [38146] = 15, + [36950] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(1391), 1, - sym_identifier, - ACTIONS(1397), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(865), 1, + STATE(710), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - STATE(749), 2, - sym_attribute, - sym_subscript, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 4, + ACTIONS(588), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(1395), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 14, + STATE(787), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -54758,43 +53706,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38216] = 13, + [37016] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(566), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(636), 1, + STATE(731), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54811,43 +53759,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38282] = 13, + [37082] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(604), 1, anon_sym_await, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - STATE(713), 1, + STATE(708), 1, sym_string, - STATE(739), 1, + STATE(730), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54864,27 +53812,27 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38348] = 13, + [37148] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - anon_sym_LPAREN, - ACTIONS(277), 1, - anon_sym_LBRACK, ACTIONS(279), 1, anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(566), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(584), 1, + anon_sym_LBRACK, + ACTIONS(586), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(629), 1, + STATE(633), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -54894,13 +53842,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54917,43 +53865,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38414] = 13, + [37214] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(566), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(630), 1, + STATE(729), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54970,43 +53918,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38480] = 13, + [37280] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(566), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(627), 1, + STATE(728), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55023,43 +53971,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38546] = 13, + [37346] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(566), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(632), 1, + STATE(726), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55076,43 +54024,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38612] = 13, + [37412] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(590), 1, anon_sym_LPAREN, - ACTIONS(277), 1, + ACTIONS(598), 1, anon_sym_LBRACK, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(566), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(633), 1, + STATE(725), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(285), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55129,7 +54077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38678] = 13, + [37478] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(262), 1, @@ -55140,36 +54088,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(566), 1, + ACTIONS(1369), 1, + sym_identifier, + ACTIONS(1375), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(634), 1, + STATE(843), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, sym_float, + STATE(734), 2, + sym_attribute, + sym_subscript, ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(295), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(1373), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -55182,7 +54132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38744] = 13, + [37548] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -55195,9 +54145,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(586), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(648), 1, + STATE(627), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, @@ -55212,13 +54162,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55235,7 +54185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38810] = 13, + [37614] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -55248,9 +54198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(586), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(645), 1, + STATE(617), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, @@ -55265,13 +54215,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55288,43 +54238,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38876] = 13, + [37680] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(600), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(606), 1, + ACTIONS(586), 1, anon_sym_await, - ACTIONS(608), 1, - sym__string_start, - STATE(713), 1, + STATE(569), 1, sym_string, - STATE(738), 1, + STATE(613), 1, sym_primary_expression, - ACTIONS(604), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(598), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(590), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(594), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(827), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55341,7 +54291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38942] = 13, + [37746] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(262), 1, @@ -55352,11 +54302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(299), 1, sym__string_start, - ACTIONS(566), 1, + ACTIONS(576), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(631), 1, + STATE(623), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, @@ -55371,13 +54321,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55394,7 +54344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39008] = 13, + [37812] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(279), 1, @@ -55407,9 +54357,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(586), 1, anon_sym_await, - STATE(586), 1, + STATE(569), 1, sym_string, - STATE(624), 1, + STATE(619), 1, sym_primary_expression, ACTIONS(293), 2, sym_ellipsis, @@ -55424,13 +54374,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55447,43 +54397,184 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39074] = 13, + [37878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1577), 1, + anon_sym_COLON_EQ, + ACTIONS(1022), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [37926] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(277), 1, + anon_sym_LBRACK, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(576), 1, + anon_sym_await, + STATE(569), 1, + sym_string, + STATE(624), 1, + sym_primary_expression, + ACTIONS(293), 2, + sym_ellipsis, + sym_float, + ACTIONS(285), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(295), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(568), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(575), 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, + [37992] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(260), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [38040] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_await, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(724), 1, + STATE(609), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55500,43 +54591,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39140] = 13, + [38106] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_await, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(712), 1, + STATE(616), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55553,43 +54644,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39206] = 13, + [38172] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, + ACTIONS(262), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(277), 1, anon_sym_LBRACK, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(299), 1, + sym__string_start, ACTIONS(576), 1, anon_sym_await, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(718), 1, + STATE(625), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(285), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55606,87 +54697,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39272] = 4, + [38238] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1606), 1, - anon_sym_COLON_EQ, - ACTIONS(1079), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 31, - anon_sym_DOT, + ACTIONS(590), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(598), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [39320] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(279), 1, + ACTIONS(600), 1, anon_sym_LBRACE, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, + ACTIONS(604), 1, anon_sym_await, - STATE(586), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(708), 1, sym_string, - STATE(638), 1, + STATE(715), 1, sym_primary_expression, - ACTIONS(293), 2, + ACTIONS(602), 2, sym_ellipsis, sym_float, - ACTIONS(582), 3, + ACTIONS(596), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(295), 5, + ACTIONS(588), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(558), 5, + ACTIONS(592), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(605), 16, + STATE(787), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55703,43 +54750,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39386] = 13, + [38304] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_await, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(717), 1, + STATE(621), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55756,43 +54803,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39452] = 13, + [38370] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_await, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(721), 1, + STATE(630), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55809,43 +54856,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39518] = 13, + [38436] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(299), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(584), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(586), 1, anon_sym_await, - STATE(709), 1, + STATE(569), 1, sym_string, - STATE(723), 1, + STATE(618), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(293), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(582), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(295), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(568), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(575), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55862,22 +54909,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39584] = 13, + [38502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 1, + sym__string_start, + STATE(683), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1360), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1358), 31, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [38552] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(563), 1, anon_sym_await, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(719), 1, + STATE(706), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -55892,13 +54984,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55915,24 +55007,25 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39650] = 3, + [38618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 5, + ACTIONS(1024), 1, + anon_sym_COLON_EQ, + ACTIONS(1022), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1143), 33, + ACTIONS(1017), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_PIPE, @@ -55958,22 +55051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym_type_conversion, - [39696] = 13, + [38666] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(563), 1, anon_sym_await, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(722), 1, + STATE(707), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -55988,13 +55081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56011,22 +55104,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39762] = 13, + [38732] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym__string_start, - ACTIONS(568), 1, + ACTIONS(555), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(561), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(563), 1, anon_sym_await, - STATE(709), 1, + STATE(693), 1, sym_string, - STATE(716), 1, + STATE(699), 1, sym_primary_expression, ACTIONS(75), 2, sym_ellipsis, @@ -56041,13 +55134,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(557), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(759), 16, + STATE(764), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56064,25 +55157,25 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39828] = 3, + [38798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 5, + ACTIONS(1136), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1108), 33, + ACTIONS(1131), 32, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -56106,79 +55199,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39874] = 13, + [38843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__string_start, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(709), 1, - sym_string, - STATE(714), 1, - sym_primary_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(759), 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, - [39940] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(580), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 6, + ACTIONS(1093), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(287), 31, + ACTIONS(1088), 32, 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, @@ -56204,85 +55241,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39988] = 13, + [38888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(299), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(584), 1, - anon_sym_LBRACK, - ACTIONS(586), 1, - anon_sym_await, - STATE(586), 1, + STATE(691), 2, sym_string, - STATE(639), 1, - sym_primary_expression, - ACTIONS(293), 2, - sym_ellipsis, - sym_float, - ACTIONS(582), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(295), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(558), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(605), 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, - [40054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1148), 5, - anon_sym_as, + aux_sym_concatenated_string_repeat1, + ACTIONS(1356), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1143), 32, + ACTIONS(1354), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -56299,32 +55284,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40099] = 3, + sym__semicolon, + [38937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 5, - anon_sym_as, + ACTIONS(1582), 1, + sym__string_start, + STATE(691), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1360), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1108), 32, + ACTIONS(1358), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -56341,58 +55328,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40144] = 20, + sym__semicolon, + [38986] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1395), 1, anon_sym_EQ, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - ACTIONS(1628), 1, + ACTIONS(1605), 1, anon_sym_not, - ACTIONS(1630), 1, + ACTIONS(1607), 1, anon_sym_AMP, - ACTIONS(1632), 1, + ACTIONS(1609), 1, anon_sym_CARET, - ACTIONS(1636), 1, + ACTIONS(1613), 1, anon_sym_is, - STATE(857), 1, + STATE(833), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1612), 2, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 2, + ACTIONS(1591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1620), 2, + ACTIONS(1597), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1634), 2, + ACTIONS(1611), 2, anon_sym_LT, anon_sym_GT, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1626), 3, + ACTIONS(1603), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1616), 6, + ACTIONS(1593), 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(1411), 7, + ACTIONS(1393), 7, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -56400,21 +55388,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [40223] = 5, + [39065] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1638), 1, + ACTIONS(81), 1, sym__string_start, - STATE(708), 2, + STATE(690), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1386), 5, + ACTIONS(1022), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1384), 29, + ACTIONS(1017), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -56444,33 +55432,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40272] = 5, + [39114] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(710), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1079), 5, + ACTIONS(1585), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_STAR_STAR, + ACTIONS(1607), 1, + anon_sym_AMP, + ACTIONS(1609), 1, + anon_sym_CARET, + ACTIONS(1589), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1597), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(768), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1551), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 29, + ACTIONS(1603), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1549), 15, sym__newline, - anon_sym_DOT, anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [39182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1377), 32, + sym__string_start, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -56487,34 +55526,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40321] = 5, + [39226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(708), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1382), 5, + ACTIONS(1367), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 29, - sym__newline, + ACTIONS(1365), 32, + sym__string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -56531,53 +55567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40370] = 15, + [39270] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_PIPE, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - ACTIONS(1630), 1, - anon_sym_AMP, - ACTIONS(1632), 1, - anon_sym_CARET, - ACTIONS(1612), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1614), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1620), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1591), 3, + ACTIONS(1541), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1589), 15, + ACTIONS(1539), 25, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56585,93 +55613,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40438] = 15, + [39324] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, - anon_sym_PIPE, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - ACTIONS(1630), 1, - anon_sym_AMP, - ACTIONS(1632), 1, - anon_sym_CARET, - ACTIONS(1612), 2, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1620), 2, + ACTIONS(1597), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1571), 3, + ACTIONS(1541), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, + ACTIONS(1603), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1569), 15, + ACTIONS(1539), 20, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [40506] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(608), 1, - sym__string_start, - STATE(668), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1079), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -56681,49 +55661,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40554] = 12, + sym__semicolon, + [39384] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - ACTIONS(1612), 2, + ACTIONS(1607), 1, + anon_sym_AMP, + ACTIONS(1609), 1, + anon_sym_CARET, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 2, + ACTIONS(1591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1620), 2, + ACTIONS(1597), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 3, + ACTIONS(1559), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, + ACTIONS(1603), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 18, + ACTIONS(1557), 15, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56731,81 +55715,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40616] = 3, + [39452] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1403), 32, - sym__string_start, + ACTIONS(1585), 1, anon_sym_DOT, + ACTIONS(1587), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1599), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1607), 1, anon_sym_AMP, + ACTIONS(1609), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40660] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1608), 1, - anon_sym_DOT, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_STAR_STAR, - ACTIONS(1632), 1, - anon_sym_CARET, - ACTIONS(1612), 2, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 2, + ACTIONS(1591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1620), 2, + ACTIONS(1597), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 3, + ACTIONS(1541), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, + ACTIONS(1603), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 17, + ACTIONS(1539), 16, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -56815,7 +55760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56823,35 +55767,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40724] = 11, + [39518] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - ACTIONS(1612), 2, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1620), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 3, + ACTIONS(1541), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, + ACTIONS(1603), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 20, + ACTIONS(1539), 22, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -56859,6 +55800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -56872,27 +55815,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40784] = 8, + [39576] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 5, + ACTIONS(1541), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 25, + ACTIONS(1539), 25, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -56918,47 +55861,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40838] = 10, + [39630] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - ACTIONS(1612), 2, + ACTIONS(1609), 1, + anon_sym_CARET, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(777), 2, + ACTIONS(1591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1597), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 3, + ACTIONS(1541), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, + ACTIONS(1603), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 22, + ACTIONS(1539), 17, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -56966,121 +55912,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [40896] = 3, + [39694] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 4, + ACTIONS(1585), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + anon_sym_LPAREN, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(1601), 1, + anon_sym_STAR_STAR, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1597), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(768), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1541), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 32, - sym__string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1603), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1539), 18, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40940] = 15, + sym__semicolon, + [39756] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1618), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - ACTIONS(1622), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1630), 1, + ACTIONS(1635), 1, + anon_sym_not, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1632), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1612), 2, + ACTIONS(1643), 1, + anon_sym_is, + STATE(841), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 2, + ACTIONS(1621), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1620), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(777), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1581), 3, - anon_sym_EQ, + ACTIONS(1641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, + STATE(789), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(1623), 6, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41008] = 8, + ACTIONS(1393), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [39832] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 5, + ACTIONS(1563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 25, + ACTIONS(1561), 25, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57106,48 +56065,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41062] = 14, + [39886] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - ACTIONS(1630), 1, + ACTIONS(1607), 1, anon_sym_AMP, - ACTIONS(1632), 1, + ACTIONS(1609), 1, anon_sym_CARET, - ACTIONS(1612), 2, + ACTIONS(1589), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 2, + ACTIONS(1591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1620), 2, + ACTIONS(1597), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1567), 3, + ACTIONS(1555), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1626), 3, + ACTIONS(1603), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 16, + ACTIONS(1553), 15, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -57158,36 +56118,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41128] = 8, + [39954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, - anon_sym_DOT, - ACTIONS(1610), 1, - anon_sym_LPAREN, - ACTIONS(1622), 1, - anon_sym_LBRACK, - ACTIONS(1624), 1, - anon_sym_STAR_STAR, - STATE(777), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1577), 5, + ACTIONS(606), 1, + sym__string_start, + STATE(658), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1022), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1575), 25, - sym__newline, - anon_sym_from, + ACTIONS(1017), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57203,28 +56161,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41182] = 8, + [40002] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1608), 1, + ACTIONS(1585), 1, anon_sym_DOT, - ACTIONS(1610), 1, + ACTIONS(1587), 1, anon_sym_LPAREN, - ACTIONS(1622), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1601), 1, anon_sym_STAR_STAR, - STATE(777), 2, + STATE(768), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1587), 5, + ACTIONS(1567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 25, + ACTIONS(1565), 25, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -57250,161 +56207,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41236] = 19, + [40056] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_PIPE, - ACTIONS(1655), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, - anon_sym_not, - ACTIONS(1663), 1, - anon_sym_AMP, - ACTIONS(1665), 1, - anon_sym_CARET, - ACTIONS(1669), 1, - anon_sym_is, - STATE(864), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1645), 2, + ACTIONS(1541), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 2, + ACTIONS(1621), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1653), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1667), 2, - anon_sym_LT, - anon_sym_GT, - STATE(801), 2, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1659), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1649), 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(1411), 7, + ACTIONS(1539), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [41312] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1606), 1, - anon_sym_COLON_EQ, - ACTIONS(1671), 1, - anon_sym_EQ, - ACTIONS(1079), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41359] = 11, + [40117] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1567), 2, + ACTIONS(1637), 1, + anon_sym_AMP, + ACTIONS(1639), 1, + anon_sym_CARET, + ACTIONS(1559), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1653), 2, + ACTIONS(1621), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(801), 2, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1659), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 20, + ACTIONS(1557), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41418] = 4, + [40184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 3, + ACTIONS(1017), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1079), 13, + ACTIONS(1022), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -57418,7 +56329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1085), 19, + ACTIONS(1063), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -57438,14 +56349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [41463] = 4, + [40229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(287), 3, + ACTIONS(1088), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(260), 13, + ACTIONS(1093), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -57459,7 +56370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(564), 19, + ACTIONS(1095), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -57479,36 +56390,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [41508] = 8, + [40274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, - anon_sym_DOT, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(1655), 1, - anon_sym_LBRACK, - ACTIONS(1657), 1, - anon_sym_STAR_STAR, - STATE(801), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1567), 4, + ACTIONS(1059), 1, + anon_sym_COLON_EQ, + ACTIONS(1022), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 25, - anon_sym_RPAREN, + ACTIONS(1017), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57524,30 +56430,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41561] = 3, + sym__semicolon, + [40319] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1401), 5, + ACTIONS(1615), 1, + anon_sym_DOT, + ACTIONS(1617), 1, + anon_sym_LPAREN, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + STATE(789), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1563), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1399), 30, - sym__newline, - sym__string_start, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(1561), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -57563,20 +56476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41604] = 4, + [40372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 5, + ACTIONS(1367), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(287), 29, + ACTIONS(1365), 30, sym__newline, + sym__string_start, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, @@ -57605,14 +56516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41649] = 4, + [40415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1108), 3, + ACTIONS(1131), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1113), 13, + ACTIONS(1136), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -57626,7 +56537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1115), 19, + ACTIONS(1138), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -57646,16 +56557,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [41694] = 3, + [40460] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + anon_sym_DOT, + ACTIONS(1617), 1, + anon_sym_LPAREN, + ACTIONS(1629), 1, + anon_sym_LBRACK, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + STATE(789), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1567), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 5, + ACTIONS(1379), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1403), 30, + ACTIONS(1377), 30, sym__newline, sym__string_start, anon_sym_DOT, @@ -57686,7 +56642,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [41737] = 4, + [40556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1577), 1, + anon_sym_COLON_EQ, + ACTIONS(1056), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1022), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40603] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(287), 3, @@ -57707,7 +56705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(291), 19, + ACTIONS(574), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -57727,7 +56725,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [41782] = 5, + [40648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1577), 1, + anon_sym_COLON_EQ, + ACTIONS(1645), 1, + anon_sym_EQ, + ACTIONS(1022), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [40695] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(580), 1, @@ -57769,122 +56809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41829] = 15, + [40742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, - anon_sym_DOT, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_PIPE, - ACTIONS(1655), 1, - anon_sym_LBRACK, - ACTIONS(1657), 1, - anon_sym_STAR_STAR, - ACTIONS(1663), 1, - anon_sym_AMP, - ACTIONS(1665), 1, - anon_sym_CARET, - ACTIONS(1571), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1647), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1653), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(801), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1659), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1569), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41896] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 1, - anon_sym_DOT, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_PIPE, - ACTIONS(1655), 1, - anon_sym_LBRACK, - ACTIONS(1657), 1, - anon_sym_STAR_STAR, - ACTIONS(1663), 1, - anon_sym_AMP, - ACTIONS(1665), 1, - anon_sym_CARET, - ACTIONS(1591), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1647), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1653), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(801), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1659), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1589), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [41963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1081), 1, + ACTIONS(271), 1, anon_sym_COLON_EQ, - ACTIONS(1079), 5, + ACTIONS(260), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 29, + ACTIONS(287), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -57914,26 +56850,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42008] = 8, + [40787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - STATE(801), 2, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1587), 4, + ACTIONS(1541), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 25, + ACTIONS(1539), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -57959,26 +56895,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42061] = 8, + [40840] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - STATE(801), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1567), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1541), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 25, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(789), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1633), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1539), 20, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -57987,14 +56931,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -58004,43 +56943,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42114] = 15, + [40899] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1651), 1, + ACTIONS(1625), 1, anon_sym_PIPE, - ACTIONS(1655), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1663), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1665), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1581), 2, + ACTIONS(1551), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 2, + ACTIONS(1621), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1653), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(801), 2, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1659), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1579), 15, + ACTIONS(1549), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -58056,81 +56995,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42181] = 5, + [40966] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(580), 1, - anon_sym_COLON_EQ, - ACTIONS(588), 1, - anon_sym_EQ, - ACTIONS(260), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(287), 29, + ACTIONS(1615), 1, anon_sym_DOT, + ACTIONS(1617), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1629), 1, anon_sym_LBRACK, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1637), 1, anon_sym_AMP, + ACTIONS(1639), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42228] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 1, - anon_sym_DOT, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(1655), 1, - anon_sym_LBRACK, - ACTIONS(1657), 1, - anon_sym_STAR_STAR, - ACTIONS(1665), 1, - anon_sym_CARET, - ACTIONS(1567), 2, + ACTIONS(1541), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 2, + ACTIONS(1621), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1653), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(801), 2, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1659), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 17, + ACTIONS(1539), 16, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -58141,133 +57040,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42291] = 12, + [41031] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1567), 2, + ACTIONS(1541), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1653), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(801), 2, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1659), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 18, + ACTIONS(1539), 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_PIPE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42352] = 4, + [41088] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 3, + ACTIONS(1615), 1, anon_sym_DOT, + ACTIONS(1617), 1, anon_sym_LPAREN, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1148), 13, + ACTIONS(1631), 1, + anon_sym_STAR_STAR, + STATE(789), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1541), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1539), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1150), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [42397] = 8, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41141] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - STATE(801), 2, + ACTIONS(1639), 1, + anon_sym_CARET, + ACTIONS(1541), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1621), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1627), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1577), 4, + ACTIONS(1633), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1539), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(608), 1, + anon_sym_EQ, + ACTIONS(260), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1575), 25, + ACTIONS(287), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58283,14 +57230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42450] = 4, + [41251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 3, + ACTIONS(287), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1079), 13, + ACTIONS(260), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_PIPE, @@ -58304,7 +57251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1094), 19, + ACTIONS(291), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -58324,90 +57271,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [42495] = 5, + [41296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1606), 1, - anon_sym_COLON_EQ, - ACTIONS(1076), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1079), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 27, + ACTIONS(1017), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1022), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_LBRACK, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [42542] = 14, + ACTIONS(1028), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41341] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1615), 1, anon_sym_DOT, - ACTIONS(1643), 1, + ACTIONS(1617), 1, anon_sym_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1625), 1, + anon_sym_PIPE, + ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1657), 1, + ACTIONS(1631), 1, anon_sym_STAR_STAR, - ACTIONS(1663), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1665), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1567), 2, + ACTIONS(1555), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1645), 2, + ACTIONS(1619), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1647), 2, + ACTIONS(1621), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1653), 2, + ACTIONS(1627), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(801), 2, + STATE(789), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1659), 3, + ACTIONS(1633), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1565), 16, + ACTIONS(1553), 15, 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, @@ -58417,44 +57364,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42607] = 10, + [41408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, - anon_sym_DOT, - ACTIONS(1643), 1, - anon_sym_LPAREN, - ACTIONS(1655), 1, - anon_sym_LBRACK, - ACTIONS(1657), 1, - anon_sym_STAR_STAR, - ACTIONS(1567), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1645), 2, + ACTIONS(1457), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(801), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1659), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1565), 22, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -58464,16 +57402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42664] = 3, + sym__semicolon, + [41450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 5, + ACTIONS(1136), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, + ACTIONS(1131), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58503,16 +57442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42706] = 3, + [41492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 5, + ACTIONS(1433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1108), 29, + ACTIONS(1431), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58542,16 +57481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42748] = 3, + [41534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 5, + ACTIONS(1437), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1441), 29, + ACTIONS(1435), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58581,16 +57520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42790] = 3, + [41576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 5, + ACTIONS(1493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, + ACTIONS(1491), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58620,16 +57559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42832] = 3, + [41618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 5, + ACTIONS(1433), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 29, + ACTIONS(1431), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58659,16 +57598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42874] = 3, + [41660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 5, + ACTIONS(1517), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1453), 29, + ACTIONS(1515), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58698,16 +57637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42916] = 3, + [41702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 5, + ACTIONS(1525), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 29, + ACTIONS(1523), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58737,16 +57676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [42958] = 3, + [41744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 5, + ACTIONS(1505), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 29, + ACTIONS(1503), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58776,16 +57715,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43000] = 3, + [41786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 5, + ACTIONS(1647), 1, + anon_sym_COLON_EQ, + ACTIONS(1022), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1093), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1088), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [41874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 29, + ACTIONS(287), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58815,16 +57834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43042] = 3, + [41916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 5, + ACTIONS(1453), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1489), 29, + ACTIONS(1451), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58854,16 +57873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43084] = 3, + [41958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 5, + ACTIONS(1485), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1545), 29, + ACTIONS(1483), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58893,16 +57912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43126] = 3, + [42000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 5, + ACTIONS(1425), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(1423), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -58932,19 +57951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43168] = 4, + [42042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1076), 3, + ACTIONS(1133), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1079), 4, + ACTIONS(1136), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 27, + ACTIONS(1131), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -58972,16 +57991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43212] = 3, + [42086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 5, + ACTIONS(1429), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1557), 29, + ACTIONS(1427), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59011,16 +58030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43254] = 3, + [42128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 5, + ACTIONS(1501), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1517), 29, + ACTIONS(1499), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59050,16 +58069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43296] = 3, + [42170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 5, + ACTIONS(1441), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1489), 29, + ACTIONS(1439), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59089,23 +58108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43338] = 4, + [42212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 1, - anon_sym_COLON_EQ, - ACTIONS(1079), 5, + ACTIONS(1489), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1074), 28, + ACTIONS(1487), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -59129,23 +58146,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43382] = 4, + sym__semicolon, + [42254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(596), 1, - anon_sym_COLON_EQ, - ACTIONS(260), 5, + ACTIONS(1093), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(287), 28, + ACTIONS(1088), 29, + sym__newline, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -59169,16 +58185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43426] = 3, + sym__semicolon, + [42296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 5, + ACTIONS(1449), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 29, + ACTIONS(1447), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59208,16 +58225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43468] = 3, + [42338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 5, + ACTIONS(1383), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1557), 29, + ACTIONS(1381), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59247,16 +58264,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43510] = 3, + [42380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 5, + ACTIONS(594), 1, + anon_sym_COLON_EQ, + ACTIONS(260), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [42424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1509), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1509), 29, + ACTIONS(1507), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59286,16 +58343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43552] = 3, + [42466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 5, + ACTIONS(1387), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1513), 29, + ACTIONS(1385), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59325,16 +58382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43594] = 3, + [42508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 5, + ACTIONS(1513), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1505), 29, + ACTIONS(1511), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59364,16 +58421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43636] = 3, + [42550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 5, + ACTIONS(1529), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1469), 29, + ACTIONS(1527), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59403,16 +58460,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43678] = 3, + [42592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1017), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym__semicolon, + [42634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 5, + ACTIONS(1449), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1553), 29, + ACTIONS(1447), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59442,16 +58538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43720] = 3, + [42676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 5, + ACTIONS(1537), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 29, + ACTIONS(1535), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59481,16 +58577,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43762] = 3, + [42718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 5, + ACTIONS(1533), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1473), 29, + ACTIONS(1531), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59520,16 +58616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43804] = 3, + [42760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 5, + ACTIONS(1521), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, + ACTIONS(1519), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59559,16 +58655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43846] = 3, + [42802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 5, + ACTIONS(1457), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(1455), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59598,16 +58694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43888] = 3, + [42844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 5, + ACTIONS(1441), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1493), 29, + ACTIONS(1439), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59637,19 +58733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [43930] = 4, + [42886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 3, + ACTIONS(1056), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1148), 4, + ACTIONS(1022), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1143), 27, + ACTIONS(1017), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -59677,16 +58773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43974] = 3, + [42930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 5, + ACTIONS(1497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(287), 29, + ACTIONS(1495), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59716,16 +58812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44016] = 3, + [42972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 5, + ACTIONS(1445), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1449), 29, + ACTIONS(1443), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -59755,23 +58851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_is, sym__semicolon, - [44058] = 3, + [43014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 5, + ACTIONS(1441), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 29, - sym__newline, + ACTIONS(1439), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -59793,24 +58889,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44100] = 3, + [43055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 5, + ACTIONS(1449), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1453), 29, - sym__newline, + ACTIONS(1447), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -59832,26 +58927,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44142] = 4, + [43096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1110), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1113), 4, + ACTIONS(1509), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1108), 27, + ACTIONS(1507), 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_PIPE, anon_sym_DASH, @@ -59873,20 +58965,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44186] = 3, + [43137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1148), 5, - anon_sym_STAR, + ACTIONS(1024), 1, + anon_sym_COLON_EQ, + ACTIONS(1645), 1, anon_sym_EQ, + ACTIONS(1022), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1143), 29, - sym__newline, + ACTIONS(1017), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -59911,24 +59005,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44228] = 3, + [43182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 5, + ACTIONS(1453), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1461), 29, - sym__newline, + ACTIONS(1451), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -59950,16 +59043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44270] = 3, + [43223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(798), 4, + ACTIONS(1513), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(796), 29, + ACTIONS(1511), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -59989,15 +59081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44311] = 3, + [43264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1563), 4, + ACTIONS(1529), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1561), 29, + ACTIONS(1527), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60027,15 +59119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44352] = 3, + [43305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 4, + ACTIONS(260), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1497), 29, + ACTIONS(287), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60065,15 +59157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44393] = 3, + [43346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 4, + ACTIONS(798), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1493), 29, + ACTIONS(796), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60103,15 +59195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44434] = 3, + [43387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 4, + ACTIONS(1537), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1489), 29, + ACTIONS(1535), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60141,15 +59233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44475] = 3, + [43428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 4, + ACTIONS(1533), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1481), 29, + ACTIONS(1531), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60179,15 +59271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44516] = 3, + [43469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 4, + ACTIONS(1489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1477), 29, + ACTIONS(1487), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60217,15 +59309,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44557] = 3, + [43510] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_COLON_EQ, + ACTIONS(608), 1, + anon_sym_EQ, + ACTIONS(260), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(287), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 4, + ACTIONS(1022), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1473), 29, + ACTIONS(1017), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60255,15 +59387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44598] = 3, + [43596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(814), 4, + ACTIONS(1497), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(812), 29, + ACTIONS(1495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60293,15 +59425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44639] = 3, + [43637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 4, + ACTIONS(1521), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1453), 29, + ACTIONS(1519), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60331,15 +59463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44680] = 3, + [43678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 4, + ACTIONS(1441), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1553), 29, + ACTIONS(1439), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60369,15 +59501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44721] = 3, + [43719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 4, + ACTIONS(1457), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1457), 29, + ACTIONS(1455), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60407,15 +59539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44762] = 3, + [43760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 4, + ACTIONS(1383), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, + ACTIONS(1381), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60445,15 +59577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44803] = 3, + [43801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 4, + ACTIONS(1445), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1489), 29, + ACTIONS(1443), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60483,15 +59615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44844] = 3, + [43842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 4, + ACTIONS(1387), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1449), 29, + ACTIONS(1385), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60521,15 +59653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44885] = 3, + [43883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 4, + ACTIONS(1505), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1453), 29, + ACTIONS(1503), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60559,15 +59691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44926] = 3, + [43924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 4, + ACTIONS(1525), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1441), 29, + ACTIONS(1523), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60597,15 +59729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44967] = 3, + [43965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 4, + ACTIONS(1517), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(287), 29, + ACTIONS(1515), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60635,15 +59767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45008] = 3, + [44006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 4, + ACTIONS(1433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1501), 29, + ACTIONS(1431), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60673,15 +59805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45049] = 3, + [44047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 4, + ACTIONS(1449), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1445), 29, + ACTIONS(1447), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60711,15 +59843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45090] = 3, + [44088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 4, + ACTIONS(1485), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 29, + ACTIONS(1483), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60749,15 +59881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45131] = 3, + [44129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 4, + ACTIONS(1493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1505), 29, + ACTIONS(1491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60787,15 +59919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45172] = 3, + [44170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 4, + ACTIONS(1437), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1469), 29, + ACTIONS(1435), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60825,15 +59957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45213] = 3, + [44211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 4, + ACTIONS(1433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 29, + ACTIONS(1431), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60863,15 +59995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45254] = 3, + [44252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(802), 4, + ACTIONS(1425), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(800), 29, + ACTIONS(1423), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60901,15 +60033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45295] = 3, + [44293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(806), 4, + ACTIONS(1429), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(804), 29, + ACTIONS(1427), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60939,15 +60071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45336] = 3, + [44334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 4, + ACTIONS(1501), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1509), 29, + ACTIONS(1499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -60977,15 +60109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45377] = 3, + [44375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 4, + ACTIONS(808), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1513), 29, + ACTIONS(806), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61015,15 +60147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45418] = 3, + [44416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(810), 4, + ACTIONS(1457), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(808), 29, + ACTIONS(1455), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -61053,474 +60185,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45459] = 3, + [44457] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1549), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(804), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1557), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45582] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1090), 1, - anon_sym_COLON_EQ, - ACTIONS(1671), 1, - anon_sym_EQ, - ACTIONS(1079), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45627] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(560), 1, - anon_sym_COLON_EQ, - ACTIONS(588), 1, - anon_sym_EQ, - ACTIONS(260), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(287), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1517), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1557), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1079), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1074), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(798), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(796), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1463), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1461), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45918] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1184), 2, + STATE(1168), 2, sym__match_pattern, sym_match_as_pattern, - STATE(1231), 2, + STATE(1170), 2, sym__match_patterns, sym_open_sequence_match_pattern, - STATE(1380), 2, + STATE(1299), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61529,52 +60239,52 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [45992] = 20, + [44531] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1695), 1, + ACTIONS(1669), 1, anon_sym_if, - ACTIONS(1697), 1, + ACTIONS(1671), 1, anon_sym_COLON, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1095), 4, + STATE(1082), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61583,52 +60293,52 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46066] = 20, + [44605] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1183), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1184), 2, + STATE(1168), 2, sym__match_pattern, sym_match_as_pattern, - STATE(1380), 2, + STATE(1191), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1299), 2, sym__match_maybe_star_pattern, sym_match_star_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61637,52 +60347,52 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46140] = 20, + [44679] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1699), 1, + ACTIONS(1673), 1, anon_sym_if, - ACTIONS(1701), 1, + ACTIONS(1675), 1, anon_sym_COLON, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1095), 4, + STATE(1082), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61691,50 +60401,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46214] = 19, + [44753] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1703), 1, + ACTIONS(1677), 1, anon_sym_RBRACK, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1095), 4, + STATE(1082), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61743,50 +60453,51 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46285] = 19, + [44824] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1705), 1, - anon_sym_RBRACK, - STATE(902), 1, + ACTIONS(1679), 1, + anon_sym_RPAREN, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + STATE(1309), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1351), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1229), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61795,51 +60506,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46356] = 20, + [44897] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1705), 1, + ACTIONS(1681), 1, anon_sym_RPAREN, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1360), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(1364), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(1082), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61848,50 +60558,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46429] = 19, + [44968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1703), 1, - anon_sym_RPAREN, - STATE(902), 1, + ACTIONS(1679), 1, + anon_sym_RBRACK, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1095), 4, + STATE(1182), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61900,50 +60610,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46500] = 19, + [45039] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1707), 1, - anon_sym_RBRACK, - STATE(902), 1, + ACTIONS(1677), 1, + anon_sym_RPAREN, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1095), 4, + STATE(1082), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -61952,50 +60662,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46571] = 19, + [45110] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1707), 1, - anon_sym_RPAREN, - STATE(902), 1, + ACTIONS(1681), 1, + anon_sym_RBRACK, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1095), 4, + STATE(1082), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62004,50 +60714,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46642] = 20, + [45181] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1709), 1, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(1711), 1, + ACTIONS(1685), 1, anon_sym_RPAREN, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1246), 1, + STATE(1271), 1, sym_match_keyword_pattern, - STATE(1261), 1, + STATE(1318), 1, sym_match_positional_pattern, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1331), 2, + STATE(1333), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62056,50 +60766,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46714] = 20, + [45253] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1709), 1, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(1713), 1, + ACTIONS(1687), 1, anon_sym_RPAREN, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1236), 1, + STATE(1269), 1, sym_match_keyword_pattern, - STATE(1349), 1, + STATE(1318), 1, sym_match_positional_pattern, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1331), 2, + STATE(1333), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62108,50 +60818,50 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46786] = 20, + [45325] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1709), 1, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(1715), 1, + ACTIONS(1689), 1, anon_sym_RPAREN, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1309), 1, + STATE(1158), 1, sym_match_keyword_pattern, - STATE(1349), 1, + STATE(1159), 1, sym_match_positional_pattern, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1331), 2, + STATE(1333), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62160,48 +60870,48 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46858] = 18, + [45397] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1679), 1, + ACTIONS(1653), 1, anon_sym_STAR, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(1095), 4, + STATE(1082), 4, sym__match_pattern, sym_match_as_pattern, sym__match_maybe_star_pattern, sym_match_star_pattern, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62210,46 +60920,46 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46926] = 18, + [45465] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1349), 1, + STATE(1318), 1, sym_match_positional_pattern, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1331), 2, + STATE(1333), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62258,44 +60968,44 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [46992] = 17, + [45531] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1314), 2, + STATE(1320), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62304,44 +61014,44 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47055] = 17, + [45594] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1683), 1, + ACTIONS(1657), 1, sym_match_wildcard_pattern, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - STATE(992), 2, + STATE(989), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1318), 2, + STATE(1350), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(964), 8, + STATE(936), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62350,38 +61060,38 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47118] = 15, + [45657] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1717), 1, + ACTIONS(1691), 1, sym_match_wildcard_pattern, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(944), 8, + STATE(916), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62390,38 +61100,38 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47173] = 15, + [45712] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, + ACTIONS(606), 1, sym__string_start, - ACTIONS(1675), 1, + ACTIONS(1649), 1, sym_identifier, - ACTIONS(1677), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1685), 1, + ACTIONS(1659), 1, anon_sym_LBRACK, - ACTIONS(1687), 1, + ACTIONS(1661), 1, anon_sym_LBRACE, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1719), 1, + ACTIONS(1693), 1, sym_match_wildcard_pattern, - STATE(902), 1, + STATE(885), 1, sym_string, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1477), 1, + STATE(1452), 1, sym_pattern_class_name, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - STATE(948), 8, + STATE(933), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -62430,28 +61140,28 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47228] = 8, + [45767] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1697), 1, anon_sym_as, - ACTIONS(1728), 1, + ACTIONS(1702), 1, anon_sym_not, - ACTIONS(1734), 1, + ACTIONS(1708), 1, anon_sym_is, - STATE(850), 1, + STATE(828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1731), 2, + ACTIONS(1705), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 6, + ACTIONS(1699), 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(1721), 10, + ACTIONS(1695), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -62462,28 +61172,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [47268] = 8, + [45807] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(1473), 1, anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(1481), 1, anon_sym_is, - ACTIONS(1739), 1, + ACTIONS(1713), 1, anon_sym_EQ, - STATE(853), 1, + STATE(831), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1541), 2, + ACTIONS(1479), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1525), 6, + ACTIONS(1463), 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(1737), 10, + ACTIONS(1711), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -62494,28 +61204,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [47308] = 8, + [45847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 1, + ACTIONS(1413), 1, anon_sym_not, - ACTIONS(1439), 1, + ACTIONS(1421), 1, anon_sym_is, - ACTIONS(1739), 1, + ACTIONS(1713), 1, anon_sym_as, - STATE(850), 1, + STATE(828), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1437), 2, + ACTIONS(1419), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1419), 6, + ACTIONS(1401), 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(1737), 10, + ACTIONS(1711), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -62526,47 +61236,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [47348] = 8, + [45887] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1697), 1, + anon_sym_EQ, + ACTIONS(1718), 1, + anon_sym_not, + ACTIONS(1724), 1, + anon_sym_is, + STATE(831), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1715), 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(1695), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [45927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1729), 1, + anon_sym_COMMA, + STATE(832), 1, + aux_sym__patterns_repeat1, + ACTIONS(1727), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, anon_sym_EQ, - ACTIONS(1744), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45957] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1605), 1, anon_sym_not, - ACTIONS(1750), 1, + ACTIONS(1613), 1, anon_sym_is, - STATE(853), 1, + ACTIONS(1713), 1, + anon_sym_EQ, + STATE(839), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1747), 2, + ACTIONS(1611), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 6, + ACTIONS(1593), 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(1721), 10, + ACTIONS(1711), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [45994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1732), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1734), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [47388] = 4, + ACTIONS(1017), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [46048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_COMMA, - STATE(854), 1, - aux_sym__patterns_repeat1, - ACTIONS(1753), 18, + ACTIONS(1736), 19, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_in, anon_sym_RBRACK, @@ -62584,10 +61394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47418] = 2, + [46073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1758), 19, + ACTIONS(1063), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62607,10 +61417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47443] = 2, + [46098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 19, + ACTIONS(1738), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62630,57 +61440,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47468] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1628), 1, - anon_sym_not, - ACTIONS(1636), 1, - anon_sym_is, - ACTIONS(1739), 1, - anon_sym_EQ, - STATE(858), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1634), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1616), 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(1737), 7, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [47505] = 8, + [46123] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1697), 1, anon_sym_EQ, - ACTIONS(1765), 1, + ACTIONS(1743), 1, anon_sym_not, - ACTIONS(1771), 1, + ACTIONS(1749), 1, anon_sym_is, - STATE(858), 1, + STATE(839), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1768), 2, + ACTIONS(1746), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1762), 6, + ACTIONS(1740), 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(1721), 7, + ACTIONS(1695), 7, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -62688,59 +61469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [47542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1774), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1085), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47592] = 4, + [46160] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(260), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(816), 3, + ACTIONS(804), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -62759,39 +61494,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [47621] = 4, + [46189] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1776), 3, + ACTIONS(1635), 1, + anon_sym_not, + ACTIONS(1643), 1, + anon_sym_is, + STATE(844), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1641), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1623), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1711), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(1074), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [47650] = 4, + anon_sym_and, + anon_sym_or, + [46223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1778), 1, + ACTIONS(1752), 1, anon_sym_COMMA, - STATE(854), 1, + STATE(832), 1, aux_sym__patterns_repeat1, - ACTIONS(1780), 16, + ACTIONS(1754), 16, anon_sym_COLON, anon_sym_in, anon_sym_EQ, @@ -62808,86 +61545,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47678] = 7, + [46251] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 1, - anon_sym_not, - ACTIONS(1669), 1, - anon_sym_is, - STATE(866), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1667), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1649), 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(1737), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [47712] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 1, + ACTIONS(1389), 1, anon_sym_DOT, - ACTIONS(1409), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1425), 1, + ACTIONS(1407), 1, anon_sym_LBRACK, - ACTIONS(1527), 1, + ACTIONS(1465), 1, anon_sym_PIPE, - ACTIONS(1531), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, + ACTIONS(1475), 1, anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1477), 1, anon_sym_CARET, - ACTIONS(1521), 2, + ACTIONS(1459), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1523), 2, + ACTIONS(1461), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1529), 2, + ACTIONS(1467), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(619), 2, + STATE(601), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1471), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [47758] = 7, + [46297] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(1759), 1, anon_sym_not, - ACTIONS(1791), 1, + ACTIONS(1765), 1, anon_sym_is, - STATE(866), 1, + STATE(844), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1788), 2, + ACTIONS(1762), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1782), 6, + ACTIONS(1756), 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(1721), 7, + ACTIONS(1695), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -62895,142 +61605,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [47792] = 12, + [46331] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, + ACTIONS(1768), 1, sym_identifier, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1800), 1, + ACTIONS(1774), 1, anon_sym_COLON, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - STATE(1258), 1, + STATE(1274), 1, sym_parameter, - STATE(1406), 1, + STATE(1439), 1, sym_lambda_parameters, - STATE(1407), 1, + STATE(1458), 1, sym__parameters, - STATE(1340), 2, + STATE(1292), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [47835] = 12, + [46374] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, + ACTIONS(1768), 1, sym_identifier, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1806), 1, + ACTIONS(1780), 1, anon_sym_COLON, - STATE(1258), 1, + STATE(1274), 1, sym_parameter, - STATE(1407), 1, - sym__parameters, - STATE(1421), 1, + STATE(1394), 1, sym_lambda_parameters, - STATE(1340), 2, + STATE(1458), 1, + sym__parameters, + STATE(1292), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [47878] = 12, + [46417] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, + ACTIONS(1768), 1, sym_identifier, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1808), 1, + ACTIONS(1782), 1, anon_sym_COLON, - STATE(1258), 1, + STATE(1274), 1, sym_parameter, - STATE(1407), 1, - sym__parameters, - STATE(1466), 1, + STATE(1364), 1, sym_lambda_parameters, - STATE(1340), 2, + STATE(1458), 1, + sym__parameters, + STATE(1292), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [47921] = 12, + [46460] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, + ACTIONS(1768), 1, sym_identifier, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1810), 1, + ACTIONS(1784), 1, anon_sym_COLON, - STATE(1258), 1, + STATE(1274), 1, sym_parameter, - STATE(1407), 1, + STATE(1402), 1, + sym_lambda_parameters, + STATE(1458), 1, sym__parameters, - STATE(1419), 1, + STATE(1292), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1273), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [46503] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1768), 1, + sym_identifier, + ACTIONS(1770), 1, + anon_sym_LPAREN, + ACTIONS(1772), 1, + anon_sym_STAR, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_SLASH, + ACTIONS(1786), 1, + anon_sym_COLON, + STATE(1274), 1, + sym_parameter, + STATE(1457), 1, sym_lambda_parameters, - STATE(1340), 2, + STATE(1458), 1, + sym__parameters, + STATE(1292), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [47964] = 6, + [46546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(1788), 1, anon_sym_COMMA, - ACTIONS(1814), 1, + ACTIONS(1790), 1, anon_sym_COLON, - ACTIONS(1816), 1, + ACTIONS(1792), 1, anon_sym_EQ, - STATE(863), 1, + STATE(842), 1, aux_sym__patterns_repeat1, - ACTIONS(1818), 13, + ACTIONS(1794), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63044,251 +61785,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47995] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1794), 1, - sym_identifier, - ACTIONS(1796), 1, - anon_sym_LPAREN, - ACTIONS(1798), 1, - anon_sym_STAR, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1804), 1, - anon_sym_SLASH, - ACTIONS(1820), 1, - anon_sym_COLON, - STATE(1258), 1, - sym_parameter, - STATE(1388), 1, - sym_lambda_parameters, - STATE(1407), 1, - sym__parameters, - STATE(1340), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1259), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48038] = 14, + [46577] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(299), 1, sym__string_start, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1822), 1, + ACTIONS(1796), 1, sym_identifier, - ACTIONS(1824), 1, + ACTIONS(1798), 1, anon_sym_RBRACE, - ACTIONS(1826), 1, + ACTIONS(1800), 1, anon_sym_STAR_STAR, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1139), 1, + STATE(1134), 1, sym_string, - STATE(1248), 1, - sym_match_key_value_pattern, - STATE(1381), 1, + STATE(1331), 1, sym_match_double_star_pattern, - STATE(1399), 2, + STATE(1332), 1, + sym_match_key_value_pattern, + STATE(1358), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - [48084] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1796), 1, - anon_sym_LPAREN, - ACTIONS(1798), 1, - anon_sym_STAR, - ACTIONS(1802), 1, - anon_sym_STAR_STAR, - ACTIONS(1804), 1, - anon_sym_SLASH, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1830), 1, - anon_sym_RPAREN, - STATE(1226), 1, - sym_parameter, - STATE(1483), 1, - sym__parameters, - STATE(1187), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1259), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [48124] = 14, + [46623] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(299), 1, sym__string_start, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1822), 1, + ACTIONS(1796), 1, sym_identifier, - ACTIONS(1826), 1, + ACTIONS(1800), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1802), 1, anon_sym_RBRACE, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1139), 1, + STATE(1134), 1, sym_string, - STATE(1358), 1, - sym_match_double_star_pattern, - STATE(1361), 1, + STATE(1173), 1, sym_match_key_value_pattern, - STATE(1399), 2, + STATE(1345), 1, + sym_match_double_star_pattern, + STATE(1358), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - [48170] = 14, + [46669] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(299), 1, sym__string_start, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1822), 1, + ACTIONS(1796), 1, sym_identifier, - ACTIONS(1826), 1, + ACTIONS(1800), 1, anon_sym_STAR_STAR, - ACTIONS(1834), 1, + ACTIONS(1804), 1, anon_sym_RBRACE, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1139), 1, + STATE(1134), 1, sym_string, - STATE(1337), 1, + STATE(1284), 1, sym_match_double_star_pattern, - STATE(1361), 1, + STATE(1332), 1, sym_match_key_value_pattern, - STATE(1399), 2, + STATE(1358), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - [48216] = 10, + [46715] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, - sym_identifier, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1836), 1, - anon_sym_COLON, - STATE(1305), 1, + ACTIONS(1806), 1, + sym_identifier, + ACTIONS(1808), 1, + anon_sym_RPAREN, + STATE(1203), 1, sym_parameter, - STATE(1340), 2, + STATE(1407), 1, + sym__parameters, + STATE(1184), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48253] = 10, + [46755] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1768), 1, + sym_identifier, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1836), 1, - anon_sym_RPAREN, - STATE(1305), 1, + ACTIONS(1810), 1, + anon_sym_COLON, + STATE(1261), 1, sym_parameter, - STATE(1187), 2, + STATE(1292), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48290] = 10, + [46792] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, - sym_identifier, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1838), 1, - anon_sym_COLON, - STATE(1305), 1, + ACTIONS(1806), 1, + sym_identifier, + ACTIONS(1810), 1, + anon_sym_RPAREN, + STATE(1261), 1, sym_parameter, - STATE(1340), 2, + STATE(1184), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48327] = 4, + [46829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 1, + ACTIONS(1790), 1, anon_sym_COLON, - ACTIONS(1816), 1, + ACTIONS(1792), 1, anon_sym_EQ, - ACTIONS(1818), 13, + ACTIONS(1794), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63302,58 +61985,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48352] = 10, + [46854] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1768), 1, + sym_identifier, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1838), 1, - anon_sym_RPAREN, - STATE(1305), 1, + ACTIONS(1812), 1, + anon_sym_COLON, + STATE(1261), 1, sym_parameter, - STATE(1187), 2, + STATE(1292), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48389] = 3, + [46891] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1842), 1, - anon_sym_as, - ACTIONS(1840), 13, + ACTIONS(1770), 1, + anon_sym_LPAREN, + ACTIONS(1772), 1, + anon_sym_STAR, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_SLASH, + ACTIONS(1806), 1, + sym_identifier, + ACTIONS(1812), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [48411] = 3, + STATE(1261), 1, + sym_parameter, + STATE(1184), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1273), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [46928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1816), 1, anon_sym_as, - ACTIONS(1411), 13, + ACTIONS(1814), 13, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63367,90 +62058,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [48433] = 9, + [46950] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - ACTIONS(1828), 1, + ACTIONS(1806), 1, sym_identifier, - STATE(1305), 1, + STATE(1261), 1, sym_parameter, - STATE(1187), 2, + STATE(1184), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48467] = 9, + [46984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1395), 1, + anon_sym_as, + ACTIONS(1393), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [47006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, + ACTIONS(1768), 1, sym_identifier, - ACTIONS(1796), 1, + ACTIONS(1770), 1, anon_sym_LPAREN, - ACTIONS(1798), 1, + ACTIONS(1772), 1, anon_sym_STAR, - ACTIONS(1802), 1, + ACTIONS(1776), 1, anon_sym_STAR_STAR, - ACTIONS(1804), 1, + ACTIONS(1778), 1, anon_sym_SLASH, - STATE(1305), 1, + STATE(1261), 1, sym_parameter, - STATE(1340), 2, + STATE(1292), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1259), 6, + STATE(1273), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [48501] = 11, + [47040] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(299), 1, sym__string_start, - ACTIONS(1681), 1, + ACTIONS(1655), 1, anon_sym_DASH, - ACTIONS(1689), 1, + ACTIONS(1663), 1, sym_integer, - ACTIONS(1691), 1, + ACTIONS(1665), 1, sym_float, - ACTIONS(1822), 1, + ACTIONS(1796), 1, sym_identifier, - STATE(969), 1, + STATE(930), 1, sym_concatenated_string, - STATE(1139), 1, + STATE(1134), 1, sym_string, - STATE(1361), 1, + STATE(1332), 1, sym_match_key_value_pattern, - STATE(1399), 2, + STATE(1358), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1693), 3, + ACTIONS(1667), 3, sym_true, sym_false, sym_none, - [48538] = 4, + [47077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1846), 1, + ACTIONS(1820), 1, anon_sym_DOT, - STATE(887), 1, + STATE(865), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1844), 10, + ACTIONS(1818), 10, anon_sym_import, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63461,56 +62171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48560] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1849), 9, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48581] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, - anon_sym_if, - ACTIONS(1859), 1, - anon_sym_COLON, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - STATE(942), 1, - sym_for_in_clause, - STATE(1072), 1, - aux_sym__collection_elements_repeat1, - STATE(1445), 1, - sym__comprehension_clauses, - [48618] = 4, + [47099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1871), 9, + ACTIONS(1823), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63520,33 +62188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48639] = 7, + [47120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1875), 1, - anon_sym_COMMA, - ACTIONS(1877), 1, - anon_sym_if, - STATE(951), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1873), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1844), 11, - anon_sym_import, + ACTIONS(1829), 1, anon_sym_DOT, + ACTIONS(1831), 1, anon_sym_LPAREN, + STATE(865), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1833), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -63555,171 +62206,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [48683] = 12, + [47143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1837), 1, + anon_sym_as, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1859), 1, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1835), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1861), 1, anon_sym_async, - ACTIONS(1863), 1, anon_sym_for, - ACTIONS(1865), 1, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1867), 1, + [47168] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_if, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - STATE(942), 1, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1847), 1, + anon_sym_COLON, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1853), 1, + anon_sym_RBRACE, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, + STATE(1048), 1, aux_sym__collection_elements_repeat1, - STATE(1453), 1, + STATE(1360), 1, sym__comprehension_clauses, - [48720] = 5, + [47205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - ACTIONS(1881), 1, - anon_sym_as, - ACTIONS(1879), 8, + ACTIONS(1855), 10, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [48743] = 4, + anon_sym_EQ, + anon_sym_or, + sym_type_conversion, + [47224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1839), 1, + anon_sym_if, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1879), 9, + ACTIONS(1859), 1, + anon_sym_as, + ACTIONS(1857), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [48764] = 3, + [47249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1879), 10, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1863), 1, + anon_sym_as, + ACTIONS(1861), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_or, - sym_type_conversion, - [48783] = 6, + [47272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1867), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1885), 1, - anon_sym_as, - ACTIONS(1883), 7, - anon_sym_RPAREN, + ACTIONS(1845), 1, anon_sym_COMMA, + ACTIONS(1847), 1, anon_sym_COLON, + ACTIONS(1849), 1, anon_sym_async, + ACTIONS(1851), 1, anon_sym_for, - anon_sym_RBRACK, + ACTIONS(1853), 1, anon_sym_RBRACE, - [48808] = 12, + STATE(922), 1, + sym_for_in_clause, + STATE(1048), 1, + aux_sym__collection_elements_repeat1, + STATE(1382), 1, + sym__comprehension_clauses, + [47309] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1861), 1, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1847), 1, + anon_sym_COLON, + ACTIONS(1849), 1, anon_sym_async, - ACTIONS(1863), 1, + ACTIONS(1851), 1, anon_sym_for, - ACTIONS(1867), 1, + ACTIONS(1853), 1, + anon_sym_RBRACE, + STATE(922), 1, + sym_for_in_clause, + STATE(1048), 1, + aux_sym__collection_elements_repeat1, + STATE(1371), 1, + sym__comprehension_clauses, + [47346] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_if, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1887), 1, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1865), 1, anon_sym_RPAREN, - ACTIONS(1889), 1, + ACTIONS(1867), 1, anon_sym_COMMA, - ACTIONS(1892), 1, + ACTIONS(1870), 1, anon_sym_as, - STATE(942), 1, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, + STATE(1048), 1, aux_sym__collection_elements_repeat1, - STATE(1385), 1, + STATE(1368), 1, sym__comprehension_clauses, - [48845] = 4, + [47383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1839), 1, + anon_sym_if, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1881), 1, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1874), 1, anon_sym_as, - ACTIONS(1879), 9, + ACTIONS(1872), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_or, - [48866] = 5, + [47408] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1878), 1, + anon_sym_COMMA, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(1883), 8, + STATE(944), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1876), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [47435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1855), 9, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48889] = 5, + [47456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(1894), 8, + ACTIONS(1857), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -63728,33 +62452,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48912] = 4, + [47479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, - sym__string_start, - STATE(668), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1896), 8, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1861), 9, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [48933] = 5, + anon_sym_EQ, + sym_type_conversion, + [47500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(1898), 8, + ACTIONS(1872), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -63763,16 +62487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [48956] = 5, + [47523] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1900), 1, + ACTIONS(1882), 1, anon_sym_as, - ACTIONS(1849), 8, + ACTIONS(1823), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63781,34 +62505,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [48979] = 5, + [47546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, - anon_sym_DOT, - ACTIONS(1904), 1, - anon_sym_LPAREN, - STATE(906), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1906), 8, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1884), 1, + anon_sym_as, + ACTIONS(1855), 9, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49002] = 5, + anon_sym_or, + [47567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(1818), 11, + anon_sym_import, anon_sym_DOT, - ACTIONS(1908), 1, anon_sym_LPAREN, - STATE(887), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1910), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -63817,41 +62537,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49025] = 12, + [47584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(606), 1, + sym__string_start, + STATE(658), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1886), 8, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1857), 1, + anon_sym_as, anon_sym_if, - ACTIONS(1859), 1, anon_sym_COLON, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(1865), 1, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - STATE(942), 1, - sym_for_in_clause, - STATE(1072), 1, - aux_sym__collection_elements_repeat1, - STATE(1389), 1, - sym__comprehension_clauses, - [49062] = 5, + [47605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1912), 1, + ACTIONS(1884), 1, anon_sym_as, - ACTIONS(1871), 8, + ACTIONS(1855), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63860,54 +62572,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49085] = 6, + [47628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_if, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - ACTIONS(1914), 1, - anon_sym_as, - ACTIONS(1898), 7, + ACTIONS(1829), 1, + anon_sym_DOT, + ACTIONS(1888), 1, + anon_sym_LPAREN, + STATE(867), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1890), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49110] = 6, + [47651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_if, - ACTIONS(1867), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1916), 1, - anon_sym_as, - ACTIONS(1894), 7, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(1835), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [49135] = 5, + anon_sym_EQ, + sym_type_conversion, + [47674] = 9, + ACTIONS(1892), 1, + anon_sym_LBRACE2, + ACTIONS(1896), 1, + sym__not_escape_sequence, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(1900), 1, + sym__string_end, + STATE(908), 1, + aux_sym_string_repeat1, + STATE(983), 1, + aux_sym_string_content_repeat1, + STATE(1015), 1, + sym_string_content, + STATE(1027), 1, + sym_interpolation, + ACTIONS(1894), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [47704] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(1918), 7, + ACTIONS(1902), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -63915,176 +62646,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49157] = 5, + [47726] = 9, + ACTIONS(1892), 1, + anon_sym_LBRACE2, + ACTIONS(1896), 1, + sym__not_escape_sequence, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(1904), 1, + sym__string_end, + STATE(895), 1, + aux_sym_string_repeat1, + STATE(983), 1, + aux_sym_string_content_repeat1, + STATE(1015), 1, + sym_string_content, + STATE(1027), 1, + sym_interpolation, + ACTIONS(1894), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [47756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(1920), 7, + ACTIONS(1908), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1906), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49179] = 11, + [47774] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1861), 1, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1849), 1, anon_sym_async, - ACTIONS(1863), 1, + ACTIONS(1851), 1, anon_sym_for, - ACTIONS(1865), 1, + ACTIONS(1853), 1, anon_sym_RBRACK, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - STATE(942), 1, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, + STATE(1048), 1, aux_sym__collection_elements_repeat1, STATE(1386), 1, sym__comprehension_clauses, - [49213] = 5, + [47808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(1922), 7, + ACTIONS(1912), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1910), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49235] = 9, - ACTIONS(1924), 1, + [47826] = 9, + ACTIONS(1892), 1, anon_sym_LBRACE2, - ACTIONS(1930), 1, + ACTIONS(1896), 1, sym__not_escape_sequence, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(1935), 1, - sym__string_end, - STATE(915), 1, - aux_sym_string_repeat1, - STATE(1001), 1, - aux_sym_string_content_repeat1, - STATE(1043), 1, - sym_string_content, - STATE(1048), 1, - sym_interpolation, - ACTIONS(1927), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49265] = 9, - ACTIONS(1933), 1, + ACTIONS(1898), 1, sym_comment, - ACTIONS(1937), 1, - anon_sym_LBRACE2, - ACTIONS(1941), 1, - sym__not_escape_sequence, - ACTIONS(1943), 1, + ACTIONS(1914), 1, sym__string_end, - STATE(921), 1, + STATE(899), 1, aux_sym_string_repeat1, - STATE(1001), 1, + STATE(983), 1, aux_sym_string_content_repeat1, - STATE(1043), 1, + STATE(1015), 1, sym_string_content, - STATE(1048), 1, + STATE(1027), 1, sym_interpolation, - ACTIONS(1939), 3, + ACTIONS(1894), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49295] = 11, + [47856] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(1867), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1945), 1, - anon_sym_RPAREN, - ACTIONS(1947), 1, - anon_sym_COMMA, - STATE(942), 1, - sym_for_in_clause, - STATE(1273), 1, - aux_sym_argument_list_repeat1, - STATE(1385), 1, - sym__comprehension_clauses, - [49329] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, + ACTIONS(1845), 1, anon_sym_COMMA, - ACTIONS(1857), 1, - anon_sym_if, - ACTIONS(1861), 1, + ACTIONS(1849), 1, anon_sym_async, - ACTIONS(1863), 1, + ACTIONS(1851), 1, anon_sym_for, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - ACTIONS(1949), 1, + ACTIONS(1865), 1, anon_sym_RPAREN, - STATE(942), 1, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, + STATE(1048), 1, aux_sym__collection_elements_repeat1, - STATE(1457), 1, + STATE(1368), 1, sym__comprehension_clauses, - [49363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1951), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49381] = 5, + [47890] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(1955), 7, + ACTIONS(1916), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64092,314 +62781,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [49403] = 9, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(1937), 1, - anon_sym_LBRACE2, - ACTIONS(1941), 1, - sym__not_escape_sequence, - ACTIONS(1957), 1, - sym__string_end, - STATE(915), 1, - aux_sym_string_repeat1, - STATE(1001), 1, - aux_sym_string_content_repeat1, - STATE(1043), 1, - sym_string_content, - STATE(1048), 1, - sym_interpolation, - ACTIONS(1939), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49433] = 9, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(1937), 1, - anon_sym_LBRACE2, - ACTIONS(1941), 1, - sym__not_escape_sequence, - ACTIONS(1959), 1, - sym__string_end, - STATE(931), 1, - aux_sym_string_repeat1, - STATE(1001), 1, - aux_sym_string_content_repeat1, - STATE(1043), 1, - sym_string_content, - STATE(1048), 1, - sym_interpolation, - ACTIONS(1939), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49463] = 9, - ACTIONS(1933), 1, + [47912] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, - anon_sym_LBRACE2, - ACTIONS(1941), 1, - sym__not_escape_sequence, - ACTIONS(1961), 1, - sym__string_end, - STATE(915), 1, - aux_sym_string_repeat1, - STATE(1001), 1, - aux_sym_string_content_repeat1, - STATE(1043), 1, - sym_string_content, + ACTIONS(1839), 1, + anon_sym_if, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1853), 1, + anon_sym_RBRACK, + STATE(922), 1, + sym_for_in_clause, STATE(1048), 1, - sym_interpolation, - ACTIONS(1939), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [49493] = 9, - ACTIONS(1933), 1, + aux_sym__collection_elements_repeat1, + STATE(1428), 1, + sym__comprehension_clauses, + [47946] = 9, + ACTIONS(1898), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE2, - ACTIONS(1941), 1, + ACTIONS(1924), 1, sym__not_escape_sequence, - ACTIONS(1963), 1, + ACTIONS(1927), 1, sym__string_end, - STATE(923), 1, + STATE(899), 1, aux_sym_string_repeat1, - STATE(1001), 1, + STATE(983), 1, aux_sym_string_content_repeat1, - STATE(1043), 1, + STATE(1015), 1, sym_string_content, - STATE(1048), 1, + STATE(1027), 1, sym_interpolation, - ACTIONS(1939), 3, + ACTIONS(1921), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1967), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1965), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [49541] = 11, + [47976] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(1867), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1887), 1, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1929), 1, anon_sym_RPAREN, - STATE(942), 1, + ACTIONS(1931), 1, + anon_sym_COMMA, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, - aux_sym__collection_elements_repeat1, - STATE(1385), 1, + STATE(1250), 1, + aux_sym_argument_list_repeat1, + STATE(1427), 1, sym__comprehension_clauses, - [49575] = 11, + [48010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_if, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(1867), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1969), 1, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(1933), 7, anon_sym_RPAREN, - ACTIONS(1971), 1, anon_sym_COMMA, - STATE(942), 1, - sym_for_in_clause, - STATE(1290), 1, - aux_sym_argument_list_repeat1, - STATE(1416), 1, - sym__comprehension_clauses, - [49609] = 9, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(1937), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48032] = 9, + ACTIONS(1892), 1, anon_sym_LBRACE2, - ACTIONS(1941), 1, + ACTIONS(1896), 1, sym__not_escape_sequence, - ACTIONS(1973), 1, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(1935), 1, sym__string_end, - STATE(933), 1, + STATE(906), 1, aux_sym_string_repeat1, - STATE(1001), 1, + STATE(983), 1, aux_sym_string_content_repeat1, - STATE(1043), 1, + STATE(1015), 1, sym_string_content, - STATE(1048), 1, + STATE(1027), 1, sym_interpolation, - ACTIONS(1939), 3, + ACTIONS(1894), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49639] = 11, + [48062] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(1865), 1, - anon_sym_RBRACK, - ACTIONS(1867), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - STATE(942), 1, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1937), 1, + anon_sym_RPAREN, + ACTIONS(1939), 1, + anon_sym_COMMA, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, - aux_sym__collection_elements_repeat1, - STATE(1428), 1, + STATE(1237), 1, + aux_sym_argument_list_repeat1, + STATE(1475), 1, sym__comprehension_clauses, - [49673] = 11, + [48096] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1861), 1, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1849), 1, anon_sym_async, - ACTIONS(1863), 1, + ACTIONS(1851), 1, anon_sym_for, - ACTIONS(1865), 1, - anon_sym_RBRACK, - ACTIONS(1867), 1, + ACTIONS(1941), 1, + anon_sym_RPAREN, + ACTIONS(1943), 1, + anon_sym_COMMA, + STATE(922), 1, + sym_for_in_clause, + STATE(1253), 1, + aux_sym_argument_list_repeat1, + STATE(1368), 1, + sym__comprehension_clauses, + [48130] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_if, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - STATE(942), 1, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1945), 1, + anon_sym_RPAREN, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, + STATE(1048), 1, aux_sym__collection_elements_repeat1, - STATE(1455), 1, + STATE(1475), 1, sym__comprehension_clauses, - [49707] = 9, - ACTIONS(1933), 1, + [48164] = 9, + ACTIONS(1892), 1, + anon_sym_LBRACE2, + ACTIONS(1896), 1, + sym__not_escape_sequence, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(1947), 1, + sym__string_end, + STATE(899), 1, + aux_sym_string_repeat1, + STATE(983), 1, + aux_sym_string_content_repeat1, + STATE(1015), 1, + sym_string_content, + STATE(1027), 1, + sym_interpolation, + ACTIONS(1894), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48194] = 9, + ACTIONS(1892), 1, + anon_sym_LBRACE2, + ACTIONS(1896), 1, + sym__not_escape_sequence, + ACTIONS(1898), 1, sym_comment, - ACTIONS(1937), 1, + ACTIONS(1949), 1, + sym__string_end, + STATE(910), 1, + aux_sym_string_repeat1, + STATE(983), 1, + aux_sym_string_content_repeat1, + STATE(1015), 1, + sym_string_content, + STATE(1027), 1, + sym_interpolation, + ACTIONS(1894), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [48224] = 9, + ACTIONS(1892), 1, anon_sym_LBRACE2, - ACTIONS(1941), 1, + ACTIONS(1896), 1, sym__not_escape_sequence, - ACTIONS(1975), 1, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(1951), 1, sym__string_end, - STATE(915), 1, + STATE(899), 1, aux_sym_string_repeat1, - STATE(1001), 1, + STATE(983), 1, aux_sym_string_content_repeat1, - STATE(1043), 1, + STATE(1015), 1, sym_string_content, - STATE(1048), 1, + STATE(1027), 1, sym_interpolation, - ACTIONS(1939), 3, + ACTIONS(1894), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49737] = 11, + [48254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_if, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(1867), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1977), 1, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(1953), 7, anon_sym_RPAREN, - ACTIONS(1979), 1, anon_sym_COMMA, - STATE(942), 1, - sym_for_in_clause, - STATE(1277), 1, - aux_sym_argument_list_repeat1, - STATE(1457), 1, - sym__comprehension_clauses, - [49771] = 9, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(1937), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48276] = 9, + ACTIONS(1892), 1, anon_sym_LBRACE2, - ACTIONS(1941), 1, + ACTIONS(1896), 1, sym__not_escape_sequence, - ACTIONS(1981), 1, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(1955), 1, sym__string_end, - STATE(915), 1, + STATE(899), 1, aux_sym_string_repeat1, - STATE(1001), 1, + STATE(983), 1, aux_sym_string_content_repeat1, - STATE(1043), 1, + STATE(1015), 1, sym_string_content, - STATE(1048), 1, + STATE(1027), 1, sym_interpolation, - ACTIONS(1939), 3, + ACTIONS(1894), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [49801] = 11, + [48306] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1857), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(1861), 1, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1849), 1, anon_sym_async, - ACTIONS(1863), 1, + ACTIONS(1851), 1, anon_sym_for, - ACTIONS(1867), 1, + ACTIONS(1853), 1, + anon_sym_RBRACK, + STATE(922), 1, + sym_for_in_clause, + STATE(1048), 1, + aux_sym__collection_elements_repeat1, + STATE(1369), 1, + sym__comprehension_clauses, + [48340] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_if, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1983), 1, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1957), 1, anon_sym_RPAREN, - STATE(942), 1, + STATE(922), 1, sym_for_in_clause, - STATE(1072), 1, + STATE(1048), 1, aux_sym__collection_elements_repeat1, - STATE(1416), 1, + STATE(1427), 1, sym__comprehension_clauses, - [49835] = 4, + [48374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(1869), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1985), 7, + ACTIONS(1959), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64407,154 +63117,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49854] = 4, + [48393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - ACTIONS(1985), 7, + ACTIONS(1963), 1, + anon_sym_PIPE, + STATE(915), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(1961), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49873] = 7, + [48412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1875), 1, + ACTIONS(1967), 1, + anon_sym_PIPE, + STATE(915), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(1965), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1877), 1, + anon_sym_as, anon_sym_if, - STATE(951), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1987), 4, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49898] = 4, + [48431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - ACTIONS(1985), 7, + ACTIONS(1963), 1, + anon_sym_PIPE, + STATE(914), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(1970), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [49917] = 6, + [48450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1991), 1, - anon_sym_if, - ACTIONS(1994), 1, + ACTIONS(1849), 1, anon_sym_async, - ACTIONS(1997), 1, + ACTIONS(1851), 1, anon_sym_for, - ACTIONS(1989), 3, + ACTIONS(1974), 1, + anon_sym_if, + ACTIONS(1972), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(939), 3, + STATE(920), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [49940] = 4, + [48473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, - anon_sym_PIPE, - STATE(940), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2000), 7, - anon_sym_RPAREN, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1878), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(1880), 1, anon_sym_if, + STATE(944), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1976), 4, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RBRACE, - [49959] = 4, + anon_sym_EQ, + sym_type_conversion, + [48498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_PIPE, - STATE(940), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2005), 7, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1959), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49978] = 6, + [48517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1980), 1, + anon_sym_if, + ACTIONS(1983), 1, anon_sym_async, - ACTIONS(1863), 1, + ACTIONS(1986), 1, anon_sym_for, - ACTIONS(2011), 1, - anon_sym_if, - ACTIONS(2009), 3, + ACTIONS(1978), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(943), 3, + STATE(920), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [50001] = 6, + [48540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1841), 1, + anon_sym_and, + ACTIONS(1843), 1, + anon_sym_or, + ACTIONS(1959), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, - ACTIONS(1863), 1, anon_sym_for, - ACTIONS(2011), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48559] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(1974), 1, anon_sym_if, - ACTIONS(2013), 3, + ACTIONS(1989), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(939), 3, + STATE(917), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [50024] = 4, + [48582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_PIPE, - STATE(941), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2015), 7, - anon_sym_RPAREN, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(1855), 7, + sym__newline, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + sym__semicolon, + [48598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 1, + anon_sym_COMMA, + STATE(935), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(1993), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50043] = 2, + [48616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 8, + ACTIONS(1997), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64563,57 +63300,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50057] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2019), 1, - anon_sym_from, - ACTIONS(2021), 1, - anon_sym_COMMA, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, - anon_sym_or, - STATE(1074), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2029), 2, - sym__newline, - sym__semicolon, - [50083] = 7, + [48630] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_AT, - ACTIONS(2031), 1, + ACTIONS(1999), 1, anon_sym_async, - ACTIONS(2033), 1, + ACTIONS(2001), 1, anon_sym_def, - ACTIONS(2035), 1, + ACTIONS(2003), 1, anon_sym_class, - STATE(554), 2, + STATE(489), 2, sym_function_definition, sym_class_definition, - STATE(1055), 2, + STATE(1012), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [50107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50121] = 2, + [48654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 8, + ACTIONS(2005), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64622,38 +63329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50135] = 4, + [48668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1843), 1, anon_sym_or, - ACTIONS(1879), 6, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [50153] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2041), 1, - anon_sym_COMMA, - STATE(963), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2039), 6, + ACTIONS(2007), 6, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50171] = 2, + [48686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2043), 8, + ACTIONS(2009), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64662,10 +63355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50185] = 2, + [48700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2045), 8, + ACTIONS(1886), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64674,10 +63367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50199] = 2, + [48714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 8, + ACTIONS(2011), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64686,63 +63379,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50213] = 4, + [48728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(1872), 5, + sym__newline, + anon_sym_from, anon_sym_COMMA, - STATE(963), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2039), 6, + anon_sym_EQ, + sym__semicolon, + [48748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1965), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50231] = 3, + [48762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1879), 7, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(1861), 6, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, - anon_sym_or, sym__semicolon, - [50247] = 4, + [48780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(2019), 1, anon_sym_COMMA, - STATE(981), 1, + STATE(935), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2051), 6, + ACTIONS(2017), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50265] = 2, + [48798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2055), 8, + ACTIONS(2024), 1, + anon_sym_PIPE, + ACTIONS(2022), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50279] = 2, + [48814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 8, + ACTIONS(1393), 8, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + sym__semicolon, + [48828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2026), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64751,10 +63471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50293] = 2, + [48842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 8, + ACTIONS(2028), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64763,10 +63483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50307] = 2, + [48856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 8, + ACTIONS(2030), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64775,52 +63495,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50321] = 5, + [48870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(1883), 5, + ACTIONS(1855), 6, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, sym__semicolon, - [50341] = 4, + [48888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2065), 1, + ACTIONS(2034), 1, anon_sym_COMMA, - STATE(963), 1, + STATE(942), 1, aux_sym_expression_list_repeat1, - ACTIONS(2063), 6, + ACTIONS(2032), 6, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50359] = 3, + [48906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, - anon_sym_PIPE, - ACTIONS(2068), 7, + ACTIONS(2039), 1, + anon_sym_COMMA, + STATE(952), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2037), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [48924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2043), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2041), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [48942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50375] = 2, + [48956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 8, + ACTIONS(2047), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64829,10 +63575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50389] = 2, + [48970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 8, + ACTIONS(2049), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64841,10 +63587,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50403] = 2, + [48984] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2051), 1, + anon_sym_from, + ACTIONS(2053), 1, + anon_sym_COMMA, + STATE(1059), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2055), 2, + sym__newline, + sym__semicolon, + [49010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 8, + ACTIONS(2057), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64853,10 +63617,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50417] = 2, + [49024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2059), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2041), 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1829), 1, + anon_sym_DOT, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(2061), 1, + anon_sym_EQ, + STATE(867), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(1890), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [49064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2065), 1, + anon_sym_COMMA, + STATE(935), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2063), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(1823), 6, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + sym__semicolon, + [49100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 8, + ACTIONS(2067), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64865,10 +63687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50431] = 2, + [49114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 8, + ACTIONS(2069), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64877,10 +63699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50445] = 2, + [49128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 8, + ACTIONS(2071), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64889,10 +63711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50459] = 2, + [49142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 8, + ACTIONS(1814), 8, sym__newline, anon_sym_from, anon_sym_COMMA, @@ -64901,38 +63723,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym__semicolon, - [50473] = 4, + [49156] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_COMMA, - STATE(972), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2082), 6, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2073), 1, + anon_sym_async, + ACTIONS(2075), 1, + anon_sym_def, + ACTIONS(2077), 1, + anon_sym_class, + STATE(525), 2, + sym_function_definition, + sym_class_definition, + STATE(1012), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [49180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2079), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50491] = 4, + [49194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(1849), 6, + ACTIONS(1835), 5, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_EQ, sym__semicolon, - [50509] = 2, + [49214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2087), 8, + ACTIONS(2081), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64941,362 +63779,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50523] = 5, + [49228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(1894), 5, + ACTIONS(1857), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, sym__semicolon, - [50543] = 4, + [49248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym_COMMA, - STATE(972), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2089), 6, + ACTIONS(2083), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50561] = 4, + [49262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - ACTIONS(2093), 6, + ACTIONS(2085), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50579] = 4, + [49276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, - anon_sym_or, - ACTIONS(1871), 6, - sym__newline, - anon_sym_from, + ACTIONS(2087), 8, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [50597] = 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(1920), 5, + ACTIONS(1902), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, sym__semicolon, - [50617] = 4, + [49310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 1, - anon_sym_COMMA, - STATE(976), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2095), 6, + ACTIONS(2089), 8, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50635] = 4, + [49324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2101), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - STATE(972), 1, + STATE(924), 1, aux_sym_for_in_clause_repeat1, - ACTIONS(2099), 6, + ACTIONS(2091), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50653] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2103), 1, - anon_sym_async, - ACTIONS(2105), 1, - anon_sym_def, - ACTIONS(2107), 1, - anon_sym_class, - STATE(525), 2, - sym_function_definition, - sym_class_definition, - STATE(1055), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [50677] = 6, + [49342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, - anon_sym_DOT, - ACTIONS(1904), 1, - anon_sym_LPAREN, - ACTIONS(2109), 1, - anon_sym_EQ, - STATE(906), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1906), 4, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_and, + ACTIONS(2099), 1, + anon_sym_or, + ACTIONS(1872), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [50699] = 2, + anon_sym_COLON, + [49361] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2101), 1, + anon_sym_COMMA, + STATE(1086), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2103), 2, + sym__newline, + sym__semicolon, + [49384] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(2105), 1, + anon_sym_COMMA, + ACTIONS(2107), 1, anon_sym_RBRACE, - [50713] = 2, + STATE(922), 1, + sym_for_in_clause, + STATE(1223), 1, + aux_sym_dictionary_repeat1, + STATE(1446), 1, + sym__comprehension_clauses, + [49409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 8, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(1916), 4, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, sym__semicolon, - [50727] = 2, + [49428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 8, + ACTIONS(1814), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [49441] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2111), 1, anon_sym_RBRACE, - [50741] = 5, + STATE(922), 1, + sym_for_in_clause, + STATE(1163), 1, + aux_sym_dictionary_repeat1, + STATE(1354), 1, + sym__comprehension_clauses, + [49466] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2053), 1, + anon_sym_COMMA, + STATE(1059), 1, + aux_sym_expression_list_repeat1, + ACTIONS(1876), 2, + sym__newline, + sym__semicolon, + [49489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(1898), 5, - sym__newline, - anon_sym_from, + ACTIONS(2053), 1, anon_sym_COMMA, - anon_sym_EQ, + STATE(1059), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2113), 2, + sym__newline, sym__semicolon, - [50761] = 2, + [49512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 8, + ACTIONS(2115), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50775] = 2, + [49525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2117), 8, + ACTIONS(1393), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50789] = 2, + anon_sym_and, + anon_sym_or, + [49538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2117), 1, + anon_sym_except, + ACTIONS(2119), 1, + anon_sym_finally, + STATE(469), 1, + sym_finally_clause, + STATE(227), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(233), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [49559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 8, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_and, + ACTIONS(2099), 1, + anon_sym_or, + ACTIONS(2123), 1, + anon_sym_as, + ACTIONS(2121), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50803] = 8, + [49580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_LPAREN, ACTIONS(2125), 1, - anon_sym_STAR, - STATE(1085), 1, - sym_dotted_name, - STATE(1154), 1, - sym_aliased_import, - STATE(1377), 1, - sym__import_list, - STATE(1378), 1, - sym_wildcard_import, - [50828] = 3, + anon_sym_except, + ACTIONS(2127), 1, + anon_sym_finally, + STATE(509), 1, + sym_finally_clause, + STATE(225), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(231), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [49601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, - anon_sym_as, - ACTIONS(2127), 6, + ACTIONS(2129), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50843] = 7, - ACTIONS(3), 1, + [49614] = 6, + ACTIONS(1898), 1, sym_comment, ACTIONS(2131), 1, - sym_identifier, - ACTIONS(2133), 1, - anon_sym_DOT, - ACTIONS(2135), 1, - anon_sym___future__, - STATE(1144), 1, - aux_sym_import_prefix_repeat1, - STATE(1260), 1, - sym_import_prefix, - STATE(1437), 2, - sym_relative_import, - sym_dotted_name, - [50866] = 6, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2137), 1, anon_sym_LBRACE2, - ACTIONS(2142), 1, + ACTIONS(2135), 1, sym__not_escape_sequence, - ACTIONS(2145), 1, + ACTIONS(2137), 1, sym__string_end, - STATE(994), 1, + STATE(1004), 1, aux_sym_string_content_repeat1, - ACTIONS(2139), 3, + ACTIONS(2133), 3, sym__string_content, sym__escape_interpolation, sym_escape_sequence, - [50887] = 7, + [49635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - anon_sym_COMMA, - ACTIONS(2023), 1, + ACTIONS(1839), 1, anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1841), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1843), 1, anon_sym_or, - STATE(1074), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2147), 2, - sym__newline, - sym__semicolon, - [50910] = 5, + ACTIONS(2139), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [49654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(1922), 4, + ACTIONS(1933), 4, sym__newline, anon_sym_from, anon_sym_COMMA, sym__semicolon, - [50929] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 1, - anon_sym_except, - ACTIONS(2151), 1, - anon_sym_finally, - STATE(514), 1, - sym_finally_clause, - STATE(230), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(231), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [50950] = 7, + [49673] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, - anon_sym_or, - ACTIONS(2153), 1, + ACTIONS(1849), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_for, + ACTIONS(2141), 1, anon_sym_COMMA, - STATE(1172), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2155), 2, - sym__newline, - sym__semicolon, - [50973] = 2, + ACTIONS(2143), 1, + anon_sym_RBRACE, + STATE(922), 1, + sym_for_in_clause, + STATE(1215), 1, + aux_sym_dictionary_repeat1, + STATE(1372), 1, + sym__comprehension_clauses, + [49698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1840), 7, + ACTIONS(2017), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [50986] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [49711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 7, + ACTIONS(1876), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -65304,555 +64152,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_EQ, sym_type_conversion, - [50999] = 6, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2157), 1, - anon_sym_LBRACE2, - ACTIONS(2161), 1, - sym__not_escape_sequence, - ACTIONS(2163), 1, - sym__string_end, - STATE(994), 1, - aux_sym_string_content_repeat1, - ACTIONS(2159), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51020] = 5, + [49724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_if, - ACTIONS(1867), 1, - anon_sym_and, - ACTIONS(1869), 1, - anon_sym_or, - ACTIONS(2165), 4, + ACTIONS(2147), 1, + anon_sym_as, + ACTIONS(2145), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RBRACE, - [51039] = 2, + [49739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2095), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(2097), 1, anon_sym_and, + ACTIONS(2099), 1, anon_sym_or, - [51052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1955), 7, + ACTIONS(1857), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [51065] = 5, + [49758] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(2167), 4, - anon_sym_RPAREN, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2101), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51084] = 5, + STATE(1089), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2149), 2, + sym__newline, + sym__semicolon, + [49781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2151), 1, sym_identifier, - ACTIONS(2171), 1, + ACTIONS(2153), 1, anon_sym_STAR, - ACTIONS(2173), 1, + ACTIONS(2155), 1, anon_sym_STAR_STAR, - STATE(1317), 4, + STATE(1334), 4, sym_typevar_parameter, sym_typevartuple_parameter, sym_paramspec_parameter, sym__type_parameter, - [51103] = 4, + [49800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(1871), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [51120] = 5, + ACTIONS(2151), 1, + sym_identifier, + ACTIONS(2153), 1, + anon_sym_STAR, + ACTIONS(2155), 1, + anon_sym_STAR_STAR, + STATE(1278), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [49819] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2157), 1, + sym_identifier, + ACTIONS(2159), 1, + anon_sym_DOT, + ACTIONS(2161), 1, + anon_sym___future__, + STATE(1124), 1, + aux_sym_import_prefix_repeat1, + STATE(1254), 1, + sym_import_prefix, + STATE(1387), 2, + sym_relative_import, + sym_dotted_name, + [49842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2177), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(2179), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(1894), 4, + ACTIONS(2163), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_COLON, - [51139] = 4, + anon_sym_EQ, + [49861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(1849), 5, + ACTIONS(2117), 1, + anon_sym_except, + ACTIONS(2119), 1, + anon_sym_finally, + STATE(497), 1, + sym_finally_clause, + STATE(223), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(232), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [49882] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + anon_sym_except, + ACTIONS(2127), 1, + anon_sym_finally, + STATE(514), 1, + sym_finally_clause, + STATE(224), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(236), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [49903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - [51156] = 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + sym_type_conversion, + [49916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, anon_sym_and, - ACTIONS(1879), 6, + ACTIONS(2099), 1, + anon_sym_or, + ACTIONS(1835), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_or, - [51171] = 5, + [49935] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(2181), 4, - anon_sym_RPAREN, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2053), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [51190] = 4, + STATE(1059), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2165), 2, + sym__newline, + sym__semicolon, + [49958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2097), 1, anon_sym_and, - ACTIONS(2177), 1, + ACTIONS(2099), 1, anon_sym_or, - ACTIONS(1879), 5, + ACTIONS(1823), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [51207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 1, - anon_sym_except, - ACTIONS(2151), 1, - anon_sym_finally, - STATE(575), 1, - sym_finally_clause, - STATE(235), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(237), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [51228] = 7, + [49975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - anon_sym_COMMA, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - STATE(1074), 1, + ACTIONS(2053), 1, + anon_sym_COMMA, + STATE(1059), 1, aux_sym_expression_list_repeat1, - ACTIONS(1873), 2, + ACTIONS(2167), 2, sym__newline, sym__semicolon, - [51251] = 5, + [49998] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, + anon_sym_or, ACTIONS(2169), 1, - sym_identifier, - ACTIONS(2171), 1, - anon_sym_STAR, + anon_sym_COMMA, + STATE(1103), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2171), 2, + sym__newline, + sym__semicolon, + [50021] = 6, + ACTIONS(1898), 1, + sym_comment, ACTIONS(2173), 1, - anon_sym_STAR_STAR, - STATE(1297), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [51270] = 5, + anon_sym_LBRACE2, + ACTIONS(2178), 1, + sym__not_escape_sequence, + ACTIONS(2181), 1, + sym__string_end, + STATE(1004), 1, + aux_sym_string_content_repeat1, + ACTIONS(2175), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [50042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2097), 1, anon_sym_and, - ACTIONS(2177), 1, + ACTIONS(2099), 1, anon_sym_or, - ACTIONS(2179), 1, - anon_sym_if, - ACTIONS(1898), 4, + ACTIONS(1861), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_if, anon_sym_COLON, - [51289] = 5, + [50059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(2097), 1, anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2179), 1, - anon_sym_if, - ACTIONS(1883), 4, + ACTIONS(1855), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_if, anon_sym_COLON, - [51308] = 8, + anon_sym_or, + [50074] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, ACTIONS(2183), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(2185), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(2187), 1, - anon_sym_RBRACK, - STATE(1281), 1, - aux_sym_subscript_repeat1, - [51333] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, - anon_sym_or, - ACTIONS(2189), 1, - anon_sym_COMMA, - STATE(1130), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2191), 2, - sym__newline, - sym__semicolon, - [51356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 1, - anon_sym_except, - ACTIONS(2195), 1, - anon_sym_finally, - STATE(522), 1, - sym_finally_clause, - STATE(238), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(243), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [51377] = 7, + anon_sym_STAR, + STATE(1049), 1, + sym_dotted_name, + STATE(1142), 1, + sym_aliased_import, + STATE(1326), 1, + sym_wildcard_import, + STATE(1327), 1, + sym__import_list, + [50099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(2097), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2099), 1, anon_sym_or, - ACTIONS(2153), 1, - anon_sym_COMMA, - STATE(1131), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2197), 2, - sym__newline, - sym__semicolon, - [51400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 7, + ACTIONS(1855), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51413] = 8, + anon_sym_COLON, + [50116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2185), 1, - anon_sym_COLON, - ACTIONS(2201), 1, - anon_sym_COMMA, - ACTIONS(2203), 1, - anon_sym_RBRACK, - STATE(1280), 1, - aux_sym_subscript_repeat1, - [51438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2082), 7, + ACTIONS(2189), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51451] = 7, + [50135] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - anon_sym_COMMA, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - STATE(1074), 1, + ACTIONS(2053), 1, + anon_sym_COMMA, + STATE(1059), 1, aux_sym_expression_list_repeat1, - ACTIONS(2205), 2, + ACTIONS(2191), 2, sym__newline, sym__semicolon, - [51474] = 5, + [50158] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1955), 4, - sym__newline, - anon_sym_from, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2193), 3, + anon_sym_RPAREN, anon_sym_COMMA, - sym__semicolon, - [51493] = 7, + anon_sym_COLON, + [50176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - anon_sym_COMMA, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, - anon_sym_or, - STATE(1074), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2207), 2, + ACTIONS(2197), 1, + anon_sym_AT, + STATE(1012), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(2195), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [50192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2200), 1, + anon_sym_DOT, + STATE(1035), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2202), 4, sym__newline, + anon_sym_COMMA, + anon_sym_as, sym__semicolon, - [51516] = 8, + [50208] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2185), 1, - anon_sym_COLON, - ACTIONS(2209), 1, + ACTIONS(1878), 1, anon_sym_COMMA, - ACTIONS(2211), 1, - anon_sym_RBRACK, - STATE(1284), 1, - aux_sym_subscript_repeat1, - [51541] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 1, - anon_sym_COMMA, - ACTIONS(2023), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, - anon_sym_or, - STATE(1074), 1, + ACTIONS(2204), 1, + anon_sym_COLON, + STATE(944), 1, aux_sym_expression_list_repeat1, - ACTIONS(2213), 2, - sym__newline, - sym__semicolon, - [51564] = 6, - ACTIONS(3), 1, + [50230] = 3, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2193), 1, - anon_sym_except, - ACTIONS(2195), 1, - anon_sym_finally, - STATE(481), 1, - sym_finally_clause, - STATE(223), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(225), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [51585] = 8, + ACTIONS(2206), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2208), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [50244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(2215), 1, + ACTIONS(1829), 1, + anon_sym_DOT, + STATE(865), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2202), 4, + anon_sym_import, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2217), 1, - anon_sym_RBRACE, - STATE(942), 1, - sym_for_in_clause, - STATE(1182), 1, - aux_sym_dictionary_repeat1, - STATE(1390), 1, - sym__comprehension_clauses, - [51610] = 8, + anon_sym_as, + [50260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(2219), 1, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2210), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2221), 1, - anon_sym_RBRACE, - STATE(942), 1, - sym_for_in_clause, - STATE(1285), 1, - aux_sym_dictionary_repeat1, - STATE(1432), 1, - sym__comprehension_clauses, - [51635] = 6, + sym__semicolon, + [50278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2179), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(2225), 1, - anon_sym_as, - ACTIONS(2223), 3, - anon_sym_RPAREN, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2212), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, - [51656] = 2, + sym__semicolon, + [50296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 7, + ACTIONS(2214), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51669] = 8, + [50308] = 3, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(2216), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2218), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [50322] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_async, - ACTIONS(1863), 1, - anon_sym_for, - ACTIONS(2229), 1, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1878), 1, anon_sym_COMMA, - ACTIONS(2231), 1, - anon_sym_RBRACE, - STATE(942), 1, - sym_for_in_clause, - STATE(1242), 1, - aux_sym_dictionary_repeat1, - STATE(1452), 1, - sym__comprehension_clauses, - [51694] = 7, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2220), 1, + anon_sym_COLON, + STATE(944), 1, + aux_sym_expression_list_repeat1, + [50344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(1977), 1, - anon_sym_RPAREN, - ACTIONS(1979), 1, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2163), 3, + sym__newline, + anon_sym_EQ, + sym__semicolon, + [50362] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2224), 1, + anon_sym_COLON, + ACTIONS(2226), 1, + anon_sym_EQ, + STATE(1147), 1, + sym__type_bound, + STATE(1295), 1, + sym__type_param_default, + ACTIONS(2222), 2, anon_sym_COMMA, - STATE(1277), 1, - aux_sym_argument_list_repeat1, - [51716] = 4, + anon_sym_RBRACK, + [50382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - anon_sym_DOT, - STATE(1037), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1844), 4, - sym__newline, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_and, + ACTIONS(2099), 1, + anon_sym_or, + ACTIONS(2230), 1, + anon_sym_COLON, + ACTIONS(2228), 2, anon_sym_COMMA, anon_sym_as, - sym__semicolon, - [51732] = 7, + [50402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1875), 1, - anon_sym_COMMA, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2236), 1, + ACTIONS(2234), 1, anon_sym_COLON, - STATE(951), 1, - aux_sym_expression_list_repeat1, - [51754] = 3, - ACTIONS(1933), 1, + ACTIONS(2232), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [50422] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2236), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ, + [50440] = 3, + ACTIONS(1898), 1, sym_comment, ACTIONS(2238), 2, anon_sym_LBRACE2, @@ -65862,3794 +64684,3601 @@ static const uint16_t ts_small_parse_table[] = { sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [51768] = 5, + [50454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, + ACTIONS(2244), 1, + anon_sym_COMMA, + STATE(1028), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(2242), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(2025), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [50470] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(2181), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [51786] = 5, + ACTIONS(1878), 1, + anon_sym_COMMA, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2247), 1, + anon_sym_COLON, + STATE(944), 1, + aux_sym_expression_list_repeat1, + [50492] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2242), 3, - anon_sym_RPAREN, + ACTIONS(1878), 1, anon_sym_COMMA, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2249), 1, anon_sym_COLON, - [51804] = 4, + STATE(944), 1, + aux_sym_expression_list_repeat1, + [50514] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_DOT, - STATE(1037), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2246), 4, - sym__newline, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(1929), 1, + anon_sym_RPAREN, + ACTIONS(1931), 1, anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [51820] = 3, - ACTIONS(1933), 1, + STATE(1250), 1, + aux_sym_argument_list_repeat1, + [50536] = 3, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2248), 2, + ACTIONS(2251), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2250), 4, + ACTIONS(2253), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [51834] = 6, - ACTIONS(3), 1, + [50550] = 3, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2254), 1, - anon_sym_COLON, - ACTIONS(2256), 1, - anon_sym_EQ, - STATE(1161), 1, - sym__type_bound, - STATE(1374), 1, - sym__type_param_default, - ACTIONS(2252), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [51854] = 5, + ACTIONS(2255), 2, + anon_sym_LBRACE2, + sym__not_escape_sequence, + ACTIONS(2257), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [50564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(2099), 1, anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2258), 3, + ACTIONS(2261), 1, + anon_sym_COLON, + ACTIONS(2259), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ, - [51872] = 4, + anon_sym_as, + [50584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(2263), 1, anon_sym_DOT, - STATE(887), 1, + STATE(1035), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2246), 4, - anon_sym_import, - anon_sym_RPAREN, + ACTIONS(1818), 4, + sym__newline, anon_sym_COMMA, anon_sym_as, - [51888] = 7, + sym__semicolon, + [50600] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1875), 1, + ACTIONS(1878), 1, anon_sym_COMMA, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2260), 1, + ACTIONS(2266), 1, anon_sym_COLON, - STATE(951), 1, + STATE(944), 1, aux_sym_expression_list_repeat1, - [51910] = 3, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2262), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2264), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [51924] = 7, + [50622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(1875), 1, + ACTIONS(2268), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2266), 1, - anon_sym_COLON, - STATE(951), 1, - aux_sym_expression_list_repeat1, - [51946] = 3, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2268), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2270), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [51960] = 6, + sym__semicolon, + [50640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1890), 6, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2274), 1, anon_sym_COLON, - ACTIONS(2272), 2, - anon_sym_COMMA, anon_sym_RBRACK, - [51980] = 6, + anon_sym_RBRACE, + [50652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2278), 1, - anon_sym_COLON, - ACTIONS(2276), 2, + ACTIONS(2200), 1, + anon_sym_DOT, + STATE(1013), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2270), 4, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [52000] = 3, - ACTIONS(1933), 1, + anon_sym_as, + sym__semicolon, + [50668] = 3, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2280), 2, + ACTIONS(2272), 2, anon_sym_LBRACE2, sym__not_escape_sequence, - ACTIONS(2282), 4, + ACTIONS(2274), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [52014] = 6, + [50682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2185), 1, + ACTIONS(2278), 1, anon_sym_COLON, - ACTIONS(2284), 2, + ACTIONS(2276), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52034] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2288), 1, - anon_sym_AT, - STATE(1055), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(2286), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [52050] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2179), 1, - anon_sym_if, - ACTIONS(2293), 1, - anon_sym_COLON, - ACTIONS(2291), 2, - anon_sym_COMMA, - anon_sym_as, - [52070] = 7, + [50702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1875), 1, + ACTIONS(1878), 1, anon_sym_COMMA, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2295), 1, + ACTIONS(2280), 1, anon_sym_COLON, - STATE(951), 1, + STATE(944), 1, aux_sym_expression_list_repeat1, - [52092] = 4, + [50724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(1829), 1, anon_sym_DOT, - STATE(1046), 1, + STATE(1016), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2297), 4, + ACTIONS(2270), 4, anon_sym_import, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [52108] = 5, + [50740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(2299), 3, - sym__newline, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2284), 1, + anon_sym_COLON, + ACTIONS(2282), 2, anon_sym_COMMA, - sym__semicolon, - [52126] = 5, + anon_sym_RBRACK, + [50760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(2301), 3, - sym__newline, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2286), 3, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + [50778] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + sym_identifier, + STATE(1119), 1, + sym_dotted_name, + STATE(1242), 1, + sym_aliased_import, + ACTIONS(2288), 2, + sym__newline, sym__semicolon, - [52144] = 4, + [50795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 1, - anon_sym_COMMA, - STATE(1061), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2303), 4, - anon_sym_RPAREN, + ACTIONS(2095), 1, anon_sym_if, + ACTIONS(2097), 1, + anon_sym_and, + ACTIONS(2099), 1, + anon_sym_or, + ACTIONS(2290), 1, + anon_sym_as, + ACTIONS(2292), 1, anon_sym_COLON, - anon_sym_RBRACK, - [52160] = 2, + [50814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 6, - anon_sym_RPAREN, + ACTIONS(2296), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, + STATE(1073), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2294), 3, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [52172] = 6, + [50829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2179), 1, - anon_sym_if, - ACTIONS(2312), 1, - anon_sym_COLON, - ACTIONS(2310), 2, + ACTIONS(2298), 1, anon_sym_COMMA, + ACTIONS(2300), 1, anon_sym_as, - [52192] = 5, + STATE(1126), 1, + aux_sym__import_list_repeat1, + ACTIONS(2302), 2, + sym__newline, + sym__semicolon, + [50846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2314), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [52210] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(2316), 3, + ACTIONS(2304), 2, sym__newline, - anon_sym_COMMA, sym__semicolon, - [52228] = 7, + [50863] = 6, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(2306), 1, + anon_sym_RBRACE, + ACTIONS(2308), 1, + anon_sym_LBRACE2, + ACTIONS(2310), 1, + aux_sym_format_specifier_token1, + STATE(1058), 1, + aux_sym_format_specifier_repeat1, + STATE(1222), 1, + sym_interpolation, + [50882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1875), 1, - anon_sym_COMMA, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2318), 1, + ACTIONS(2312), 1, anon_sym_COLON, - STATE(951), 1, - aux_sym_expression_list_repeat1, - [52250] = 7, + ACTIONS(2314), 1, + anon_sym_RBRACE, + ACTIONS(2316), 1, + anon_sym_EQ, + ACTIONS(2318), 1, + sym_type_conversion, + STATE(1384), 1, + sym_format_specifier, + [50901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(2099), 1, anon_sym_or, - ACTIONS(1875), 1, - anon_sym_COMMA, - ACTIONS(1877), 1, - anon_sym_if, ACTIONS(2320), 1, + anon_sym_as, + ACTIONS(2322), 1, anon_sym_COLON, - STATE(951), 1, - aux_sym_expression_list_repeat1, - [52272] = 3, - ACTIONS(1933), 1, + [50920] = 6, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2322), 2, + ACTIONS(2324), 1, + anon_sym_RBRACE, + ACTIONS(2326), 1, anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2324), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [52286] = 2, + ACTIONS(2329), 1, + aux_sym_format_specifier_token1, + STATE(1054), 1, + aux_sym_format_specifier_repeat1, + STATE(1222), 1, + sym_interpolation, + [50939] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1880), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(2332), 2, + anon_sym_COMMA, anon_sym_RBRACK, + [50956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2139), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [52298] = 4, + [50973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_DOT, - STATE(1042), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2297), 4, + ACTIONS(1818), 5, sym__newline, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, sym__semicolon, - [52314] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2328), 1, - anon_sym_COLON, - ACTIONS(2330), 1, - anon_sym_LBRACK, - STATE(1255), 1, - sym_type_parameters, - STATE(1442), 1, - sym_argument_list, - [52333] = 4, - ACTIONS(3), 1, + [50984] = 6, + ACTIONS(1898), 1, sym_comment, + ACTIONS(2308), 1, + anon_sym_LBRACE2, ACTIONS(2334), 1, - anon_sym_COMMA, - STATE(1077), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2332), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_RBRACE, - [52348] = 6, - ACTIONS(3), 1, - sym_comment, ACTIONS(2336), 1, - anon_sym_COLON, - ACTIONS(2338), 1, - anon_sym_RBRACE, - ACTIONS(2340), 1, - anon_sym_EQ, - ACTIONS(2342), 1, - sym_type_conversion, - STATE(1441), 1, - sym_format_specifier, - [52367] = 4, + aux_sym_format_specifier_token1, + STATE(1054), 1, + aux_sym_format_specifier_repeat1, + STATE(1222), 1, + sym_interpolation, + [51003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(2338), 1, anon_sym_COMMA, - STATE(1107), 1, + STATE(1080), 1, aux_sym_expression_list_repeat1, - ACTIONS(2039), 3, + ACTIONS(2041), 3, sym__newline, anon_sym_from, sym__semicolon, - [52382] = 2, + [51018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 5, - sym__newline, - anon_sym_DOT, + ACTIONS(2340), 1, anon_sym_COMMA, - anon_sym_as, + STATE(1080), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2041), 3, + sym__newline, + anon_sym_from, sym__semicolon, - [52393] = 5, + [51033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(2346), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52410] = 4, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(1953), 2, + sym__newline, + sym__semicolon, + [51050] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, + sym_identifier, + STATE(1119), 1, + sym_dotted_name, + STATE(1242), 1, + sym_aliased_import, + ACTIONS(2288), 2, + sym__newline, + sym__semicolon, + [51067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 1, + ACTIONS(2342), 1, anon_sym_COMMA, - STATE(1077), 1, + STATE(1073), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2348), 3, + ACTIONS(2294), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [52425] = 5, + [51082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2353), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(2355), 2, + ACTIONS(2344), 2, sym__newline, sym__semicolon, - [52459] = 4, + [51099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(1845), 1, anon_sym_COMMA, - STATE(1107), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2039), 3, - sym__newline, - anon_sym_from, - sym__semicolon, - [52474] = 5, + STATE(1063), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(1853), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [51114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2359), 2, + ACTIONS(2346), 2, anon_sym_RPAREN, anon_sym_COMMA, - [52491] = 5, + [51131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2361), 2, + ACTIONS(2348), 2, anon_sym_RPAREN, anon_sym_COMMA, - [52508] = 5, + [51148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(2363), 2, - sym__newline, - sym__semicolon, - [52525] = 6, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2350), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51165] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2177), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(2179), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2365), 1, - anon_sym_as, - ACTIONS(2367), 1, - anon_sym_COLON, - [52544] = 5, + ACTIONS(2352), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [51182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 1, - anon_sym_COMMA, - ACTIONS(2371), 1, - anon_sym_as, - STATE(1124), 1, - aux_sym__import_list_repeat1, - ACTIONS(2373), 2, - sym__newline, - sym__semicolon, - [52561] = 5, + ACTIONS(2183), 1, + sym_identifier, + ACTIONS(2354), 1, + anon_sym_LPAREN, + STATE(1049), 1, + sym_dotted_name, + STATE(1142), 1, + sym_aliased_import, + STATE(1330), 1, + sym__import_list, + [51201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(2356), 1, + anon_sym_LPAREN, + ACTIONS(2358), 1, + anon_sym_COLON, + ACTIONS(2360), 1, + anon_sym_LBRACK, + STATE(1257), 1, + sym_type_parameters, + STATE(1415), 1, + sym_argument_list, + [51220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2165), 2, + ACTIONS(2362), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2366), 1, anon_sym_COMMA, + STATE(1073), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2364), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - [52578] = 5, + [51252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, - anon_sym_and, - ACTIONS(2027), 1, - anon_sym_or, - ACTIONS(2375), 2, - sym__newline, - sym__semicolon, - [52595] = 5, + ACTIONS(2312), 1, + anon_sym_COLON, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(2371), 1, + anon_sym_EQ, + ACTIONS(2373), 1, + sym_type_conversion, + STATE(1456), 1, + sym_format_specifier, + [51271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2183), 1, sym_identifier, - STATE(1158), 1, + STATE(1119), 1, sym_dotted_name, - STATE(1195), 1, + STATE(1242), 1, sym_aliased_import, - ACTIONS(2377), 2, + ACTIONS(2375), 2, sym__newline, sym__semicolon, - [52612] = 5, + [51288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2379), 2, - anon_sym_RPAREN, + ACTIONS(2377), 2, anon_sym_COMMA, - [52629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_COLON, - ACTIONS(2381), 1, - anon_sym_RBRACE, - ACTIONS(2383), 1, - anon_sym_EQ, - ACTIONS(2385), 1, - sym_type_conversion, - STATE(1476), 1, - sym_format_specifier, - [52648] = 2, + anon_sym_RBRACK, + [51305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 5, + ACTIONS(2379), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [52659] = 5, + [51316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(2013), 1, anon_sym_if, - ACTIONS(2389), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52676] = 5, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2381), 2, + sym__newline, + sym__semicolon, + [51333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2391), 2, + ACTIONS(2383), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52693] = 6, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(2395), 1, - anon_sym_LBRACE2, - ACTIONS(2398), 1, - aux_sym_format_specifier_token1, - STATE(1094), 1, - aux_sym_format_specifier_repeat1, - STATE(1245), 1, - sym_interpolation, - [52712] = 2, + [51350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2303), 5, - anon_sym_RPAREN, + ACTIONS(2385), 1, anon_sym_COMMA, - anon_sym_if, + STATE(1080), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2032), 3, + sym__newline, + anon_sym_from, + sym__semicolon, + [51365] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN, + ACTIONS(2360), 1, + anon_sym_LBRACK, + ACTIONS(2388), 1, anon_sym_COLON, - anon_sym_RBRACK, - [52723] = 4, + STATE(1181), 1, + sym_type_parameters, + STATE(1365), 1, + sym_argument_list, + [51384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2401), 1, - anon_sym_COMMA, - STATE(1077), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2332), 3, + ACTIONS(2242), 5, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - [52738] = 5, + [51395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, anon_sym_or, - ACTIONS(2403), 2, + ACTIONS(2390), 2, sym__newline, sym__semicolon, - [52755] = 6, - ACTIONS(1933), 1, + [51412] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2405), 1, - anon_sym_RBRACE, - ACTIONS(2407), 1, - anon_sym_LBRACE2, - ACTIONS(2409), 1, - aux_sym_format_specifier_token1, - STATE(1108), 1, - aux_sym_format_specifier_repeat1, - STATE(1245), 1, - sym_interpolation, - [52774] = 5, + ACTIONS(2392), 1, + anon_sym_case, + STATE(516), 1, + sym_cases, + STATE(328), 2, + sym_case_block, + aux_sym_cases_repeat1, + [51426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2411), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52791] = 4, + ACTIONS(2394), 1, + anon_sym_else, + [51442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2101), 1, anon_sym_COMMA, - STATE(1096), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(1865), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52806] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2413), 1, - anon_sym_LPAREN, - STATE(1085), 1, - sym_dotted_name, - STATE(1154), 1, - sym_aliased_import, - STATE(1375), 1, - sym__import_list, - [52825] = 5, + STATE(1137), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2396), 2, + sym__newline, + sym__semicolon, + [51456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1918), 2, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2398), 1, + anon_sym_else, + [51472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 4, sym__newline, + anon_sym_from, + anon_sym_COMMA, sym__semicolon, - [52842] = 5, + [51482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - STATE(1158), 1, - sym_dotted_name, - STATE(1195), 1, - sym_aliased_import, - ACTIONS(2415), 2, + ACTIONS(2101), 1, + anon_sym_COMMA, + STATE(1137), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2400), 2, sym__newline, sym__semicolon, - [52859] = 6, + [51496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2330), 1, + ACTIONS(2360), 1, anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_COLON, - STATE(1269), 1, + ACTIONS(2402), 1, + anon_sym_LPAREN, + STATE(1323), 1, sym_type_parameters, - STATE(1439), 1, - sym_argument_list, - [52878] = 5, + STATE(1324), 1, + sym_parameters, + [51512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, + ACTIONS(2288), 1, + anon_sym_RPAREN, + ACTIONS(2404), 1, sym_identifier, - STATE(1158), 1, + STATE(1212), 1, sym_dotted_name, - STATE(1195), 1, + STATE(1306), 1, sym_aliased_import, - ACTIONS(2377), 2, - sym__newline, - sym__semicolon, - [52895] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 1, - anon_sym_and, - ACTIONS(2177), 1, - anon_sym_or, - ACTIONS(2179), 1, - anon_sym_if, - ACTIONS(2419), 1, - anon_sym_as, - ACTIONS(2421), 1, - anon_sym_COLON, - [52914] = 4, + [51528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 1, + ACTIONS(2406), 1, anon_sym_COMMA, - STATE(1107), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2063), 3, + STATE(1116), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2408), 2, sym__newline, - anon_sym_from, sym__semicolon, - [52929] = 6, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LBRACE2, - ACTIONS(2426), 1, - anon_sym_RBRACE, - ACTIONS(2428), 1, - aux_sym_format_specifier_token1, - STATE(1094), 1, - aux_sym_format_specifier_repeat1, - STATE(1245), 1, - sym_interpolation, - [52948] = 5, + [51542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2430), 1, + ACTIONS(2410), 1, anon_sym_COLON, - [52964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2432), 1, - anon_sym_else, - [52980] = 5, + [51558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2121), 1, - sym_identifier, - STATE(1085), 1, - sym_dotted_name, - STATE(1154), 1, - sym_aliased_import, - STATE(1365), 1, - sym__import_list, - [52996] = 5, + ACTIONS(2226), 1, + anon_sym_EQ, + STATE(1336), 1, + sym__type_param_default, + ACTIONS(2412), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2434), 1, + ACTIONS(2414), 1, anon_sym_COLON, - [53012] = 5, + [51588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2288), 1, anon_sym_RPAREN, - ACTIONS(2436), 1, + ACTIONS(2404), 1, sym_identifier, - STATE(1253), 1, + STATE(1212), 1, sym_dotted_name, - STATE(1326), 1, + STATE(1306), 1, sym_aliased_import, - [53028] = 4, + [51604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_COLON, - ACTIONS(2442), 1, - anon_sym_EQ, - ACTIONS(2438), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53042] = 5, + ACTIONS(2392), 1, + anon_sym_case, + STATE(468), 1, + sym_cases, + STATE(328), 2, + sym_case_block, + aux_sym_cases_repeat1, + [51618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2444), 1, + ACTIONS(2416), 1, anon_sym_COLON, - [53058] = 5, + [51634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2418), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [51644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_COLON, + ACTIONS(2424), 1, + anon_sym_EQ, + ACTIONS(2420), 2, anon_sym_RPAREN, - ACTIONS(2436), 1, - sym_identifier, - STATE(1253), 1, - sym_dotted_name, - STATE(1326), 1, - sym_aliased_import, - [53074] = 5, + anon_sym_COMMA, + [51658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2446), 1, + ACTIONS(2426), 1, anon_sym_COLON, - [53090] = 5, + [51674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, + ACTIONS(2360), 1, anon_sym_LBRACK, - ACTIONS(2448), 1, + ACTIONS(2402), 1, anon_sym_LPAREN, - STATE(1329), 1, + STATE(1342), 1, sym_parameters, - STATE(1332), 1, + STATE(1343), 1, sym_type_parameters, - [53106] = 4, + [51690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2428), 1, anon_sym_COMMA, - STATE(1141), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2452), 2, + STATE(1135), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2430), 2, sym__newline, sym__semicolon, - [53120] = 4, + [51704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2432), 1, anon_sym_COMMA, - STATE(1143), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2454), 2, + STATE(1135), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2434), 2, sym__newline, sym__semicolon, - [53134] = 5, + [51718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2025), 1, + ACTIONS(2436), 1, + anon_sym_case, + STATE(499), 1, + sym_cases, + STATE(335), 2, + sym_case_block, + aux_sym_cases_repeat1, + [51732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_case, + STATE(498), 1, + sym_cases, + STATE(335), 2, + sym_case_block, + aux_sym_cases_repeat1, + [51746] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(2027), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(2456), 1, - sym__newline, - [53150] = 5, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2438), 1, + anon_sym_else, + [51762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2458), 1, + ACTIONS(2440), 1, anon_sym_COLON, - [53166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2460), 1, - anon_sym_COMMA, - STATE(1155), 1, - aux_sym__import_list_repeat1, - ACTIONS(2462), 2, - sym__newline, - sym__semicolon, - [53180] = 4, + [51778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(2302), 1, + anon_sym_RPAREN, + ACTIONS(2442), 1, anon_sym_COMMA, - STATE(1155), 1, + ACTIONS(2444), 1, + anon_sym_as, + STATE(1153), 1, aux_sym__import_list_repeat1, - ACTIONS(2462), 2, - sym__newline, - sym__semicolon, - [53194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 1, - anon_sym_DOT, - STATE(1125), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2466), 2, - anon_sym_import, - sym_identifier, - [53208] = 5, + [51794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2471), 1, + ACTIONS(2446), 1, + anon_sym_COLON, + [51810] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2312), 1, anon_sym_COLON, - [53224] = 4, + ACTIONS(2448), 1, + anon_sym_RBRACE, + ACTIONS(2450), 1, + sym_type_conversion, + STATE(1454), 1, + sym_format_specifier, + [51826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2475), 1, + ACTIONS(2454), 1, anon_sym_COMMA, - STATE(854), 1, + STATE(1118), 1, aux_sym__patterns_repeat1, - ACTIONS(2473), 2, + ACTIONS(2452), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [53238] = 4, + [51840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 1, + ACTIONS(2226), 1, + anon_sym_EQ, + STATE(1337), 1, + sym__type_param_default, + ACTIONS(2456), 2, anon_sym_COMMA, - STATE(1129), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2479), 2, - sym__newline, - sym__semicolon, - [53252] = 4, + anon_sym_RBRACK, + [51854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 1, + ACTIONS(2458), 1, anon_sym_COMMA, - STATE(1159), 1, + STATE(1104), 1, aux_sym_print_statement_repeat1, - ACTIONS(2483), 2, + ACTIONS(2460), 2, sym__newline, sym__semicolon, - [53266] = 4, + [51868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2163), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1159), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2487), 2, - sym__newline, - sym__semicolon, - [53280] = 4, + anon_sym_COLON, + anon_sym_EQ, + [51878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, + ACTIONS(2406), 1, anon_sym_COMMA, - STATE(1157), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2489), 2, + STATE(1125), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2462), 2, sym__newline, sym__semicolon, - [53294] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2491), 1, - anon_sym_else, - [53310] = 4, + [51892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_COMMA, - STATE(1133), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2496), 2, - sym__newline, - sym__semicolon, - [53324] = 4, + ACTIONS(2312), 1, + anon_sym_COLON, + ACTIONS(2464), 1, + anon_sym_RBRACE, + ACTIONS(2466), 1, + sym_type_conversion, + STATE(1430), 1, + sym_format_specifier, + [51908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 1, + ACTIONS(2470), 1, anon_sym_COMMA, - STATE(1127), 1, + STATE(832), 1, aux_sym__patterns_repeat1, - ACTIONS(2498), 2, + ACTIONS(2468), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [53338] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(1330), 1, - sym_type_parameters, - STATE(1383), 1, - sym_parameters, - [53354] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_case, - STATE(556), 1, - sym_cases, - STATE(345), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53368] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2502), 1, - anon_sym_case, - STATE(555), 1, - sym_cases, - STATE(345), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53382] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2504), 1, - anon_sym_COLON, - [53398] = 4, + [51922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - sym__string_start, - ACTIONS(1896), 1, - anon_sym_COLON, - STATE(582), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - [53412] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2506), 1, - anon_sym_COLON, - [53428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_COMMA, - STATE(1133), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2508), 2, + ACTIONS(2300), 1, + anon_sym_as, + ACTIONS(2472), 3, sym__newline, + anon_sym_COMMA, sym__semicolon, - [53442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_and, - ACTIONS(1853), 1, - anon_sym_or, - ACTIONS(1877), 1, - anon_sym_if, - ACTIONS(2510), 1, - anon_sym_COLON, - [53458] = 4, + [51934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2474), 1, anon_sym_COMMA, - STATE(1133), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2512), 2, + STATE(1120), 1, + aux_sym__import_list_repeat1, + ACTIONS(2477), 2, sym__newline, sym__semicolon, - [53472] = 4, + [51948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 1, + sym_identifier, + STATE(1109), 1, + sym_dotted_name, + STATE(1231), 1, + sym_aliased_import, + STATE(1432), 1, + sym__import_list, + [51964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, + ACTIONS(2481), 1, anon_sym_DOT, - STATE(1125), 1, + STATE(1122), 1, aux_sym_import_prefix_repeat1, - ACTIONS(2514), 2, + ACTIONS(2479), 2, anon_sym_import, sym_identifier, - [53486] = 4, + [51978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, - anon_sym_COMMA, - STATE(1145), 1, - aux_sym_with_clause_repeat1, - ACTIONS(2518), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [53500] = 2, + ACTIONS(2404), 1, + sym_identifier, + STATE(1109), 1, + sym_dotted_name, + STATE(1231), 1, + sym_aliased_import, + STATE(1436), 1, + sym__import_list, + [51994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [53510] = 4, + ACTIONS(2486), 1, + anon_sym_DOT, + STATE(1122), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2484), 2, + anon_sym_import, + sym_identifier, + [52008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, + ACTIONS(2488), 1, anon_sym_COMMA, - STATE(1061), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1701), 2, - anon_sym_if, - anon_sym_COLON, - [53524] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(1315), 1, - sym_type_parameters, - STATE(1345), 1, - sym_parameters, - [53540] = 5, + STATE(1125), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2491), 2, + sym__newline, + sym__semicolon, + [52022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_COLON, - ACTIONS(2527), 1, - anon_sym_RBRACE, - ACTIONS(2529), 1, - sym_type_conversion, - STATE(1433), 1, - sym_format_specifier, - [53556] = 2, + ACTIONS(2493), 1, + anon_sym_COMMA, + STATE(1120), 1, + aux_sym__import_list_repeat1, + ACTIONS(2495), 2, + sym__newline, + sym__semicolon, + [52036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 4, - sym__newline, - anon_sym_from, + ACTIONS(2406), 1, anon_sym_COMMA, + STATE(1125), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2497), 2, + sym__newline, sym__semicolon, - [53566] = 5, + [52050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2531), 1, - anon_sym_else, - [53582] = 5, + ACTIONS(2499), 1, + anon_sym_COLON, + [52066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(1319), 1, - sym_type_parameters, - STATE(1342), 1, - sym_parameters, - [53598] = 2, + ACTIONS(2501), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 4, + ACTIONS(2503), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [53608] = 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + [52086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 1, - anon_sym_COMMA, - STATE(1123), 1, - aux_sym__import_list_repeat1, - ACTIONS(2373), 2, - sym__newline, - sym__semicolon, - [53622] = 4, + ACTIONS(2375), 1, + anon_sym_RPAREN, + ACTIONS(2404), 1, + sym_identifier, + STATE(1212), 1, + sym_dotted_name, + STATE(1306), 1, + sym_aliased_import, + [52102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2533), 1, + ACTIONS(2505), 1, anon_sym_COMMA, - STATE(1155), 1, + STATE(1120), 1, aux_sym__import_list_repeat1, - ACTIONS(2536), 2, + ACTIONS(2495), 2, sym__newline, sym__semicolon, - [53636] = 4, + [52116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 1, - anon_sym_EQ, - STATE(1336), 1, - sym__type_param_default, - ACTIONS(2538), 2, + ACTIONS(2189), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - [53650] = 4, + anon_sym_RBRACE, + [52126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(299), 1, + sym__string_start, + ACTIONS(1886), 1, + anon_sym_COLON, + STATE(565), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + [52140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 1, anon_sym_COMMA, - STATE(1157), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2299), 2, + STATE(1135), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2510), 2, sym__newline, sym__semicolon, - [53664] = 3, + [52154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_as, - ACTIONS(2543), 3, - sym__newline, + ACTIONS(2406), 1, anon_sym_COMMA, + STATE(1127), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2512), 2, + sym__newline, sym__semicolon, - [53676] = 4, + [52168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, + ACTIONS(2514), 1, anon_sym_COMMA, - STATE(1159), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2548), 2, + STATE(1137), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2210), 2, sym__newline, sym__semicolon, - [53690] = 5, + [52182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2550), 1, + ACTIONS(2517), 1, anon_sym_COLON, - [53706] = 4, + [52198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 1, - anon_sym_EQ, - STATE(1328), 1, - sym__type_param_default, - ACTIONS(2552), 2, + ACTIONS(2519), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, - anon_sym_case, - STATE(487), 1, - sym_cases, - STATE(334), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53734] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, + STATE(1028), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(1671), 2, + anon_sym_if, anon_sym_COLON, - ACTIONS(2556), 1, - anon_sym_RBRACE, - ACTIONS(2558), 1, - sym_type_conversion, - STATE(1495), 1, - sym_format_specifier, - [53750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, - anon_sym_case, - STATE(486), 1, - sym_cases, - STATE(334), 2, - sym_case_block, - aux_sym_cases_repeat1, - [53764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2373), 1, - anon_sym_RPAREN, - ACTIONS(2560), 1, - anon_sym_COMMA, - ACTIONS(2562), 1, - anon_sym_as, - STATE(1208), 1, - aux_sym__import_list_repeat1, - [53780] = 5, + [52212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2564), 1, - anon_sym_COLON, - [53796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2167), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53806] = 5, + ACTIONS(2521), 1, + anon_sym_else, + [52228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - anon_sym_RPAREN, - ACTIONS(2436), 1, - sym_identifier, - STATE(1253), 1, - sym_dotted_name, - STATE(1326), 1, - sym_aliased_import, - [53822] = 2, + ACTIONS(2360), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_LPAREN, + STATE(1294), 1, + sym_type_parameters, + STATE(1312), 1, + sym_parameters, + [52244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 4, - anon_sym_RPAREN, + ACTIONS(2298), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53832] = 2, + STATE(1132), 1, + aux_sym__import_list_repeat1, + ACTIONS(2302), 2, + sym__newline, + sym__semicolon, + [52258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 4, - anon_sym_RPAREN, + ACTIONS(2525), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2572), 1, - anon_sym_EQ, - ACTIONS(2570), 3, + STATE(1143), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2523), 2, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, - [53854] = 4, + [52272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2153), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2574), 2, - sym__newline, - sym__semicolon, - [53868] = 5, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2528), 1, + anon_sym_COLON, + [52288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2576), 1, + ACTIONS(2530), 1, anon_sym_COLON, - [53884] = 5, + [52304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, - sym_identifier, - STATE(1165), 1, - sym_dotted_name, - STATE(1215), 1, - sym_aliased_import, - STATE(1499), 1, - sym__import_list, - [53900] = 5, + ACTIONS(2360), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, + anon_sym_LPAREN, + STATE(1296), 1, + sym_type_parameters, + STATE(1315), 1, + sym_parameters, + [52320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(2226), 1, + anon_sym_EQ, + STATE(1283), 1, + sym__type_param_default, + ACTIONS(2532), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1825), 1, anon_sym_and, - ACTIONS(1853), 1, + ACTIONS(1827), 1, anon_sym_or, - ACTIONS(1877), 1, + ACTIONS(1880), 1, anon_sym_if, - ACTIONS(2578), 1, - anon_sym_else, - [53916] = 5, + ACTIONS(2534), 1, + anon_sym_COLON, + [52350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, + ACTIONS(1825), 1, + anon_sym_and, + ACTIONS(1827), 1, + anon_sym_or, + ACTIONS(1880), 1, + anon_sym_if, + ACTIONS(2536), 1, + anon_sym_COLON, + [52366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2183), 1, sym_identifier, - STATE(1165), 1, + STATE(1049), 1, sym_dotted_name, - STATE(1215), 1, + STATE(1142), 1, sym_aliased_import, - STATE(1496), 1, + STATE(1322), 1, sym__import_list, - [53932] = 4, + [52382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 1, + ACTIONS(2540), 1, anon_sym_EQ, - STATE(1344), 1, - sym__type_param_default, - ACTIONS(2580), 2, + ACTIONS(2538), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [53946] = 2, + anon_sym_COLON, + [52394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 3, + ACTIONS(1991), 1, + anon_sym_and, + ACTIONS(2013), 1, + anon_sym_if, + ACTIONS(2015), 1, + anon_sym_or, + ACTIONS(2542), 1, sym__newline, - anon_sym_COMMA, - sym__semicolon, - [53955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_COLON, - ACTIONS(2584), 1, - anon_sym_RBRACE, - STATE(1423), 1, - sym_format_specifier, - [53968] = 4, + [52410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(2495), 1, + anon_sym_RPAREN, + ACTIONS(2544), 1, anon_sym_COMMA, - ACTIONS(2586), 1, - anon_sym_in, - STATE(863), 1, - aux_sym__patterns_repeat1, - [53981] = 4, + STATE(1217), 1, + aux_sym__import_list_repeat1, + [52423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 1, + ACTIONS(2546), 1, sym_identifier, - ACTIONS(2590), 1, - sym_match_wildcard_pattern, - STATE(1091), 1, - sym_match_capture_pattern, - [53994] = 4, + ACTIONS(2548), 1, + anon_sym_RPAREN, + STATE(1311), 1, + sym_match_keyword_pattern, + [52436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_COMMA, - ACTIONS(2594), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_dictionary_repeat1, - [54007] = 4, + ACTIONS(2546), 1, + sym_identifier, + ACTIONS(2550), 1, + anon_sym_RPAREN, + STATE(1311), 1, + sym_match_keyword_pattern, + [52449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 1, - anon_sym_if, - ACTIONS(2598), 1, - anon_sym_COLON, - STATE(1443), 1, - sym_guard, - [54020] = 3, + ACTIONS(2183), 1, + sym_identifier, + STATE(1119), 1, + sym_dotted_name, + STATE(1242), 1, + sym_aliased_import, + [52462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, - anon_sym_COMMA, - ACTIONS(2602), 2, - anon_sym_if, + ACTIONS(2552), 3, + anon_sym_LPAREN, anon_sym_COLON, - [54031] = 4, + anon_sym_EQ, + [52471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2604), 1, + ACTIONS(2554), 1, + anon_sym_RPAREN, + ACTIONS(2556), 1, anon_sym_COMMA, - ACTIONS(2606), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_dictionary_repeat1, - [54044] = 4, + STATE(1208), 1, + aux_sym_match_class_pattern_repeat2, + [52484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(2554), 1, + anon_sym_RPAREN, + ACTIONS(2558), 1, anon_sym_COMMA, - ACTIONS(2608), 1, - anon_sym_in, - STATE(863), 1, - aux_sym__patterns_repeat1, - [54057] = 3, + STATE(1201), 1, + aux_sym_match_class_pattern_repeat1, + [52497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 1, - anon_sym_COLON, - ACTIONS(2438), 2, + ACTIONS(1677), 1, anon_sym_RPAREN, + ACTIONS(2560), 1, anon_sym_COMMA, - [54068] = 4, + STATE(1028), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [52510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, - sym__newline, - ACTIONS(2612), 1, + ACTIONS(2562), 1, sym__semicolon, - STATE(1240), 1, + ACTIONS(2564), 1, + sym__newline, + STATE(1270), 1, aux_sym__simple_statements_repeat1, - [54081] = 4, + [52523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, - anon_sym_RPAREN, - ACTIONS(2614), 1, - anon_sym_COMMA, - STATE(1077), 1, - aux_sym__collection_elements_repeat1, - [54094] = 4, + ACTIONS(1377), 3, + sym__newline, + anon_sym_in, + sym__semicolon, + [52532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(2566), 1, anon_sym_COMMA, - ACTIONS(2616), 1, - anon_sym_in, - STATE(863), 1, - aux_sym__patterns_repeat1, - [54107] = 4, + ACTIONS(2568), 1, + anon_sym_RBRACE, + STATE(1268), 1, + aux_sym_dictionary_repeat1, + [52545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(1788), 1, anon_sym_COMMA, - ACTIONS(2618), 1, + ACTIONS(2570), 1, anon_sym_in, - STATE(863), 1, + STATE(842), 1, aux_sym__patterns_repeat1, - [54120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2215), 1, - anon_sym_COMMA, - ACTIONS(2217), 1, - anon_sym_RBRACE, - STATE(1185), 1, - aux_sym_dictionary_repeat1, - [54133] = 4, + [52558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(2572), 1, anon_sym_RPAREN, - ACTIONS(1947), 1, + ACTIONS(2574), 1, anon_sym_COMMA, - STATE(1233), 1, - aux_sym_argument_list_repeat1, - [54146] = 2, + STATE(1226), 1, + aux_sym_match_class_pattern_repeat2, + [52571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1403), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [54155] = 2, + ACTIONS(2576), 1, + anon_sym_COMMA, + ACTIONS(2578), 1, + anon_sym_RBRACE, + STATE(1268), 1, + aux_sym_dictionary_repeat1, + [52584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 3, + ACTIONS(2051), 1, + anon_sym_from, + ACTIONS(2055), 2, sym__newline, - anon_sym_COMMA, sym__semicolon, - [54164] = 4, + [52595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - anon_sym_RPAREN, - ACTIONS(2622), 1, + ACTIONS(2580), 1, anon_sym_COMMA, - STATE(1256), 1, - aux_sym_argument_list_repeat1, - [54177] = 2, + ACTIONS(2582), 2, + anon_sym_if, + anon_sym_COLON, + [52606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 3, + ACTIONS(1365), 3, sym__newline, anon_sym_in, sym__semicolon, - [54186] = 2, + [52615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2624), 3, - anon_sym_LPAREN, + ACTIONS(2584), 1, + anon_sym_if, + ACTIONS(2586), 1, anon_sym_COLON, - anon_sym_EQ, - [54195] = 4, + STATE(1356), 1, + sym_guard, + [52628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, + ACTIONS(2588), 1, + anon_sym_RPAREN, + ACTIONS(2590), 1, anon_sym_COMMA, - ACTIONS(2628), 1, - anon_sym_RBRACK, - STATE(1306), 1, - aux_sym_type_parameters_repeat1, - [54208] = 4, + STATE(1171), 1, + aux_sym_argument_list_repeat1, + [52641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(1685), 1, anon_sym_RPAREN, - ACTIONS(2630), 1, - anon_sym_COMMA, - STATE(1214), 1, - aux_sym__import_list_repeat1, - [54221] = 4, + ACTIONS(2546), 1, + sym_identifier, + STATE(1311), 1, + sym_match_keyword_pattern, + [52654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2593), 1, anon_sym_COMMA, - ACTIONS(2634), 1, - anon_sym_COLON, - STATE(1293), 1, - aux_sym_with_clause_repeat1, - [54234] = 4, + ACTIONS(2595), 1, + anon_sym_RBRACE, + STATE(1266), 1, + aux_sym_match_mapping_pattern_repeat1, + [52667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(2495), 1, + anon_sym_RPAREN, + ACTIONS(2597), 1, anon_sym_COMMA, - ACTIONS(2211), 1, - anon_sym_RBRACK, - STATE(1278), 1, - aux_sym_subscript_repeat1, - [54247] = 4, + STATE(1217), 1, + aux_sym__import_list_repeat1, + [52680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_COLON, - ACTIONS(2556), 1, - anon_sym_RBRACE, - STATE(1495), 1, - sym_format_specifier, - [54260] = 4, + ACTIONS(2599), 1, + sym__semicolon, + ACTIONS(2601), 1, + sym__newline, + STATE(1198), 1, + aux_sym__simple_statements_repeat1, + [52693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 1, + sym_identifier, + ACTIONS(2605), 1, + sym_match_wildcard_pattern, + STATE(1077), 1, + sym_match_capture_pattern, + [52706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1845), 1, anon_sym_COMMA, - ACTIONS(1887), 1, + ACTIONS(1865), 1, anon_sym_RPAREN, - STATE(1308), 1, + STATE(1235), 1, aux_sym__collection_elements_repeat1, - [54273] = 4, + [52719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_RPAREN, - ACTIONS(2638), 1, + ACTIONS(2141), 1, anon_sym_COMMA, - STATE(1205), 1, - aux_sym_argument_list_repeat1, - [54286] = 4, + ACTIONS(2143), 1, + anon_sym_RBRACE, + STATE(1214), 1, + aux_sym_dictionary_repeat1, + [52732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, - anon_sym_RPAREN, - ACTIONS(2641), 1, + ACTIONS(2607), 1, anon_sym_COMMA, - STATE(1275), 1, - aux_sym_match_class_pattern_repeat2, - [54299] = 4, + ACTIONS(2610), 1, + anon_sym_RBRACE, + STATE(1179), 1, + aux_sym_match_mapping_pattern_repeat1, + [52745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2612), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [52754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN, + ACTIONS(2614), 1, + anon_sym_COLON, + STATE(1412), 1, + sym_argument_list, + [52767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, + ACTIONS(2616), 1, anon_sym_COMMA, - ACTIONS(2646), 1, + ACTIONS(2618), 1, anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_subscript_repeat1, - [54312] = 4, + STATE(1202), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [52780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - anon_sym_RPAREN, - ACTIONS(2648), 1, + ACTIONS(2620), 1, anon_sym_COMMA, - STATE(1214), 1, - aux_sym__import_list_repeat1, - [54325] = 4, + ACTIONS(2622), 1, + anon_sym_COLON, + STATE(1143), 1, + aux_sym_with_clause_repeat1, + [52793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 1, + ACTIONS(2624), 1, + anon_sym_COLON, + ACTIONS(2420), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2187), 1, - anon_sym_RBRACK, - STATE(1289), 1, - aux_sym_subscript_repeat1, - [54338] = 4, + [52804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, + ACTIONS(2626), 1, anon_sym_RPAREN, - ACTIONS(2650), 1, - sym_identifier, - STATE(1324), 1, - sym_match_keyword_pattern, - [54351] = 4, + ACTIONS(2628), 1, + anon_sym_COMMA, + STATE(1264), 1, + aux_sym_with_clause_repeat1, + [52817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, - anon_sym_RPAREN, - ACTIONS(2654), 1, + ACTIONS(1788), 1, anon_sym_COMMA, - STATE(1296), 1, - aux_sym_argument_list_repeat1, - [54364] = 4, + ACTIONS(2630), 1, + anon_sym_in, + STATE(842), 1, + aux_sym__patterns_repeat1, + [52830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2632), 1, sym__semicolon, - ACTIONS(2658), 1, + ACTIONS(2634), 1, sym__newline, - STATE(1228), 1, + STATE(1205), 1, aux_sym__simple_statements_repeat1, - [54377] = 4, + [52843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 1, - sym__semicolon, - ACTIONS(2662), 1, + ACTIONS(2491), 3, sym__newline, - STATE(1188), 1, - aux_sym__simple_statements_repeat1, - [54390] = 4, + anon_sym_COMMA, + sym__semicolon, + [52852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, - anon_sym_RPAREN, - ACTIONS(2664), 1, + ACTIONS(2636), 1, anon_sym_COMMA, - STATE(1214), 1, - aux_sym__import_list_repeat1, - [54403] = 4, + ACTIONS(2638), 1, + anon_sym_RBRACK, + STATE(1228), 1, + aux_sym_type_parameters_repeat1, + [52865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, + ACTIONS(1095), 3, anon_sym_RPAREN, - ACTIONS(2560), 1, anon_sym_COMMA, - STATE(1200), 1, - aux_sym__import_list_repeat1, - [54416] = 4, + anon_sym_COLON, + [52874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_COMMA, - ACTIONS(1949), 1, - anon_sym_RPAREN, - STATE(1308), 1, - aux_sym__collection_elements_repeat1, - [54429] = 4, + ACTIONS(2584), 1, + anon_sym_if, + ACTIONS(2640), 1, + anon_sym_COLON, + STATE(1433), 1, + sym_guard, + [52887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, - sym_identifier, - ACTIONS(2667), 1, + ACTIONS(1845), 1, + anon_sym_COMMA, + ACTIONS(1957), 1, anon_sym_RPAREN, - STATE(1324), 1, - sym_match_keyword_pattern, - [54442] = 4, + STATE(1235), 1, + aux_sym__collection_elements_repeat1, + [52900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1969), 1, - anon_sym_RPAREN, - ACTIONS(1971), 1, + ACTIONS(2620), 1, anon_sym_COMMA, - STATE(1310), 1, - aux_sym_argument_list_repeat1, - [54455] = 4, + ACTIONS(2642), 1, + anon_sym_COLON, + STATE(1183), 1, + aux_sym_with_clause_repeat1, + [52913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_RPAREN, - ACTIONS(2671), 1, - anon_sym_COMMA, - STATE(1275), 1, - aux_sym_match_class_pattern_repeat2, - [54468] = 4, + ACTIONS(2312), 1, + anon_sym_COLON, + ACTIONS(2644), 1, + anon_sym_RBRACE, + STATE(1378), 1, + sym_format_specifier, + [52926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, + ACTIONS(2546), 1, sym_identifier, - ACTIONS(2669), 1, + ACTIONS(2572), 1, anon_sym_RPAREN, - STATE(1324), 1, + STATE(1311), 1, sym_match_keyword_pattern, - [54481] = 3, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2322), 1, - anon_sym_RBRACE, - ACTIONS(2324), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [54492] = 4, + [52939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 1, - anon_sym_RPAREN, - ACTIONS(2673), 1, + ACTIONS(2646), 1, anon_sym_COMMA, - STATE(1300), 1, - aux_sym_match_class_pattern_repeat1, - [54505] = 4, + ACTIONS(2649), 1, + anon_sym_RBRACK, + STATE(1196), 1, + aux_sym_index_expression_list_repeat1, + [52952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 1, + ACTIONS(1810), 1, + anon_sym_COLON, + ACTIONS(2651), 1, anon_sym_COMMA, - ACTIONS(2231), 1, - anon_sym_RBRACE, - STATE(1238), 1, - aux_sym_dictionary_repeat1, - [54518] = 4, + STATE(1260), 1, + aux_sym__parameters_repeat1, + [52965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, - anon_sym_COMMA, - ACTIONS(2675), 1, - anon_sym_in, - STATE(863), 1, - aux_sym__patterns_repeat1, - [54531] = 4, + ACTIONS(545), 1, + sym__newline, + ACTIONS(2653), 1, + sym__semicolon, + STATE(1200), 1, + aux_sym__simple_statements_repeat1, + [52978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 1, + ACTIONS(2105), 1, anon_sym_COMMA, - ACTIONS(2680), 1, + ACTIONS(2107), 1, anon_sym_RBRACE, - STATE(1225), 1, - aux_sym_match_mapping_pattern_repeat1, - [54544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - anon_sym_RPAREN, - ACTIONS(2684), 1, - anon_sym_COMMA, - STATE(1244), 1, - aux_sym__parameters_repeat1, - [54557] = 3, + STATE(1221), 1, + aux_sym_dictionary_repeat1, + [52991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2019), 1, - anon_sym_from, - ACTIONS(2029), 2, - sym__newline, + ACTIONS(2655), 1, sym__semicolon, - [54568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(545), 1, + ACTIONS(2658), 1, sym__newline, - ACTIONS(2686), 1, - sym__semicolon, - STATE(1240), 1, + STATE(1200), 1, aux_sym__simple_statements_repeat1, - [54581] = 4, + [53004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(1687), 1, + anon_sym_RPAREN, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2690), 1, + STATE(1272), 1, + aux_sym_match_class_pattern_repeat1, + [53017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1677), 1, anon_sym_RBRACK, - STATE(1286), 1, + ACTIONS(2662), 1, + anon_sym_COMMA, + STATE(1028), 1, aux_sym_open_sequence_match_pattern_repeat1, - [54594] = 4, + [53030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2664), 1, + anon_sym_RPAREN, + ACTIONS(2666), 1, anon_sym_COMMA, - ACTIONS(2221), 1, - anon_sym_RBRACE, - STATE(1288), 1, - aux_sym_dictionary_repeat1, - [54607] = 4, + STATE(1224), 1, + aux_sym__parameters_repeat1, + [53043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 1, - anon_sym_if, - ACTIONS(2692), 1, - anon_sym_COLON, - STATE(1460), 1, - sym_guard, - [54620] = 4, + ACTIONS(1687), 1, + anon_sym_RPAREN, + ACTIONS(2546), 1, + sym_identifier, + STATE(1311), 1, + sym_match_keyword_pattern, + [53056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 1, + sym__newline, + ACTIONS(2668), 1, + sym__semicolon, + STATE(1200), 1, + aux_sym__simple_statements_repeat1, + [53069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(1829), 1, anon_sym_DOT, - ACTIONS(1910), 1, + ACTIONS(1833), 1, anon_sym_COLON, - STATE(887), 1, + STATE(865), 1, aux_sym_match_value_pattern_repeat1, - [54633] = 4, + [53082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 1, - anon_sym_RPAREN, - ACTIONS(2696), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - STATE(1205), 1, - aux_sym_argument_list_repeat1, - [54646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 1, - sym_identifier, - STATE(1158), 1, - sym_dotted_name, - STATE(1195), 1, - sym_aliased_import, - [54659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_COLON, - ACTIONS(2698), 1, + ACTIONS(2111), 1, anon_sym_RBRACE, - STATE(1473), 1, - sym_format_specifier, - [54672] = 4, + STATE(1166), 1, + aux_sym_dictionary_repeat1, + [53095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(1687), 1, anon_sym_RPAREN, - ACTIONS(2702), 1, + ACTIONS(2670), 1, anon_sym_COMMA, - STATE(1219), 1, + STATE(1226), 1, aux_sym_match_class_pattern_repeat2, - [54685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_EQ, - ACTIONS(2706), 2, - sym__newline, - sym__semicolon, - [54696] = 4, - ACTIONS(3), 1, + [53108] = 3, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2708), 1, - anon_sym_COMMA, - ACTIONS(2710), 1, + ACTIONS(2272), 1, anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_dictionary_repeat1, - [54709] = 3, + ACTIONS(2274), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [53119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 1, - anon_sym_in, - ACTIONS(2714), 2, + ACTIONS(2163), 3, sym__newline, + anon_sym_EQ, sym__semicolon, - [54720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2716), 1, - sym__semicolon, - ACTIONS(2719), 1, - sym__newline, - STATE(1240), 1, - aux_sym__simple_statements_repeat1, - [54733] = 4, + [53128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 1, - anon_sym_LBRACK, - ACTIONS(2721), 1, + ACTIONS(2672), 1, anon_sym_EQ, - STATE(1436), 1, - sym_type_parameters, - [54746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_COMMA, - ACTIONS(2725), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_dictionary_repeat1, - [54759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 3, + ACTIONS(2674), 2, sym__newline, - anon_sym_EQ, sym__semicolon, - [54768] = 4, + [53139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 1, + ACTIONS(2444), 1, + anon_sym_as, + ACTIONS(2472), 2, anon_sym_RPAREN, - ACTIONS(2727), 1, anon_sym_COMMA, - STATE(1272), 1, - aux_sym__parameters_repeat1, - [54781] = 3, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_RBRACE, - ACTIONS(2731), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [54792] = 4, + [53150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, - anon_sym_RPAREN, - ACTIONS(2735), 1, + ACTIONS(1788), 1, anon_sym_COMMA, - STATE(1206), 1, - aux_sym_match_class_pattern_repeat2, - [54805] = 4, + ACTIONS(2676), 1, + anon_sym_in, + STATE(842), 1, + aux_sym__patterns_repeat1, + [53163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, - anon_sym_RPAREN, - ACTIONS(2702), 1, + ACTIONS(2678), 1, anon_sym_COMMA, - STATE(1275), 1, - aux_sym_match_class_pattern_repeat2, - [54818] = 4, + ACTIONS(2680), 1, + anon_sym_RBRACE, + STATE(1268), 1, + aux_sym_dictionary_repeat1, + [53176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, + ACTIONS(2682), 1, anon_sym_COMMA, - ACTIONS(2739), 1, + ACTIONS(2684), 1, anon_sym_RBRACE, - STATE(1283), 1, - aux_sym_match_mapping_pattern_repeat1, - [54831] = 2, + STATE(1268), 1, + aux_sym_dictionary_repeat1, + [53189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 3, - anon_sym_RPAREN, + ACTIONS(1845), 1, anon_sym_COMMA, - anon_sym_COLON, - [54840] = 3, + ACTIONS(1945), 1, + anon_sym_RPAREN, + STATE(1235), 1, + aux_sym__collection_elements_repeat1, + [53202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, - anon_sym_EQ, - ACTIONS(2438), 2, + ACTIONS(2477), 1, + anon_sym_RPAREN, + ACTIONS(2686), 1, anon_sym_COMMA, - anon_sym_COLON, - [54851] = 4, + STATE(1217), 1, + aux_sym__import_list_repeat1, + [53215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 1, + ACTIONS(1941), 1, anon_sym_RPAREN, - ACTIONS(1979), 1, + ACTIONS(1943), 1, anon_sym_COMMA, - STATE(1274), 1, + STATE(1240), 1, aux_sym_argument_list_repeat1, - [54864] = 4, + [53228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, + ACTIONS(1937), 1, anon_sym_RPAREN, - ACTIONS(2745), 1, + ACTIONS(1939), 1, anon_sym_COMMA, - STATE(1276), 1, + STATE(1263), 1, aux_sym_argument_list_repeat1, - [54877] = 3, + [53241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 1, - anon_sym_as, - ACTIONS(2543), 2, + ACTIONS(2689), 1, anon_sym_RPAREN, + ACTIONS(2691), 1, anon_sym_COMMA, - [54888] = 4, + STATE(1238), 1, + aux_sym_argument_list_repeat1, + [53254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2201), 1, + ACTIONS(2693), 1, anon_sym_COMMA, - ACTIONS(2203), 1, - anon_sym_RBRACK, - STATE(1279), 1, - aux_sym_subscript_repeat1, - [54901] = 4, - ACTIONS(3), 1, + ACTIONS(2695), 1, + anon_sym_RBRACE, + STATE(1268), 1, + aux_sym_dictionary_repeat1, + [53267] = 3, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2747), 1, - anon_sym_COLON, - STATE(1449), 1, - sym_argument_list, - [54914] = 4, + ACTIONS(2697), 1, + anon_sym_RBRACE, + ACTIONS(2699), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [53278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 1, - anon_sym_RPAREN, - ACTIONS(2751), 1, + ACTIONS(2701), 1, anon_sym_COMMA, - STATE(1205), 1, - aux_sym_argument_list_repeat1, - [54927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_COLON, - ACTIONS(2527), 1, + ACTIONS(2703), 1, anon_sym_RBRACE, - STATE(1433), 1, - sym_format_specifier, - [54940] = 4, + STATE(1268), 1, + aux_sym_dictionary_repeat1, + [53291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(1810), 1, + anon_sym_RPAREN, + ACTIONS(2705), 1, anon_sym_COMMA, - STATE(1263), 1, + STATE(1245), 1, aux_sym__parameters_repeat1, - [54953] = 2, + [53304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 3, + ACTIONS(2707), 1, anon_sym_RPAREN, + ACTIONS(2709), 1, anon_sym_COMMA, - anon_sym_COLON, - [54962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 1, - sym_identifier, - ACTIONS(2755), 1, - anon_sym_import, - STATE(1414), 1, - sym_dotted_name, - [54975] = 4, + STATE(1252), 1, + aux_sym_argument_list_repeat1, + [53317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2711), 1, anon_sym_RPAREN, - ACTIONS(2757), 1, + ACTIONS(2713), 1, anon_sym_COMMA, - STATE(1222), 1, - aux_sym_match_class_pattern_repeat1, - [54988] = 4, + STATE(1226), 1, + aux_sym_match_class_pattern_repeat2, + [53330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(543), 1, - sym__newline, - ACTIONS(2759), 1, - sym__semicolon, - STATE(1240), 1, - aux_sym__simple_statements_repeat1, - [55001] = 4, + ACTIONS(2716), 1, + anon_sym_COMMA, + ACTIONS(2718), 1, + anon_sym_RBRACK, + STATE(1233), 1, + aux_sym_index_expression_list_repeat1, + [53343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 1, - anon_sym_COLON, - ACTIONS(2761), 1, + ACTIONS(2720), 1, anon_sym_COMMA, - STATE(1311), 1, - aux_sym__parameters_repeat1, - [55014] = 3, - ACTIONS(1933), 1, - sym_comment, - ACTIONS(2238), 1, - anon_sym_RBRACE, - ACTIONS(2240), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55025] = 2, + ACTIONS(2723), 1, + anon_sym_RBRACK, + STATE(1228), 1, + aux_sym_type_parameters_repeat1, + [53356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 3, + ACTIONS(1929), 1, anon_sym_RPAREN, + ACTIONS(1931), 1, anon_sym_COMMA, - anon_sym_COLON, - [55034] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2436), 1, - sym_identifier, - STATE(1253), 1, - sym_dotted_name, - STATE(1326), 1, - sym_aliased_import, - [55047] = 4, + STATE(1247), 1, + aux_sym_argument_list_repeat1, + [53369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1008), 1, + ACTIONS(2725), 1, anon_sym_RPAREN, - ACTIONS(2763), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - STATE(1145), 1, - aux_sym_with_clause_repeat1, - [55060] = 2, + STATE(1249), 1, + aux_sym_argument_list_repeat1, + [53382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 3, + ACTIONS(2302), 1, anon_sym_RPAREN, + ACTIONS(2442), 1, anon_sym_COMMA, - anon_sym_COLON, - [55069] = 4, + STATE(1174), 1, + aux_sym__import_list_repeat1, + [53395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2765), 1, - anon_sym_COLON, - STATE(1486), 1, - sym_argument_list, - [55082] = 4, + ACTIONS(2716), 1, + anon_sym_COMMA, + ACTIONS(2729), 1, + anon_sym_RBRACK, + STATE(1233), 1, + aux_sym_index_expression_list_repeat1, + [53408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, - sym_identifier, - ACTIONS(2700), 1, - anon_sym_RPAREN, - STATE(1324), 1, - sym_match_keyword_pattern, - [55095] = 2, + ACTIONS(2731), 1, + anon_sym_COMMA, + ACTIONS(2733), 1, + anon_sym_RBRACK, + STATE(1196), 1, + aux_sym_index_expression_list_repeat1, + [53421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2312), 1, anon_sym_COLON, - [55104] = 4, + ACTIONS(2448), 1, + anon_sym_RBRACE, + STATE(1454), 1, + sym_format_specifier, + [53434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2294), 1, anon_sym_RPAREN, - ACTIONS(2771), 1, + ACTIONS(2735), 1, anon_sym_COMMA, - STATE(1272), 1, - aux_sym__parameters_repeat1, - [55117] = 4, + STATE(1073), 1, + aux_sym__collection_elements_repeat1, + [53447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2774), 1, - anon_sym_RPAREN, - ACTIONS(2776), 1, + ACTIONS(2716), 1, anon_sym_COMMA, - STATE(1205), 1, - aux_sym_argument_list_repeat1, - [55130] = 4, + ACTIONS(2737), 1, + anon_sym_RBRACK, + STATE(1233), 1, + aux_sym_index_expression_list_repeat1, + [53460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2778), 1, + ACTIONS(2739), 1, anon_sym_RPAREN, - ACTIONS(2780), 1, + ACTIONS(2741), 1, anon_sym_COMMA, - STATE(1205), 1, + STATE(1171), 1, aux_sym_argument_list_repeat1, - [55143] = 4, + [53473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(2743), 1, anon_sym_RPAREN, - ACTIONS(2784), 1, + ACTIONS(2745), 1, anon_sym_COMMA, - STATE(1275), 1, - aux_sym_match_class_pattern_repeat2, - [55156] = 4, + STATE(1171), 1, + aux_sym_argument_list_repeat1, + [53486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, - anon_sym_RPAREN, - ACTIONS(2789), 1, - anon_sym_COMMA, - STATE(1205), 1, - aux_sym_argument_list_repeat1, - [55169] = 4, + ACTIONS(2312), 1, + anon_sym_COLON, + ACTIONS(2464), 1, + anon_sym_RBRACE, + STATE(1430), 1, + sym_format_specifier, + [53499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, + ACTIONS(2747), 1, anon_sym_RPAREN, - ACTIONS(2793), 1, + ACTIONS(2749), 1, anon_sym_COMMA, - STATE(1205), 1, + STATE(1171), 1, aux_sym_argument_list_repeat1, - [55182] = 4, + [53512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(1788), 1, anon_sym_COMMA, - ACTIONS(2797), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_subscript_repeat1, - [55195] = 4, + ACTIONS(2751), 1, + anon_sym_in, + STATE(842), 1, + aux_sym__patterns_repeat1, + [53525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(2472), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2801), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_subscript_repeat1, - [55208] = 4, + sym__semicolon, + [53534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(1845), 1, anon_sym_COMMA, - ACTIONS(2805), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_subscript_repeat1, - [55221] = 4, + ACTIONS(2753), 1, + anon_sym_RPAREN, + STATE(1255), 1, + aux_sym__collection_elements_repeat1, + [53547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(1845), 1, anon_sym_COMMA, - ACTIONS(2809), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_subscript_repeat1, - [55234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 1, + ACTIONS(2755), 1, anon_sym_RPAREN, - ACTIONS(2650), 1, - sym_identifier, - STATE(1324), 1, - sym_match_keyword_pattern, - [55247] = 4, + STATE(1063), 1, + aux_sym__collection_elements_repeat1, + [53560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 1, - anon_sym_RBRACE, - ACTIONS(2811), 1, + ACTIONS(2757), 1, + anon_sym_RPAREN, + ACTIONS(2759), 1, anon_sym_COMMA, - STATE(1225), 1, - aux_sym_match_mapping_pattern_repeat1, - [55260] = 4, + STATE(1245), 1, + aux_sym__parameters_repeat1, + [53573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(2762), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2815), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_subscript_repeat1, - [55273] = 4, + sym__semicolon, + [53582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2764), 1, + anon_sym_RPAREN, + ACTIONS(2766), 1, anon_sym_COMMA, - ACTIONS(2819), 1, + STATE(1171), 1, + aux_sym_argument_list_repeat1, + [53595] = 3, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(2251), 1, anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_dictionary_repeat1, - [55286] = 4, + ACTIONS(2253), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [53606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_RBRACK, - ACTIONS(2821), 1, + ACTIONS(2768), 1, + anon_sym_RPAREN, + ACTIONS(2770), 1, anon_sym_COMMA, - STATE(1061), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55299] = 4, + STATE(1171), 1, + aux_sym_argument_list_repeat1, + [53619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(2772), 1, + anon_sym_RPAREN, + ACTIONS(2774), 1, anon_sym_COMMA, - ACTIONS(2826), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_dictionary_repeat1, - [55312] = 4, + STATE(1171), 1, + aux_sym_argument_list_repeat1, + [53632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, - anon_sym_COMMA, - ACTIONS(2830), 1, + ACTIONS(2312), 1, + anon_sym_COLON, + ACTIONS(2776), 1, anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_dictionary_repeat1, - [55325] = 4, + STATE(1450), 1, + sym_format_specifier, + [53645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(2778), 1, + anon_sym_RPAREN, + ACTIONS(2780), 1, anon_sym_COMMA, - ACTIONS(2834), 1, - anon_sym_RBRACK, - STATE(1207), 1, - aux_sym_subscript_repeat1, - [55338] = 4, + STATE(1171), 1, + aux_sym_argument_list_repeat1, + [53658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2782), 1, anon_sym_RPAREN, - ACTIONS(2838), 1, + ACTIONS(2784), 1, anon_sym_COMMA, - STATE(1205), 1, + STATE(1171), 1, aux_sym_argument_list_repeat1, - [55351] = 3, - ACTIONS(1933), 1, + [53671] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_RBRACE, - ACTIONS(2282), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [55362] = 4, + ACTIONS(2157), 1, + sym_identifier, + ACTIONS(2786), 1, + anon_sym_import, + STATE(1453), 1, + sym_dotted_name, + [53684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, + ACTIONS(2294), 1, anon_sym_RPAREN, - ACTIONS(2840), 1, + ACTIONS(2788), 1, anon_sym_COMMA, - STATE(1061), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55375] = 4, + STATE(1073), 1, + aux_sym__collection_elements_repeat1, + [53697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(1788), 1, anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(2790), 1, + anon_sym_in, + STATE(842), 1, + aux_sym__patterns_repeat1, + [53710] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2356), 1, + anon_sym_LPAREN, + ACTIONS(2792), 1, anon_sym_COLON, - STATE(1145), 1, - aux_sym_with_clause_repeat1, - [55388] = 3, - ACTIONS(1933), 1, + STATE(1422), 1, + sym_argument_list, + [53723] = 3, + ACTIONS(1898), 1, sym_comment, - ACTIONS(2268), 1, + ACTIONS(2216), 1, anon_sym_RBRACE, - ACTIONS(2270), 2, + ACTIONS(2218), 2, anon_sym_LBRACE2, aux_sym_format_specifier_token1, - [55399] = 4, + [53734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(2538), 3, anon_sym_RPAREN, - ACTIONS(2846), 1, anon_sym_COMMA, - STATE(1267), 1, - aux_sym_with_clause_repeat1, - [55412] = 4, + anon_sym_COLON, + [53743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 1, - anon_sym_RPAREN, - ACTIONS(2850), 1, + ACTIONS(2757), 1, + anon_sym_COLON, + ACTIONS(2794), 1, anon_sym_COMMA, - STATE(1205), 1, - aux_sym_argument_list_repeat1, - [55425] = 4, + STATE(1260), 1, + aux_sym__parameters_repeat1, + [53756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, + ACTIONS(2757), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2852), 1, - anon_sym_RBRACK, - STATE(1199), 1, - aux_sym_type_parameters_repeat1, - [55438] = 4, + anon_sym_COLON, + [53765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1788), 1, anon_sym_COMMA, - ACTIONS(2854), 1, + ACTIONS(2797), 1, + anon_sym_in, + STATE(842), 1, + aux_sym__patterns_repeat1, + [53778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, anon_sym_RPAREN, - STATE(1096), 1, - aux_sym__collection_elements_repeat1, - [55451] = 2, + ACTIONS(2801), 1, + anon_sym_COMMA, + STATE(1171), 1, + aux_sym_argument_list_repeat1, + [53791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 3, - sym__newline, + ACTIONS(960), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, anon_sym_COMMA, - sym__semicolon, - [55460] = 4, + STATE(1143), 1, + aux_sym_with_clause_repeat1, + [53804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2523), 3, anon_sym_RPAREN, - ACTIONS(2858), 1, anon_sym_COMMA, - STATE(1300), 1, - aux_sym_match_class_pattern_repeat1, - [55473] = 4, + anon_sym_COLON, + [53813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1812), 1, + ACTIONS(1804), 1, + anon_sym_RBRACE, + ACTIONS(2805), 1, anon_sym_COMMA, - ACTIONS(2861), 1, - anon_sym_in, - STATE(863), 1, - aux_sym__patterns_repeat1, - [55486] = 2, + STATE(1179), 1, + aux_sym_match_mapping_pattern_repeat1, + [53826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 3, - anon_sym_LPAREN, + ACTIONS(2807), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [55495] = 4, + [53835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2809), 1, anon_sym_COMMA, - ACTIONS(2865), 1, + ACTIONS(2812), 1, + anon_sym_RBRACE, + STATE(1268), 1, + aux_sym_dictionary_repeat1, + [53848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, anon_sym_RPAREN, - STATE(1189), 1, - aux_sym__collection_elements_repeat1, - [55508] = 4, + ACTIONS(2814), 1, + anon_sym_COMMA, + STATE(1277), 1, + aux_sym_match_class_pattern_repeat2, + [53861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, - sym__semicolon, - ACTIONS(2869), 1, + ACTIONS(551), 1, sym__newline, - STATE(1262), 1, + ACTIONS(2816), 1, + sym__semicolon, + STATE(1200), 1, aux_sym__simple_statements_repeat1, - [55521] = 2, + [53874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2548), 1, + anon_sym_RPAREN, + ACTIONS(2818), 1, + anon_sym_COMMA, + STATE(1165), 1, + aux_sym_match_class_pattern_repeat2, + [53887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 1, + anon_sym_RPAREN, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_match_class_pattern_repeat1, + [53900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 3, + ACTIONS(2420), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [55530] = 4, + [53909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(2664), 1, + anon_sym_COLON, + ACTIONS(2825), 1, anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_RBRACK, - STATE(1306), 1, - aux_sym_type_parameters_repeat1, - [55543] = 4, + STATE(1197), 1, + aux_sym__parameters_repeat1, + [53922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2424), 1, + anon_sym_EQ, + ACTIONS(2420), 2, anon_sym_COMMA, - ACTIONS(1983), 1, - anon_sym_RPAREN, - STATE(1308), 1, - aux_sym__collection_elements_repeat1, - [55556] = 4, + anon_sym_COLON, + [53933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 1, + ACTIONS(2827), 3, anon_sym_RPAREN, - ACTIONS(2876), 1, anon_sym_COMMA, - STATE(1077), 1, - aux_sym__collection_elements_repeat1, - [55569] = 4, + anon_sym_COLON, + [53942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, + ACTIONS(2548), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2818), 1, anon_sym_COMMA, - STATE(1247), 1, + STATE(1226), 1, aux_sym_match_class_pattern_repeat2, - [55582] = 4, + [53955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, - anon_sym_RPAREN, - ACTIONS(2882), 1, + ACTIONS(2636), 1, anon_sym_COMMA, - STATE(1205), 1, - aux_sym_argument_list_repeat1, - [55595] = 4, + ACTIONS(2829), 1, + anon_sym_RBRACK, + STATE(1189), 1, + aux_sym_type_parameters_repeat1, + [53968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2884), 1, - anon_sym_COMMA, - STATE(1311), 1, - aux_sym__parameters_repeat1, - [55608] = 2, + ACTIONS(2404), 1, + sym_identifier, + STATE(1212), 1, + sym_dotted_name, + STATE(1306), 1, + sym_aliased_import, + [53981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [55617] = 2, + ACTIONS(2360), 1, + anon_sym_LBRACK, + ACTIONS(2831), 1, + anon_sym_EQ, + STATE(1441), 1, + sym_type_parameters, + [53994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 2, + ACTIONS(2833), 1, + anon_sym_in, + ACTIONS(2835), 2, sym__newline, sym__semicolon, - [55625] = 2, + [54005] = 3, + ACTIONS(1898), 1, + sym_comment, + ACTIONS(2255), 1, + anon_sym_RBRACE, + ACTIONS(2257), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [54016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2887), 2, + ACTIONS(2837), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [55633] = 3, + anon_sym_RBRACK, + [54024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(1351), 1, - sym_parameters, - [55643] = 3, + ACTIONS(1798), 1, + anon_sym_RBRACE, + ACTIONS(2839), 1, + anon_sym_COMMA, + [54034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, - anon_sym_COLON, - ACTIONS(2891), 1, - anon_sym_DASH_GT, - [55653] = 2, + ACTIONS(2546), 1, + sym_identifier, + STATE(1311), 1, + sym_match_keyword_pattern, + [54044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 2, + ACTIONS(2841), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [55661] = 2, + [54052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 2, + ACTIONS(2346), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55669] = 3, + [54060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(1350), 1, - sym_parameters, - [55679] = 3, + ACTIONS(2843), 2, + sym__newline, + sym__semicolon, + [54068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - sym_integer, - ACTIONS(2899), 1, - sym_float, - [55689] = 3, + ACTIONS(2845), 2, + sym__newline, + sym__semicolon, + [54076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - anon_sym_COMMA, - STATE(1080), 1, - aux_sym_expression_list_repeat1, - [55699] = 2, + ACTIONS(2847), 2, + sym__newline, + sym__semicolon, + [54084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 2, + ACTIONS(1876), 2, sym__newline, sym__semicolon, - [55707] = 2, + [54092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 2, + ACTIONS(2420), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_DASH_GT, - [55715] = 2, + [54100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55723] = 2, + ACTIONS(2849), 2, + sym__newline, + sym__semicolon, + [54108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [55731] = 2, + ACTIONS(2402), 1, + anon_sym_LPAREN, + STATE(1308), 1, + sym_parameters, + [54118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2543), 2, - anon_sym_RPAREN, + ACTIONS(2851), 2, anon_sym_COMMA, - [55739] = 3, + anon_sym_RBRACK, + [54126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - sym_integer, - ACTIONS(2907), 1, - sym_float, - [55749] = 2, + ACTIONS(2402), 1, + anon_sym_LPAREN, + STATE(1310), 1, + sym_parameters, + [54136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [55757] = 3, + ACTIONS(874), 2, + anon_sym_except, + anon_sym_finally, + [54144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 1, + ACTIONS(2853), 2, anon_sym_COLON, - ACTIONS(2913), 1, anon_sym_DASH_GT, - [55767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(1343), 1, - sym_parameters, - [55777] = 2, + [54152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 2, - anon_sym_RPAREN, + ACTIONS(2855), 1, anon_sym_COMMA, - [55785] = 3, + STATE(1139), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [54162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(1316), 1, - sym_parameters, - [55795] = 2, + ACTIONS(2053), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_expression_list_repeat1, + [54172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 2, + ACTIONS(2165), 2, sym__newline, sym__semicolon, - [55803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [55811] = 2, + [54180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [55819] = 2, + ACTIONS(2857), 1, + sym_integer, + ACTIONS(2859), 1, + sym_float, + [54190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 2, + ACTIONS(2861), 2, anon_sym_COMMA, anon_sym_RBRACK, - [55827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_COMMA, - ACTIONS(2923), 1, - anon_sym_RBRACE, - [55837] = 2, + [54198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 2, + ACTIONS(896), 2, anon_sym_except, anon_sym_finally, - [55845] = 2, + [54206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 2, - sym__newline, - sym__semicolon, - [55853] = 2, + ACTIONS(2863), 1, + anon_sym_COLON, + ACTIONS(2865), 1, + anon_sym_DASH_GT, + [54216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 2, + ACTIONS(2472), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [55861] = 2, + [54224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 2, - sym__newline, - sym__semicolon, - [55869] = 3, + ACTIONS(2762), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(2867), 1, anon_sym_COLON, - ACTIONS(2927), 1, + ACTIONS(2869), 1, anon_sym_DASH_GT, - [55879] = 3, + [54242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(2871), 1, + anon_sym_COMMA, + STATE(1160), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [54252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2873), 1, anon_sym_COLON, - ACTIONS(2931), 1, + ACTIONS(2875), 1, anon_sym_DASH_GT, - [55889] = 2, + [54262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 2, + ACTIONS(2711), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [55897] = 3, + [54270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(2877), 1, anon_sym_COLON, - ACTIONS(2937), 1, + ACTIONS(2879), 1, anon_sym_DASH_GT, - [55907] = 2, + [54280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(896), 2, + ACTIONS(902), 2, anon_sym_except, anon_sym_finally, - [55915] = 2, + [54288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(902), 2, - anon_sym_except, - anon_sym_finally, - [55923] = 2, + ACTIONS(2881), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(924), 2, + ACTIONS(2883), 1, + anon_sym_COLON, + ACTIONS(2885), 1, + anon_sym_DASH_GT, + [54306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(878), 2, anon_sym_except, anon_sym_finally, - [55931] = 2, + [54314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2887), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [54322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 2, + ACTIONS(2820), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55939] = 3, + [54330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_COLON, - ACTIONS(2941), 1, - anon_sym_DASH_GT, - [55949] = 3, + ACTIONS(2889), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_COLON, - ACTIONS(2945), 1, - anon_sym_DASH_GT, - [55959] = 3, + ACTIONS(2891), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, - anon_sym_DOT, - STATE(1232), 1, - aux_sym_match_value_pattern_repeat1, - [55969] = 2, + ACTIONS(906), 2, + anon_sym_except, + anon_sym_finally, + [54354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 2, + ACTIONS(2893), 2, sym__newline, sym__semicolon, - [55977] = 3, + [54362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - sym_identifier, - STATE(1325), 1, - sym_match_capture_pattern, - [55987] = 2, + ACTIONS(2402), 1, + anon_sym_LPAREN, + STATE(1305), 1, + sym_parameters, + [54372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + anon_sym_COLON, + ACTIONS(2897), 1, + anon_sym_DASH_GT, + [54382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 1, + sym_integer, + ACTIONS(2901), 1, + sym_float, + [54392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 2, + ACTIONS(2903), 2, sym__newline, sym__semicolon, - [55995] = 2, + [54400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 2, + ACTIONS(2905), 2, sym__newline, sym__semicolon, - [56003] = 2, + [54408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 2, + ACTIONS(2907), 2, sym__newline, sym__semicolon, - [56011] = 3, + [54416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1834), 1, - anon_sym_RBRACE, - ACTIONS(2957), 1, + ACTIONS(1878), 1, anon_sym_COMMA, - [56021] = 2, + STATE(950), 1, + aux_sym_expression_list_repeat1, + [54426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 2, - anon_sym_except, - anon_sym_finally, - [56029] = 3, + ACTIONS(2909), 2, + sym__newline, + sym__semicolon, + [54434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(2911), 1, anon_sym_COMMA, - STATE(1292), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56039] = 2, + ACTIONS(2913), 1, + anon_sym_RBRACE, + [54444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 2, + ACTIONS(2610), 2, anon_sym_COMMA, anon_sym_RBRACE, - [56047] = 2, + [54452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 2, - sym__newline, - sym__semicolon, - [56055] = 3, + ACTIONS(2915), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2650), 1, - sym_identifier, - STATE(1324), 1, - sym_match_keyword_pattern, - [56065] = 3, + ACTIONS(2917), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 1, + ACTIONS(2350), 2, anon_sym_COMMA, - ACTIONS(2963), 1, - anon_sym_RPAREN, - [56075] = 2, + anon_sym_RBRACK, + [54476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2921), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 2, + ACTIONS(2167), 2, sym__newline, sym__semicolon, - [56083] = 2, + [54500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 2, + ACTIONS(2923), 2, sym__newline, sym__semicolon, - [56091] = 3, + [54508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - anon_sym_COMMA, - STATE(955), 1, - aux_sym_expression_list_repeat1, - [56101] = 2, + ACTIONS(2925), 1, + sym_integer, + ACTIONS(2927), 1, + sym_float, + [54518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 2, + ACTIONS(2191), 2, sym__newline, sym__semicolon, - [56109] = 2, + [54526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56117] = 2, + ACTIONS(2929), 1, + anon_sym_COLON, + ACTIONS(2931), 1, + anon_sym_DASH_GT, + [54536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56125] = 2, + ACTIONS(2402), 1, + anon_sym_LPAREN, + STATE(1349), 1, + sym_parameters, + [54546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56133] = 2, + ACTIONS(2933), 2, + sym__newline, + sym__semicolon, + [54554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 2, - anon_sym_RPAREN, + ACTIONS(2595), 1, + anon_sym_RBRACE, + ACTIONS(2935), 1, anon_sym_COMMA, - [56141] = 2, + [54564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 2, + ACTIONS(2937), 2, sym__newline, sym__semicolon, - [56149] = 2, + [54572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56157] = 2, + ACTIONS(1829), 1, + anon_sym_DOT, + STATE(1206), 1, + aux_sym_match_value_pattern_repeat1, + [54582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 2, - sym__newline, - sym__semicolon, - [56165] = 2, + ACTIONS(2939), 1, + sym_identifier, + STATE(1314), 1, + sym_match_capture_pattern, + [54592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 2, - sym__newline, - sym__semicolon, - [56173] = 2, + ACTIONS(2941), 1, + anon_sym_COLON, + ACTIONS(2943), 1, + anon_sym_DASH_GT, + [54602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 2, - sym__newline, - sym__semicolon, - [56181] = 2, + ACTIONS(2945), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 2, - sym__newline, - sym__semicolon, - [56189] = 2, + ACTIONS(2580), 1, + anon_sym_COMMA, + ACTIONS(2947), 1, + anon_sym_RPAREN, + [54620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [56197] = 3, + ACTIONS(2658), 2, + sym__newline, + sym__semicolon, + [54628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - STATE(1147), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56207] = 3, + ACTIONS(2949), 2, + sym__newline, + sym__semicolon, + [54636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, + ACTIONS(2951), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, - anon_sym_COMMA, - [56217] = 3, + [54643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, - sym_integer, - ACTIONS(2993), 1, - sym_float, - [56227] = 3, + ACTIONS(2220), 1, + anon_sym_COLON, + [54650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(2953), 1, anon_sym_COLON, - ACTIONS(2997), 1, - anon_sym_DASH_GT, - [56237] = 2, + [54657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(2955), 1, + sym_identifier, + [54664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2957), 1, anon_sym_COLON, - [56244] = 2, + [54671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(2959), 1, anon_sym_RPAREN, - [56251] = 2, + [54678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_RBRACK, - [56258] = 2, + ACTIONS(2961), 1, + anon_sym_RBRACE, + [54685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_in, - [56265] = 2, + ACTIONS(2963), 1, + anon_sym_RBRACK, + [54692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, - anon_sym_COLON, - [56272] = 2, + ACTIONS(2965), 1, + anon_sym_RBRACE, + [54699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(2967), 1, anon_sym_RBRACE, - [56279] = 2, + [54706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_RBRACE, - [56286] = 2, + ACTIONS(2969), 1, + anon_sym_COLON, + [54713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, - sym_identifier, - [56293] = 2, + ACTIONS(2971), 1, + anon_sym_COLON, + [54720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, - anon_sym_RBRACE, - [56300] = 2, + ACTIONS(2973), 1, + sym_identifier, + [54727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(2975), 1, anon_sym_in, - [56307] = 2, + [54734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(2977), 1, anon_sym_RPAREN, - [56314] = 2, + [54741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, - anon_sym_RPAREN, - [56321] = 2, + ACTIONS(2979), 1, + anon_sym_RBRACK, + [54748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, - anon_sym_RBRACE, - [56328] = 2, + ACTIONS(2981), 1, + anon_sym_RPAREN, + [54755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym_RBRACK, - [56335] = 2, + ACTIONS(2983), 1, + anon_sym_RBRACE, + [54762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(2985), 1, anon_sym_RBRACE, - [56342] = 2, + [54769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, + ACTIONS(2987), 1, anon_sym_COLON, - [56349] = 2, + [54776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - sym_identifier, - [56356] = 2, + ACTIONS(2989), 1, + anon_sym_RPAREN, + [54783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(2991), 1, anon_sym_COLON, - [56363] = 2, + [54790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, - anon_sym_RBRACK, - [56370] = 2, + ACTIONS(2993), 1, + anon_sym_RPAREN, + [54797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(2718), 1, anon_sym_RBRACK, - [56377] = 2, + [54804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(2995), 1, anon_sym_RBRACE, - [56384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_COLON, - [56391] = 2, + [54811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, - anon_sym_COLON, - [56398] = 2, + ACTIONS(2737), 1, + anon_sym_RBRACK, + [54818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 1, - anon_sym_COLON, - [56405] = 2, + ACTIONS(2997), 1, + anon_sym_RPAREN, + [54825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, - sym_identifier, - [56412] = 2, + ACTIONS(2913), 1, + anon_sym_RBRACE, + [54832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 1, - anon_sym_in, - [56419] = 2, + ACTIONS(2999), 1, + anon_sym_RBRACE, + [54839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(884), 1, - anon_sym_def, - [56426] = 2, + ACTIONS(3001), 1, + anon_sym_COLON, + [54846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 1, + ACTIONS(2464), 1, anon_sym_RBRACE, - [56433] = 2, + [54853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(3003), 1, sym_identifier, - [56440] = 2, + [54860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 1, - sym_identifier, - [56447] = 2, + ACTIONS(3005), 1, + anon_sym_RBRACK, + [54867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(3007), 1, anon_sym_import, - [56454] = 2, + [54874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, - anon_sym_for, - [56461] = 2, + ACTIONS(2570), 1, + anon_sym_in, + [54881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(3009), 1, anon_sym_RPAREN, - [56468] = 2, + [54888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_COLON, - [56475] = 2, + ACTIONS(3011), 1, + anon_sym_import, + [54895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, - anon_sym_RPAREN, - [56482] = 2, + ACTIONS(2790), 1, + anon_sym_in, + [54902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(3013), 1, anon_sym_COLON, - [56489] = 2, + [54909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, - anon_sym_COLON, - [56496] = 2, + ACTIONS(3015), 1, + anon_sym_RBRACK, + [54916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 1, + ACTIONS(3017), 1, anon_sym_COLON, - [56503] = 2, + [54923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3019), 1, anon_sym_in, - [56510] = 2, + [54930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 1, - anon_sym_RBRACE, - [56517] = 2, + ACTIONS(2266), 1, + anon_sym_COLON, + [54937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_EQ, - [56524] = 2, + ACTIONS(3021), 1, + anon_sym_COLON, + [54944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, - anon_sym_in, - [56531] = 2, + ACTIONS(3023), 1, + anon_sym_RBRACE, + [54951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, - anon_sym_RPAREN, - [56538] = 2, + ACTIONS(3025), 1, + anon_sym_COLON, + [54958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 1, + ACTIONS(3027), 1, anon_sym_COLON, - [56545] = 2, + [54965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3075), 1, - anon_sym_RBRACK, - [56552] = 2, + ACTIONS(3029), 1, + anon_sym_RBRACE, + [54972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - [56559] = 2, + ACTIONS(3031), 1, + anon_sym_COLON, + [54979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(3033), 1, anon_sym_COLON, - [56566] = 2, + [54986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3035), 1, anon_sym_COLON, - [56573] = 2, + [54993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 1, - anon_sym_RBRACE, - [56580] = 2, + ACTIONS(3037), 1, + anon_sym_COLON, + [55000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2584), 1, - anon_sym_RBRACE, - [56587] = 2, + ACTIONS(3039), 1, + anon_sym_RBRACK, + [55007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - anon_sym_RBRACE, - [56594] = 2, + ACTIONS(3041), 1, + anon_sym_RPAREN, + [55014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3043), 1, sym_identifier, - [56601] = 2, + [55021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, - anon_sym_EQ, - [56608] = 2, + ACTIONS(3045), 1, + sym_identifier, + [55028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_import, - [56615] = 2, + ACTIONS(3047), 1, + sym_identifier, + [55035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 1, + ACTIONS(3049), 1, anon_sym_COLON, - [56622] = 2, + [55042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, + ACTIONS(3051), 1, anon_sym_COLON, - [56629] = 2, + [55049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 1, - sym_identifier, - [56636] = 2, + ACTIONS(3053), 1, + anon_sym_RBRACK, + [55056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 1, + ACTIONS(3055), 1, anon_sym_RBRACE, - [56643] = 2, + [55063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3057), 1, anon_sym_COLON, - [56650] = 2, + [55070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, - anon_sym_COLON, - [56657] = 2, + ACTIONS(2676), 1, + anon_sym_in, + [55077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_COLON, - [56664] = 2, + ACTIONS(3059), 1, + sym_identifier, + [55084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, - anon_sym_RBRACE, - [56671] = 2, + ACTIONS(2061), 1, + anon_sym_EQ, + [55091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - anon_sym_import, - [56678] = 2, + ACTIONS(1804), 1, + anon_sym_RBRACE, + [55098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(3061), 1, anon_sym_COLON, - [56685] = 2, + [55105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 1, - anon_sym_RPAREN, - [56692] = 2, + ACTIONS(3063), 1, + anon_sym_in, + [55112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(3065), 1, anon_sym_COLON, - [56699] = 2, + [55119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 1, + ACTIONS(3067), 1, anon_sym_COLON, - [56706] = 2, + [55126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, + ACTIONS(2249), 1, anon_sym_COLON, - [56713] = 2, + [55133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_RBRACE, - [56720] = 2, + ACTIONS(3069), 1, + sym_identifier, + [55140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, - anon_sym_RBRACE, - [56727] = 2, + ACTIONS(3071), 1, + sym_identifier, + [55147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1012), 1, - anon_sym_STAR, - [56734] = 2, + ACTIONS(3073), 1, + anon_sym_RPAREN, + [55154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3075), 1, anon_sym_RBRACK, - [56741] = 2, + [55161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 1, + ACTIONS(3077), 1, anon_sym_COLON, - [56748] = 2, + [55168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_RPAREN, - [56755] = 2, + ACTIONS(2644), 1, + anon_sym_RBRACE, + [55175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 1, + ACTIONS(3079), 1, anon_sym_COLON, - [56762] = 2, + [55182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, - sym_identifier, - [56769] = 2, + ACTIONS(3081), 1, + anon_sym_RPAREN, + [55189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3083), 1, anon_sym_COLON, - [56776] = 2, + [55196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(3085), 1, anon_sym_COLON, - [56783] = 2, + [55203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 1, + ACTIONS(3087), 1, anon_sym_COLON, - [56790] = 2, + [55210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, - sym_identifier, - [56797] = 2, + ACTIONS(3089), 1, + anon_sym_RPAREN, + [55217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, + ACTIONS(2630), 1, anon_sym_in, - [56804] = 2, + [55224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, - sym_identifier, - [56811] = 2, + ACTIONS(3091), 1, + anon_sym_COLON, + [55231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3093), 1, anon_sym_COLON, - [56818] = 2, + [55238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_RBRACE, - [56825] = 2, + ACTIONS(2280), 1, + anon_sym_COLON, + [55245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 1, - anon_sym_RBRACE, - [56832] = 2, + ACTIONS(3095), 1, + anon_sym_EQ, + [55252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, - anon_sym_RBRACK, - [56839] = 2, + ACTIONS(3097), 1, + anon_sym_in, + [55259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_RPAREN, - [56846] = 2, + ACTIONS(962), 1, + anon_sym_STAR, + [55266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 1, - anon_sym_RPAREN, - [56853] = 2, + ACTIONS(3099), 1, + anon_sym_COLON, + [55273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 1, - anon_sym_COLON, - [56860] = 2, + ACTIONS(3101), 1, + sym_identifier, + [55280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3103), 1, anon_sym_RBRACE, - [56867] = 2, + [55287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, - anon_sym_COLON, - [56874] = 2, + ACTIONS(3105), 1, + anon_sym_RPAREN, + [55294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3107), 1, anon_sym_COLON, - [56881] = 2, + [55301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 1, - anon_sym_RBRACE, - [56888] = 2, + ACTIONS(856), 1, + anon_sym_def, + [55308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, - anon_sym_LPAREN, - [56895] = 2, + ACTIONS(3109), 1, + anon_sym_RBRACE, + [55315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3111), 1, sym_identifier, - [56902] = 2, + [55322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_in, - [56909] = 2, + ACTIONS(3113), 1, + anon_sym_LPAREN, + [55329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, - anon_sym_COLON, - [56916] = 2, + ACTIONS(3115), 1, + anon_sym_import, + [55336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, - anon_sym_COLON, - [56923] = 2, + ACTIONS(2776), 1, + anon_sym_RBRACE, + [55343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_COLON, - [56930] = 2, + ACTIONS(3117), 1, + ts_builtin_sym_end, + [55350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, - anon_sym_RPAREN, - [56937] = 2, + ACTIONS(2448), 1, + anon_sym_RBRACE, + [55357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 1, - sym_identifier, - [56944] = 2, + ACTIONS(3119), 1, + anon_sym_COLON, + [55364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, - sym_identifier, - [56951] = 2, + ACTIONS(3121), 1, + anon_sym_COLON, + [55371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3123), 1, anon_sym_COLON, - [56958] = 2, + [55378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - ts_builtin_sym_end, - [56965] = 2, + ACTIONS(3125), 1, + anon_sym_RBRACE, + [55385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3127), 1, sym_identifier, - [56972] = 2, + [55392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3129), 1, sym_identifier, - [56979] = 2, + [55399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3131), 1, sym_identifier, - [56986] = 2, + [55406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, + ACTIONS(956), 1, anon_sym_STAR, - [56993] = 2, + [55413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3133), 1, sym_identifier, - [57000] = 2, + [55420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3135), 1, anon_sym_COLON, - [57007] = 2, + [55427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3137), 1, anon_sym_COLON, - [57014] = 2, + [55434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, - anon_sym_RBRACE, - [57021] = 2, + ACTIONS(3139), 1, + sym_identifier, + [55441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_RPAREN, - [57028] = 2, + ACTIONS(3141), 1, + sym_identifier, + [55448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3143), 1, sym_identifier, - [57035] = 2, + [55455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3145), 1, sym_identifier, - [57042] = 2, + [55462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, - anon_sym_RPAREN, - [57049] = 2, + ACTIONS(3147), 1, + anon_sym_for, + [55469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2751), 1, anon_sym_in, - [57056] = 2, + [55476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(870), 1, + ACTIONS(842), 1, anon_sym_def, - [57063] = 2, + [55483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, - anon_sym_in, - [57070] = 2, + ACTIONS(3149), 1, + anon_sym_RPAREN, + [55490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 1, + ACTIONS(2797), 1, anon_sym_in, - [57077] = 2, + [55497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, - anon_sym_COLON, - [57084] = 2, + ACTIONS(2729), 1, + anon_sym_RBRACK, + [55504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_COLON, + ACTIONS(3151), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { @@ -69658,1358 +68287,1331 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(151)] = 236, [SMALL_STATE(152)] = 354, [SMALL_STATE(153)] = 464, - [SMALL_STATE(154)] = 579, - [SMALL_STATE(155)] = 698, - [SMALL_STATE(156)] = 815, - [SMALL_STATE(157)] = 930, - [SMALL_STATE(158)] = 1045, - [SMALL_STATE(159)] = 1148, - [SMALL_STATE(160)] = 1265, + [SMALL_STATE(154)] = 581, + [SMALL_STATE(155)] = 696, + [SMALL_STATE(156)] = 799, + [SMALL_STATE(157)] = 902, + [SMALL_STATE(158)] = 1017, + [SMALL_STATE(159)] = 1136, + [SMALL_STATE(160)] = 1251, [SMALL_STATE(161)] = 1368, - [SMALL_STATE(162)] = 1472, - [SMALL_STATE(163)] = 1576, - [SMALL_STATE(164)] = 1690, - [SMALL_STATE(165)] = 1794, + [SMALL_STATE(162)] = 1482, + [SMALL_STATE(163)] = 1586, + [SMALL_STATE(164)] = 1700, + [SMALL_STATE(165)] = 1804, [SMALL_STATE(166)] = 1908, [SMALL_STATE(167)] = 2022, - [SMALL_STATE(168)] = 2127, - [SMALL_STATE(169)] = 2230, + [SMALL_STATE(168)] = 2123, + [SMALL_STATE(169)] = 2228, [SMALL_STATE(170)] = 2335, - [SMALL_STATE(171)] = 2436, - [SMALL_STATE(172)] = 2541, - [SMALL_STATE(173)] = 2644, + [SMALL_STATE(171)] = 2438, + [SMALL_STATE(172)] = 2539, + [SMALL_STATE(173)] = 2640, [SMALL_STATE(174)] = 2745, [SMALL_STATE(175)] = 2850, - [SMALL_STATE(176)] = 2955, - [SMALL_STATE(177)] = 3056, - [SMALL_STATE(178)] = 3161, + [SMALL_STATE(176)] = 2953, + [SMALL_STATE(177)] = 3058, + [SMALL_STATE(178)] = 3163, [SMALL_STATE(179)] = 3268, [SMALL_STATE(180)] = 3370, [SMALL_STATE(181)] = 3472, [SMALL_STATE(182)] = 3574, - [SMALL_STATE(183)] = 3676, - [SMALL_STATE(184)] = 3780, - [SMALL_STATE(185)] = 3882, - [SMALL_STATE(186)] = 3988, - [SMALL_STATE(187)] = 4090, - [SMALL_STATE(188)] = 4192, - [SMALL_STATE(189)] = 4296, - [SMALL_STATE(190)] = 4398, - [SMALL_STATE(191)] = 4500, - [SMALL_STATE(192)] = 4602, - [SMALL_STATE(193)] = 4700, - [SMALL_STATE(194)] = 4802, - [SMALL_STATE(195)] = 4904, - [SMALL_STATE(196)] = 5006, + [SMALL_STATE(183)] = 3672, + [SMALL_STATE(184)] = 3776, + [SMALL_STATE(185)] = 3878, + [SMALL_STATE(186)] = 3982, + [SMALL_STATE(187)] = 4086, + [SMALL_STATE(188)] = 4188, + [SMALL_STATE(189)] = 4290, + [SMALL_STATE(190)] = 4392, + [SMALL_STATE(191)] = 4494, + [SMALL_STATE(192)] = 4600, + [SMALL_STATE(193)] = 4702, + [SMALL_STATE(194)] = 4804, + [SMALL_STATE(195)] = 4906, + [SMALL_STATE(196)] = 5010, [SMALL_STATE(197)] = 5112, [SMALL_STATE(198)] = 5214, [SMALL_STATE(199)] = 5316, - [SMALL_STATE(200)] = 5418, - [SMALL_STATE(201)] = 5516, - [SMALL_STATE(202)] = 5618, - [SMALL_STATE(203)] = 5716, - [SMALL_STATE(204)] = 5818, - [SMALL_STATE(205)] = 5920, - [SMALL_STATE(206)] = 6022, - [SMALL_STATE(207)] = 6124, - [SMALL_STATE(208)] = 6222, - [SMALL_STATE(209)] = 6324, - [SMALL_STATE(210)] = 6426, - [SMALL_STATE(211)] = 6530, + [SMALL_STATE(200)] = 5422, + [SMALL_STATE(201)] = 5524, + [SMALL_STATE(202)] = 5626, + [SMALL_STATE(203)] = 5728, + [SMALL_STATE(204)] = 5830, + [SMALL_STATE(205)] = 5932, + [SMALL_STATE(206)] = 6030, + [SMALL_STATE(207)] = 6128, + [SMALL_STATE(208)] = 6230, + [SMALL_STATE(209)] = 6332, + [SMALL_STATE(210)] = 6434, + [SMALL_STATE(211)] = 6532, [SMALL_STATE(212)] = 6634, - [SMALL_STATE(213)] = 6695, + [SMALL_STATE(213)] = 6733, [SMALL_STATE(214)] = 6794, - [SMALL_STATE(215)] = 6855, - [SMALL_STATE(216)] = 6916, - [SMALL_STATE(217)] = 6977, - [SMALL_STATE(218)] = 7038, - [SMALL_STATE(219)] = 7099, - [SMALL_STATE(220)] = 7198, - [SMALL_STATE(221)] = 7259, - [SMALL_STATE(222)] = 7358, - [SMALL_STATE(223)] = 7445, - [SMALL_STATE(224)] = 7517, - [SMALL_STATE(225)] = 7615, - [SMALL_STATE(226)] = 7687, - [SMALL_STATE(227)] = 7785, - [SMALL_STATE(228)] = 7883, - [SMALL_STATE(229)] = 7979, - [SMALL_STATE(230)] = 8077, - [SMALL_STATE(231)] = 8149, - [SMALL_STATE(232)] = 8221, - [SMALL_STATE(233)] = 8319, - [SMALL_STATE(234)] = 8417, - [SMALL_STATE(235)] = 8515, - [SMALL_STATE(236)] = 8587, - [SMALL_STATE(237)] = 8685, - [SMALL_STATE(238)] = 8757, - [SMALL_STATE(239)] = 8829, - [SMALL_STATE(240)] = 8927, - [SMALL_STATE(241)] = 9025, - [SMALL_STATE(242)] = 9123, - [SMALL_STATE(243)] = 9221, - [SMALL_STATE(244)] = 9293, - [SMALL_STATE(245)] = 9391, - [SMALL_STATE(246)] = 9489, - [SMALL_STATE(247)] = 9584, - [SMALL_STATE(248)] = 9679, - [SMALL_STATE(249)] = 9774, - [SMALL_STATE(250)] = 9869, - [SMALL_STATE(251)] = 9942, - [SMALL_STATE(252)] = 10037, - [SMALL_STATE(253)] = 10132, - [SMALL_STATE(254)] = 10227, - [SMALL_STATE(255)] = 10322, - [SMALL_STATE(256)] = 10417, - [SMALL_STATE(257)] = 10490, - [SMALL_STATE(258)] = 10585, - [SMALL_STATE(259)] = 10680, - [SMALL_STATE(260)] = 10775, - [SMALL_STATE(261)] = 10870, - [SMALL_STATE(262)] = 10965, - [SMALL_STATE(263)] = 11060, - [SMALL_STATE(264)] = 11118, - [SMALL_STATE(265)] = 11176, - [SMALL_STATE(266)] = 11270, - [SMALL_STATE(267)] = 11328, - [SMALL_STATE(268)] = 11420, - [SMALL_STATE(269)] = 11488, - [SMALL_STATE(270)] = 11582, - [SMALL_STATE(271)] = 11676, - [SMALL_STATE(272)] = 11746, - [SMALL_STATE(273)] = 11814, - [SMALL_STATE(274)] = 11908, - [SMALL_STATE(275)] = 12002, - [SMALL_STATE(276)] = 12060, - [SMALL_STATE(277)] = 12118, - [SMALL_STATE(278)] = 12210, - [SMALL_STATE(279)] = 12302, - [SMALL_STATE(280)] = 12370, - [SMALL_STATE(281)] = 12438, - [SMALL_STATE(282)] = 12506, - [SMALL_STATE(283)] = 12600, - [SMALL_STATE(284)] = 12694, - [SMALL_STATE(285)] = 12756, - [SMALL_STATE(286)] = 12818, - [SMALL_STATE(287)] = 12886, - [SMALL_STATE(288)] = 12954, - [SMALL_STATE(289)] = 13048, - [SMALL_STATE(290)] = 13116, - [SMALL_STATE(291)] = 13210, - [SMALL_STATE(292)] = 13268, - [SMALL_STATE(293)] = 13326, - [SMALL_STATE(294)] = 13384, - [SMALL_STATE(295)] = 13442, - [SMALL_STATE(296)] = 13536, - [SMALL_STATE(297)] = 13598, - [SMALL_STATE(298)] = 13660, - [SMALL_STATE(299)] = 13754, - [SMALL_STATE(300)] = 13812, - [SMALL_STATE(301)] = 13901, - [SMALL_STATE(302)] = 13990, - [SMALL_STATE(303)] = 14079, - [SMALL_STATE(304)] = 14168, - [SMALL_STATE(305)] = 14231, - [SMALL_STATE(306)] = 14320, - [SMALL_STATE(307)] = 14411, - [SMALL_STATE(308)] = 14500, - [SMALL_STATE(309)] = 14589, - [SMALL_STATE(310)] = 14678, - [SMALL_STATE(311)] = 14767, - [SMALL_STATE(312)] = 14856, - [SMALL_STATE(313)] = 14945, - [SMALL_STATE(314)] = 15036, - [SMALL_STATE(315)] = 15125, - [SMALL_STATE(316)] = 15216, - [SMALL_STATE(317)] = 15307, - [SMALL_STATE(318)] = 15398, - [SMALL_STATE(319)] = 15461, - [SMALL_STATE(320)] = 15552, - [SMALL_STATE(321)] = 15643, - [SMALL_STATE(322)] = 15734, - [SMALL_STATE(323)] = 15801, - [SMALL_STATE(324)] = 15890, - [SMALL_STATE(325)] = 15981, - [SMALL_STATE(326)] = 16037, - [SMALL_STATE(327)] = 16093, - [SMALL_STATE(328)] = 16149, - [SMALL_STATE(329)] = 16209, - [SMALL_STATE(330)] = 16265, - [SMALL_STATE(331)] = 16321, - [SMALL_STATE(332)] = 16377, - [SMALL_STATE(333)] = 16465, - [SMALL_STATE(334)] = 16521, - [SMALL_STATE(335)] = 16581, - [SMALL_STATE(336)] = 16645, - [SMALL_STATE(337)] = 16701, - [SMALL_STATE(338)] = 16757, - [SMALL_STATE(339)] = 16813, - [SMALL_STATE(340)] = 16873, - [SMALL_STATE(341)] = 16929, - [SMALL_STATE(342)] = 16985, - [SMALL_STATE(343)] = 17041, - [SMALL_STATE(344)] = 17097, - [SMALL_STATE(345)] = 17185, - [SMALL_STATE(346)] = 17245, - [SMALL_STATE(347)] = 17301, - [SMALL_STATE(348)] = 17357, - [SMALL_STATE(349)] = 17413, - [SMALL_STATE(350)] = 17469, - [SMALL_STATE(351)] = 17525, - [SMALL_STATE(352)] = 17581, - [SMALL_STATE(353)] = 17637, - [SMALL_STATE(354)] = 17693, - [SMALL_STATE(355)] = 17749, - [SMALL_STATE(356)] = 17805, - [SMALL_STATE(357)] = 17893, - [SMALL_STATE(358)] = 17957, - [SMALL_STATE(359)] = 18021, - [SMALL_STATE(360)] = 18077, - [SMALL_STATE(361)] = 18141, - [SMALL_STATE(362)] = 18197, - [SMALL_STATE(363)] = 18253, - [SMALL_STATE(364)] = 18338, - [SMALL_STATE(365)] = 18423, - [SMALL_STATE(366)] = 18508, - [SMALL_STATE(367)] = 18593, - [SMALL_STATE(368)] = 18652, - [SMALL_STATE(369)] = 18707, - [SMALL_STATE(370)] = 18792, - [SMALL_STATE(371)] = 18877, - [SMALL_STATE(372)] = 18936, - [SMALL_STATE(373)] = 19021, - [SMALL_STATE(374)] = 19082, - [SMALL_STATE(375)] = 19167, - [SMALL_STATE(376)] = 19252, - [SMALL_STATE(377)] = 19337, - [SMALL_STATE(378)] = 19422, - [SMALL_STATE(379)] = 19507, - [SMALL_STATE(380)] = 19568, - [SMALL_STATE(381)] = 19653, - [SMALL_STATE(382)] = 19738, - [SMALL_STATE(383)] = 19823, - [SMALL_STATE(384)] = 19908, - [SMALL_STATE(385)] = 19993, - [SMALL_STATE(386)] = 20078, - [SMALL_STATE(387)] = 20133, - [SMALL_STATE(388)] = 20218, - [SMALL_STATE(389)] = 20303, - [SMALL_STATE(390)] = 20362, - [SMALL_STATE(391)] = 20447, - [SMALL_STATE(392)] = 20532, - [SMALL_STATE(393)] = 20617, - [SMALL_STATE(394)] = 20702, - [SMALL_STATE(395)] = 20787, - [SMALL_STATE(396)] = 20846, - [SMALL_STATE(397)] = 20931, - [SMALL_STATE(398)] = 21016, - [SMALL_STATE(399)] = 21101, - [SMALL_STATE(400)] = 21186, - [SMALL_STATE(401)] = 21241, - [SMALL_STATE(402)] = 21300, - [SMALL_STATE(403)] = 21359, - [SMALL_STATE(404)] = 21444, - [SMALL_STATE(405)] = 21529, - [SMALL_STATE(406)] = 21614, - [SMALL_STATE(407)] = 21699, - [SMALL_STATE(408)] = 21784, - [SMALL_STATE(409)] = 21869, - [SMALL_STATE(410)] = 21954, - [SMALL_STATE(411)] = 22009, - [SMALL_STATE(412)] = 22068, - [SMALL_STATE(413)] = 22153, - [SMALL_STATE(414)] = 22238, - [SMALL_STATE(415)] = 22323, - [SMALL_STATE(416)] = 22408, - [SMALL_STATE(417)] = 22467, - [SMALL_STATE(418)] = 22552, - [SMALL_STATE(419)] = 22611, - [SMALL_STATE(420)] = 22696, - [SMALL_STATE(421)] = 22781, - [SMALL_STATE(422)] = 22866, - [SMALL_STATE(423)] = 22927, - [SMALL_STATE(424)] = 23012, - [SMALL_STATE(425)] = 23097, - [SMALL_STATE(426)] = 23158, - [SMALL_STATE(427)] = 23243, - [SMALL_STATE(428)] = 23298, - [SMALL_STATE(429)] = 23383, - [SMALL_STATE(430)] = 23468, - [SMALL_STATE(431)] = 23553, - [SMALL_STATE(432)] = 23638, - [SMALL_STATE(433)] = 23697, - [SMALL_STATE(434)] = 23782, - [SMALL_STATE(435)] = 23867, - [SMALL_STATE(436)] = 23952, - [SMALL_STATE(437)] = 24011, - [SMALL_STATE(438)] = 24096, - [SMALL_STATE(439)] = 24155, - [SMALL_STATE(440)] = 24240, - [SMALL_STATE(441)] = 24299, - [SMALL_STATE(442)] = 24384, - [SMALL_STATE(443)] = 24469, - [SMALL_STATE(444)] = 24554, - [SMALL_STATE(445)] = 24613, - [SMALL_STATE(446)] = 24698, - [SMALL_STATE(447)] = 24783, - [SMALL_STATE(448)] = 24868, - [SMALL_STATE(449)] = 24953, - [SMALL_STATE(450)] = 25012, - [SMALL_STATE(451)] = 25099, - [SMALL_STATE(452)] = 25184, - [SMALL_STATE(453)] = 25269, - [SMALL_STATE(454)] = 25328, - [SMALL_STATE(455)] = 25413, - [SMALL_STATE(456)] = 25498, - [SMALL_STATE(457)] = 25583, - [SMALL_STATE(458)] = 25668, - [SMALL_STATE(459)] = 25723, - [SMALL_STATE(460)] = 25808, - [SMALL_STATE(461)] = 25893, - [SMALL_STATE(462)] = 25978, - [SMALL_STATE(463)] = 26063, - [SMALL_STATE(464)] = 26117, - [SMALL_STATE(465)] = 26171, - [SMALL_STATE(466)] = 26225, - [SMALL_STATE(467)] = 26279, - [SMALL_STATE(468)] = 26333, - [SMALL_STATE(469)] = 26387, - [SMALL_STATE(470)] = 26441, - [SMALL_STATE(471)] = 26495, - [SMALL_STATE(472)] = 26549, - [SMALL_STATE(473)] = 26603, - [SMALL_STATE(474)] = 26657, - [SMALL_STATE(475)] = 26711, - [SMALL_STATE(476)] = 26764, - [SMALL_STATE(477)] = 26817, - [SMALL_STATE(478)] = 26870, - [SMALL_STATE(479)] = 26923, - [SMALL_STATE(480)] = 26976, - [SMALL_STATE(481)] = 27029, - [SMALL_STATE(482)] = 27082, - [SMALL_STATE(483)] = 27135, - [SMALL_STATE(484)] = 27188, - [SMALL_STATE(485)] = 27241, - [SMALL_STATE(486)] = 27294, - [SMALL_STATE(487)] = 27347, - [SMALL_STATE(488)] = 27400, - [SMALL_STATE(489)] = 27453, - [SMALL_STATE(490)] = 27506, - [SMALL_STATE(491)] = 27559, - [SMALL_STATE(492)] = 27612, - [SMALL_STATE(493)] = 27665, - [SMALL_STATE(494)] = 27718, - [SMALL_STATE(495)] = 27771, - [SMALL_STATE(496)] = 27858, - [SMALL_STATE(497)] = 27911, - [SMALL_STATE(498)] = 27964, - [SMALL_STATE(499)] = 28017, - [SMALL_STATE(500)] = 28070, - [SMALL_STATE(501)] = 28123, - [SMALL_STATE(502)] = 28176, - [SMALL_STATE(503)] = 28229, - [SMALL_STATE(504)] = 28282, - [SMALL_STATE(505)] = 28335, - [SMALL_STATE(506)] = 28388, - [SMALL_STATE(507)] = 28441, - [SMALL_STATE(508)] = 28494, - [SMALL_STATE(509)] = 28547, - [SMALL_STATE(510)] = 28600, - [SMALL_STATE(511)] = 28653, - [SMALL_STATE(512)] = 28706, - [SMALL_STATE(513)] = 28759, - [SMALL_STATE(514)] = 28812, - [SMALL_STATE(515)] = 28865, - [SMALL_STATE(516)] = 28918, - [SMALL_STATE(517)] = 28971, - [SMALL_STATE(518)] = 29024, - [SMALL_STATE(519)] = 29077, - [SMALL_STATE(520)] = 29130, - [SMALL_STATE(521)] = 29183, - [SMALL_STATE(522)] = 29268, - [SMALL_STATE(523)] = 29321, - [SMALL_STATE(524)] = 29374, - [SMALL_STATE(525)] = 29427, - [SMALL_STATE(526)] = 29480, - [SMALL_STATE(527)] = 29533, - [SMALL_STATE(528)] = 29586, - [SMALL_STATE(529)] = 29639, - [SMALL_STATE(530)] = 29692, - [SMALL_STATE(531)] = 29777, - [SMALL_STATE(532)] = 29830, - [SMALL_STATE(533)] = 29883, - [SMALL_STATE(534)] = 29936, - [SMALL_STATE(535)] = 29989, - [SMALL_STATE(536)] = 30042, - [SMALL_STATE(537)] = 30095, - [SMALL_STATE(538)] = 30148, - [SMALL_STATE(539)] = 30201, - [SMALL_STATE(540)] = 30254, - [SMALL_STATE(541)] = 30307, - [SMALL_STATE(542)] = 30360, - [SMALL_STATE(543)] = 30413, - [SMALL_STATE(544)] = 30466, - [SMALL_STATE(545)] = 30519, - [SMALL_STATE(546)] = 30572, - [SMALL_STATE(547)] = 30625, - [SMALL_STATE(548)] = 30678, - [SMALL_STATE(549)] = 30731, - [SMALL_STATE(550)] = 30784, - [SMALL_STATE(551)] = 30837, - [SMALL_STATE(552)] = 30890, - [SMALL_STATE(553)] = 30943, - [SMALL_STATE(554)] = 30996, - [SMALL_STATE(555)] = 31049, - [SMALL_STATE(556)] = 31102, - [SMALL_STATE(557)] = 31155, - [SMALL_STATE(558)] = 31208, - [SMALL_STATE(559)] = 31261, - [SMALL_STATE(560)] = 31314, - [SMALL_STATE(561)] = 31367, - [SMALL_STATE(562)] = 31420, - [SMALL_STATE(563)] = 31473, - [SMALL_STATE(564)] = 31526, - [SMALL_STATE(565)] = 31579, - [SMALL_STATE(566)] = 31632, - [SMALL_STATE(567)] = 31685, - [SMALL_STATE(568)] = 31738, - [SMALL_STATE(569)] = 31791, - [SMALL_STATE(570)] = 31844, - [SMALL_STATE(571)] = 31897, - [SMALL_STATE(572)] = 31950, - [SMALL_STATE(573)] = 32003, - [SMALL_STATE(574)] = 32056, - [SMALL_STATE(575)] = 32109, - [SMALL_STATE(576)] = 32162, - [SMALL_STATE(577)] = 32246, - [SMALL_STATE(578)] = 32330, - [SMALL_STATE(579)] = 32414, - [SMALL_STATE(580)] = 32498, - [SMALL_STATE(581)] = 32582, - [SMALL_STATE(582)] = 32666, - [SMALL_STATE(583)] = 32721, - [SMALL_STATE(584)] = 32802, - [SMALL_STATE(585)] = 32857, - [SMALL_STATE(586)] = 32938, - [SMALL_STATE(587)] = 32993, - [SMALL_STATE(588)] = 33068, - [SMALL_STATE(589)] = 33117, - [SMALL_STATE(590)] = 33166, - [SMALL_STATE(591)] = 33248, - [SMALL_STATE(592)] = 33296, - [SMALL_STATE(593)] = 33344, - [SMALL_STATE(594)] = 33392, - [SMALL_STATE(595)] = 33440, - [SMALL_STATE(596)] = 33488, - [SMALL_STATE(597)] = 33536, - [SMALL_STATE(598)] = 33584, - [SMALL_STATE(599)] = 33632, - [SMALL_STATE(600)] = 33680, - [SMALL_STATE(601)] = 33728, - [SMALL_STATE(602)] = 33776, - [SMALL_STATE(603)] = 33824, - [SMALL_STATE(604)] = 33872, - [SMALL_STATE(605)] = 33920, - [SMALL_STATE(606)] = 33968, - [SMALL_STATE(607)] = 34016, - [SMALL_STATE(608)] = 34064, - [SMALL_STATE(609)] = 34112, - [SMALL_STATE(610)] = 34160, - [SMALL_STATE(611)] = 34208, - [SMALL_STATE(612)] = 34256, - [SMALL_STATE(613)] = 34304, - [SMALL_STATE(614)] = 34352, - [SMALL_STATE(615)] = 34400, - [SMALL_STATE(616)] = 34448, - [SMALL_STATE(617)] = 34530, - [SMALL_STATE(618)] = 34578, - [SMALL_STATE(619)] = 34626, - [SMALL_STATE(620)] = 34674, - [SMALL_STATE(621)] = 34722, - [SMALL_STATE(622)] = 34770, - [SMALL_STATE(623)] = 34818, - [SMALL_STATE(624)] = 34883, - [SMALL_STATE(625)] = 34940, - [SMALL_STATE(626)] = 35011, - [SMALL_STATE(627)] = 35080, - [SMALL_STATE(628)] = 35137, - [SMALL_STATE(629)] = 35202, - [SMALL_STATE(630)] = 35259, - [SMALL_STATE(631)] = 35320, - [SMALL_STATE(632)] = 35389, - [SMALL_STATE(633)] = 35460, - [SMALL_STATE(634)] = 35523, - [SMALL_STATE(635)] = 35580, - [SMALL_STATE(636)] = 35649, - [SMALL_STATE(637)] = 35716, - [SMALL_STATE(638)] = 35773, - [SMALL_STATE(639)] = 35844, - [SMALL_STATE(640)] = 35915, - [SMALL_STATE(641)] = 35972, - [SMALL_STATE(642)] = 36041, - [SMALL_STATE(643)] = 36112, - [SMALL_STATE(644)] = 36179, - [SMALL_STATE(645)] = 36236, - [SMALL_STATE(646)] = 36299, - [SMALL_STATE(647)] = 36368, - [SMALL_STATE(648)] = 36425, - [SMALL_STATE(649)] = 36496, - [SMALL_STATE(650)] = 36565, - [SMALL_STATE(651)] = 36626, - [SMALL_STATE(652)] = 36674, - [SMALL_STATE(653)] = 36740, - [SMALL_STATE(654)] = 36806, - [SMALL_STATE(655)] = 36872, - [SMALL_STATE(656)] = 36938, - [SMALL_STATE(657)] = 37004, - [SMALL_STATE(658)] = 37070, - [SMALL_STATE(659)] = 37136, - [SMALL_STATE(660)] = 37202, - [SMALL_STATE(661)] = 37268, - [SMALL_STATE(662)] = 37334, - [SMALL_STATE(663)] = 37400, - [SMALL_STATE(664)] = 37466, - [SMALL_STATE(665)] = 37532, - [SMALL_STATE(666)] = 37598, - [SMALL_STATE(667)] = 37664, - [SMALL_STATE(668)] = 37730, - [SMALL_STATE(669)] = 37780, - [SMALL_STATE(670)] = 37846, - [SMALL_STATE(671)] = 37916, - [SMALL_STATE(672)] = 37982, - [SMALL_STATE(673)] = 38030, - [SMALL_STATE(674)] = 38096, - [SMALL_STATE(675)] = 38146, - [SMALL_STATE(676)] = 38216, - [SMALL_STATE(677)] = 38282, - [SMALL_STATE(678)] = 38348, - [SMALL_STATE(679)] = 38414, - [SMALL_STATE(680)] = 38480, - [SMALL_STATE(681)] = 38546, - [SMALL_STATE(682)] = 38612, - [SMALL_STATE(683)] = 38678, - [SMALL_STATE(684)] = 38744, - [SMALL_STATE(685)] = 38810, - [SMALL_STATE(686)] = 38876, - [SMALL_STATE(687)] = 38942, - [SMALL_STATE(688)] = 39008, - [SMALL_STATE(689)] = 39074, - [SMALL_STATE(690)] = 39140, - [SMALL_STATE(691)] = 39206, - [SMALL_STATE(692)] = 39272, - [SMALL_STATE(693)] = 39320, - [SMALL_STATE(694)] = 39386, - [SMALL_STATE(695)] = 39452, - [SMALL_STATE(696)] = 39518, - [SMALL_STATE(697)] = 39584, - [SMALL_STATE(698)] = 39650, - [SMALL_STATE(699)] = 39696, - [SMALL_STATE(700)] = 39762, - [SMALL_STATE(701)] = 39828, - [SMALL_STATE(702)] = 39874, - [SMALL_STATE(703)] = 39940, - [SMALL_STATE(704)] = 39988, - [SMALL_STATE(705)] = 40054, - [SMALL_STATE(706)] = 40099, - [SMALL_STATE(707)] = 40144, - [SMALL_STATE(708)] = 40223, - [SMALL_STATE(709)] = 40272, - [SMALL_STATE(710)] = 40321, - [SMALL_STATE(711)] = 40370, - [SMALL_STATE(712)] = 40438, - [SMALL_STATE(713)] = 40506, - [SMALL_STATE(714)] = 40554, - [SMALL_STATE(715)] = 40616, - [SMALL_STATE(716)] = 40660, - [SMALL_STATE(717)] = 40724, - [SMALL_STATE(718)] = 40784, - [SMALL_STATE(719)] = 40838, - [SMALL_STATE(720)] = 40896, - [SMALL_STATE(721)] = 40940, - [SMALL_STATE(722)] = 41008, - [SMALL_STATE(723)] = 41062, - [SMALL_STATE(724)] = 41128, - [SMALL_STATE(725)] = 41182, - [SMALL_STATE(726)] = 41236, - [SMALL_STATE(727)] = 41312, - [SMALL_STATE(728)] = 41359, - [SMALL_STATE(729)] = 41418, - [SMALL_STATE(730)] = 41463, - [SMALL_STATE(731)] = 41508, - [SMALL_STATE(732)] = 41561, - [SMALL_STATE(733)] = 41604, - [SMALL_STATE(734)] = 41649, - [SMALL_STATE(735)] = 41694, - [SMALL_STATE(736)] = 41737, - [SMALL_STATE(737)] = 41782, - [SMALL_STATE(738)] = 41829, - [SMALL_STATE(739)] = 41896, - [SMALL_STATE(740)] = 41963, - [SMALL_STATE(741)] = 42008, - [SMALL_STATE(742)] = 42061, - [SMALL_STATE(743)] = 42114, - [SMALL_STATE(744)] = 42181, - [SMALL_STATE(745)] = 42228, - [SMALL_STATE(746)] = 42291, - [SMALL_STATE(747)] = 42352, - [SMALL_STATE(748)] = 42397, - [SMALL_STATE(749)] = 42450, - [SMALL_STATE(750)] = 42495, - [SMALL_STATE(751)] = 42542, - [SMALL_STATE(752)] = 42607, - [SMALL_STATE(753)] = 42664, - [SMALL_STATE(754)] = 42706, - [SMALL_STATE(755)] = 42748, - [SMALL_STATE(756)] = 42790, - [SMALL_STATE(757)] = 42832, - [SMALL_STATE(758)] = 42874, - [SMALL_STATE(759)] = 42916, - [SMALL_STATE(760)] = 42958, - [SMALL_STATE(761)] = 43000, - [SMALL_STATE(762)] = 43042, - [SMALL_STATE(763)] = 43084, - [SMALL_STATE(764)] = 43126, - [SMALL_STATE(765)] = 43168, - [SMALL_STATE(766)] = 43212, - [SMALL_STATE(767)] = 43254, - [SMALL_STATE(768)] = 43296, - [SMALL_STATE(769)] = 43338, - [SMALL_STATE(770)] = 43382, - [SMALL_STATE(771)] = 43426, - [SMALL_STATE(772)] = 43468, - [SMALL_STATE(773)] = 43510, - [SMALL_STATE(774)] = 43552, - [SMALL_STATE(775)] = 43594, - [SMALL_STATE(776)] = 43636, - [SMALL_STATE(777)] = 43678, - [SMALL_STATE(778)] = 43720, - [SMALL_STATE(779)] = 43762, - [SMALL_STATE(780)] = 43804, - [SMALL_STATE(781)] = 43846, - [SMALL_STATE(782)] = 43888, - [SMALL_STATE(783)] = 43930, - [SMALL_STATE(784)] = 43974, - [SMALL_STATE(785)] = 44016, - [SMALL_STATE(786)] = 44058, - [SMALL_STATE(787)] = 44100, - [SMALL_STATE(788)] = 44142, - [SMALL_STATE(789)] = 44186, - [SMALL_STATE(790)] = 44228, - [SMALL_STATE(791)] = 44270, - [SMALL_STATE(792)] = 44311, - [SMALL_STATE(793)] = 44352, - [SMALL_STATE(794)] = 44393, - [SMALL_STATE(795)] = 44434, - [SMALL_STATE(796)] = 44475, - [SMALL_STATE(797)] = 44516, - [SMALL_STATE(798)] = 44557, - [SMALL_STATE(799)] = 44598, - [SMALL_STATE(800)] = 44639, - [SMALL_STATE(801)] = 44680, - [SMALL_STATE(802)] = 44721, - [SMALL_STATE(803)] = 44762, - [SMALL_STATE(804)] = 44803, - [SMALL_STATE(805)] = 44844, - [SMALL_STATE(806)] = 44885, - [SMALL_STATE(807)] = 44926, - [SMALL_STATE(808)] = 44967, - [SMALL_STATE(809)] = 45008, - [SMALL_STATE(810)] = 45049, - [SMALL_STATE(811)] = 45090, - [SMALL_STATE(812)] = 45131, - [SMALL_STATE(813)] = 45172, - [SMALL_STATE(814)] = 45213, - [SMALL_STATE(815)] = 45254, - [SMALL_STATE(816)] = 45295, - [SMALL_STATE(817)] = 45336, - [SMALL_STATE(818)] = 45377, - [SMALL_STATE(819)] = 45418, - [SMALL_STATE(820)] = 45459, - [SMALL_STATE(821)] = 45500, - [SMALL_STATE(822)] = 45541, - [SMALL_STATE(823)] = 45582, - [SMALL_STATE(824)] = 45627, - [SMALL_STATE(825)] = 45672, - [SMALL_STATE(826)] = 45713, - [SMALL_STATE(827)] = 45754, - [SMALL_STATE(828)] = 45795, - [SMALL_STATE(829)] = 45836, - [SMALL_STATE(830)] = 45877, - [SMALL_STATE(831)] = 45918, - [SMALL_STATE(832)] = 45992, - [SMALL_STATE(833)] = 46066, - [SMALL_STATE(834)] = 46140, - [SMALL_STATE(835)] = 46214, - [SMALL_STATE(836)] = 46285, - [SMALL_STATE(837)] = 46356, - [SMALL_STATE(838)] = 46429, - [SMALL_STATE(839)] = 46500, - [SMALL_STATE(840)] = 46571, - [SMALL_STATE(841)] = 46642, - [SMALL_STATE(842)] = 46714, - [SMALL_STATE(843)] = 46786, - [SMALL_STATE(844)] = 46858, - [SMALL_STATE(845)] = 46926, - [SMALL_STATE(846)] = 46992, - [SMALL_STATE(847)] = 47055, - [SMALL_STATE(848)] = 47118, - [SMALL_STATE(849)] = 47173, - [SMALL_STATE(850)] = 47228, - [SMALL_STATE(851)] = 47268, - [SMALL_STATE(852)] = 47308, - [SMALL_STATE(853)] = 47348, - [SMALL_STATE(854)] = 47388, - [SMALL_STATE(855)] = 47418, - [SMALL_STATE(856)] = 47443, - [SMALL_STATE(857)] = 47468, - [SMALL_STATE(858)] = 47505, - [SMALL_STATE(859)] = 47542, - [SMALL_STATE(860)] = 47567, - [SMALL_STATE(861)] = 47592, - [SMALL_STATE(862)] = 47621, - [SMALL_STATE(863)] = 47650, - [SMALL_STATE(864)] = 47678, - [SMALL_STATE(865)] = 47712, - [SMALL_STATE(866)] = 47758, - [SMALL_STATE(867)] = 47792, - [SMALL_STATE(868)] = 47835, - [SMALL_STATE(869)] = 47878, - [SMALL_STATE(870)] = 47921, - [SMALL_STATE(871)] = 47964, - [SMALL_STATE(872)] = 47995, - [SMALL_STATE(873)] = 48038, - [SMALL_STATE(874)] = 48084, - [SMALL_STATE(875)] = 48124, - [SMALL_STATE(876)] = 48170, - [SMALL_STATE(877)] = 48216, - [SMALL_STATE(878)] = 48253, - [SMALL_STATE(879)] = 48290, - [SMALL_STATE(880)] = 48327, - [SMALL_STATE(881)] = 48352, - [SMALL_STATE(882)] = 48389, - [SMALL_STATE(883)] = 48411, - [SMALL_STATE(884)] = 48433, - [SMALL_STATE(885)] = 48467, - [SMALL_STATE(886)] = 48501, - [SMALL_STATE(887)] = 48538, - [SMALL_STATE(888)] = 48560, - [SMALL_STATE(889)] = 48581, - [SMALL_STATE(890)] = 48618, - [SMALL_STATE(891)] = 48639, - [SMALL_STATE(892)] = 48666, - [SMALL_STATE(893)] = 48683, - [SMALL_STATE(894)] = 48720, - [SMALL_STATE(895)] = 48743, - [SMALL_STATE(896)] = 48764, - [SMALL_STATE(897)] = 48783, - [SMALL_STATE(898)] = 48808, - [SMALL_STATE(899)] = 48845, - [SMALL_STATE(900)] = 48866, - [SMALL_STATE(901)] = 48889, - [SMALL_STATE(902)] = 48912, - [SMALL_STATE(903)] = 48933, - [SMALL_STATE(904)] = 48956, - [SMALL_STATE(905)] = 48979, - [SMALL_STATE(906)] = 49002, - [SMALL_STATE(907)] = 49025, - [SMALL_STATE(908)] = 49062, - [SMALL_STATE(909)] = 49085, - [SMALL_STATE(910)] = 49110, - [SMALL_STATE(911)] = 49135, - [SMALL_STATE(912)] = 49157, - [SMALL_STATE(913)] = 49179, - [SMALL_STATE(914)] = 49213, - [SMALL_STATE(915)] = 49235, - [SMALL_STATE(916)] = 49265, - [SMALL_STATE(917)] = 49295, - [SMALL_STATE(918)] = 49329, - [SMALL_STATE(919)] = 49363, - [SMALL_STATE(920)] = 49381, - [SMALL_STATE(921)] = 49403, - [SMALL_STATE(922)] = 49433, - [SMALL_STATE(923)] = 49463, - [SMALL_STATE(924)] = 49493, - [SMALL_STATE(925)] = 49523, - [SMALL_STATE(926)] = 49541, - [SMALL_STATE(927)] = 49575, - [SMALL_STATE(928)] = 49609, - [SMALL_STATE(929)] = 49639, - [SMALL_STATE(930)] = 49673, - [SMALL_STATE(931)] = 49707, - [SMALL_STATE(932)] = 49737, - [SMALL_STATE(933)] = 49771, - [SMALL_STATE(934)] = 49801, - [SMALL_STATE(935)] = 49835, - [SMALL_STATE(936)] = 49854, - [SMALL_STATE(937)] = 49873, - [SMALL_STATE(938)] = 49898, - [SMALL_STATE(939)] = 49917, - [SMALL_STATE(940)] = 49940, - [SMALL_STATE(941)] = 49959, - [SMALL_STATE(942)] = 49978, - [SMALL_STATE(943)] = 50001, - [SMALL_STATE(944)] = 50024, - [SMALL_STATE(945)] = 50043, - [SMALL_STATE(946)] = 50057, - [SMALL_STATE(947)] = 50083, - [SMALL_STATE(948)] = 50107, - [SMALL_STATE(949)] = 50121, - [SMALL_STATE(950)] = 50135, - [SMALL_STATE(951)] = 50153, - [SMALL_STATE(952)] = 50171, - [SMALL_STATE(953)] = 50185, - [SMALL_STATE(954)] = 50199, - [SMALL_STATE(955)] = 50213, - [SMALL_STATE(956)] = 50231, - [SMALL_STATE(957)] = 50247, - [SMALL_STATE(958)] = 50265, - [SMALL_STATE(959)] = 50279, - [SMALL_STATE(960)] = 50293, - [SMALL_STATE(961)] = 50307, - [SMALL_STATE(962)] = 50321, - [SMALL_STATE(963)] = 50341, - [SMALL_STATE(964)] = 50359, - [SMALL_STATE(965)] = 50375, - [SMALL_STATE(966)] = 50389, - [SMALL_STATE(967)] = 50403, - [SMALL_STATE(968)] = 50417, - [SMALL_STATE(969)] = 50431, - [SMALL_STATE(970)] = 50445, - [SMALL_STATE(971)] = 50459, - [SMALL_STATE(972)] = 50473, - [SMALL_STATE(973)] = 50491, - [SMALL_STATE(974)] = 50509, - [SMALL_STATE(975)] = 50523, - [SMALL_STATE(976)] = 50543, - [SMALL_STATE(977)] = 50561, - [SMALL_STATE(978)] = 50579, - [SMALL_STATE(979)] = 50597, - [SMALL_STATE(980)] = 50617, - [SMALL_STATE(981)] = 50635, - [SMALL_STATE(982)] = 50653, - [SMALL_STATE(983)] = 50677, - [SMALL_STATE(984)] = 50699, - [SMALL_STATE(985)] = 50713, - [SMALL_STATE(986)] = 50727, - [SMALL_STATE(987)] = 50741, - [SMALL_STATE(988)] = 50761, - [SMALL_STATE(989)] = 50775, - [SMALL_STATE(990)] = 50789, - [SMALL_STATE(991)] = 50803, - [SMALL_STATE(992)] = 50828, - [SMALL_STATE(993)] = 50843, - [SMALL_STATE(994)] = 50866, - [SMALL_STATE(995)] = 50887, - [SMALL_STATE(996)] = 50910, - [SMALL_STATE(997)] = 50929, - [SMALL_STATE(998)] = 50950, - [SMALL_STATE(999)] = 50973, - [SMALL_STATE(1000)] = 50986, - [SMALL_STATE(1001)] = 50999, - [SMALL_STATE(1002)] = 51020, - [SMALL_STATE(1003)] = 51039, - [SMALL_STATE(1004)] = 51052, - [SMALL_STATE(1005)] = 51065, - [SMALL_STATE(1006)] = 51084, - [SMALL_STATE(1007)] = 51103, - [SMALL_STATE(1008)] = 51120, - [SMALL_STATE(1009)] = 51139, - [SMALL_STATE(1010)] = 51156, - [SMALL_STATE(1011)] = 51171, - [SMALL_STATE(1012)] = 51190, - [SMALL_STATE(1013)] = 51207, - [SMALL_STATE(1014)] = 51228, - [SMALL_STATE(1015)] = 51251, - [SMALL_STATE(1016)] = 51270, - [SMALL_STATE(1017)] = 51289, - [SMALL_STATE(1018)] = 51308, - [SMALL_STATE(1019)] = 51333, - [SMALL_STATE(1020)] = 51356, - [SMALL_STATE(1021)] = 51377, - [SMALL_STATE(1022)] = 51400, - [SMALL_STATE(1023)] = 51413, - [SMALL_STATE(1024)] = 51438, - [SMALL_STATE(1025)] = 51451, - [SMALL_STATE(1026)] = 51474, - [SMALL_STATE(1027)] = 51493, - [SMALL_STATE(1028)] = 51516, - [SMALL_STATE(1029)] = 51541, - [SMALL_STATE(1030)] = 51564, - [SMALL_STATE(1031)] = 51585, - [SMALL_STATE(1032)] = 51610, - [SMALL_STATE(1033)] = 51635, - [SMALL_STATE(1034)] = 51656, - [SMALL_STATE(1035)] = 51669, - [SMALL_STATE(1036)] = 51694, - [SMALL_STATE(1037)] = 51716, - [SMALL_STATE(1038)] = 51732, - [SMALL_STATE(1039)] = 51754, - [SMALL_STATE(1040)] = 51768, - [SMALL_STATE(1041)] = 51786, - [SMALL_STATE(1042)] = 51804, - [SMALL_STATE(1043)] = 51820, - [SMALL_STATE(1044)] = 51834, - [SMALL_STATE(1045)] = 51854, - [SMALL_STATE(1046)] = 51872, - [SMALL_STATE(1047)] = 51888, - [SMALL_STATE(1048)] = 51910, - [SMALL_STATE(1049)] = 51924, - [SMALL_STATE(1050)] = 51946, - [SMALL_STATE(1051)] = 51960, - [SMALL_STATE(1052)] = 51980, - [SMALL_STATE(1053)] = 52000, - [SMALL_STATE(1054)] = 52014, - [SMALL_STATE(1055)] = 52034, - [SMALL_STATE(1056)] = 52050, - [SMALL_STATE(1057)] = 52070, - [SMALL_STATE(1058)] = 52092, - [SMALL_STATE(1059)] = 52108, - [SMALL_STATE(1060)] = 52126, - [SMALL_STATE(1061)] = 52144, - [SMALL_STATE(1062)] = 52160, - [SMALL_STATE(1063)] = 52172, - [SMALL_STATE(1064)] = 52192, - [SMALL_STATE(1065)] = 52210, - [SMALL_STATE(1066)] = 52228, - [SMALL_STATE(1067)] = 52250, - [SMALL_STATE(1068)] = 52272, - [SMALL_STATE(1069)] = 52286, - [SMALL_STATE(1070)] = 52298, - [SMALL_STATE(1071)] = 52314, - [SMALL_STATE(1072)] = 52333, - [SMALL_STATE(1073)] = 52348, - [SMALL_STATE(1074)] = 52367, - [SMALL_STATE(1075)] = 52382, - [SMALL_STATE(1076)] = 52393, - [SMALL_STATE(1077)] = 52410, - [SMALL_STATE(1078)] = 52425, - [SMALL_STATE(1079)] = 52442, - [SMALL_STATE(1080)] = 52459, - [SMALL_STATE(1081)] = 52474, - [SMALL_STATE(1082)] = 52491, - [SMALL_STATE(1083)] = 52508, - [SMALL_STATE(1084)] = 52525, - [SMALL_STATE(1085)] = 52544, - [SMALL_STATE(1086)] = 52561, - [SMALL_STATE(1087)] = 52578, - [SMALL_STATE(1088)] = 52595, - [SMALL_STATE(1089)] = 52612, - [SMALL_STATE(1090)] = 52629, - [SMALL_STATE(1091)] = 52648, - [SMALL_STATE(1092)] = 52659, - [SMALL_STATE(1093)] = 52676, - [SMALL_STATE(1094)] = 52693, - [SMALL_STATE(1095)] = 52712, - [SMALL_STATE(1096)] = 52723, - [SMALL_STATE(1097)] = 52738, - [SMALL_STATE(1098)] = 52755, - [SMALL_STATE(1099)] = 52774, - [SMALL_STATE(1100)] = 52791, - [SMALL_STATE(1101)] = 52806, - [SMALL_STATE(1102)] = 52825, - [SMALL_STATE(1103)] = 52842, - [SMALL_STATE(1104)] = 52859, - [SMALL_STATE(1105)] = 52878, - [SMALL_STATE(1106)] = 52895, - [SMALL_STATE(1107)] = 52914, - [SMALL_STATE(1108)] = 52929, - [SMALL_STATE(1109)] = 52948, - [SMALL_STATE(1110)] = 52964, - [SMALL_STATE(1111)] = 52980, - [SMALL_STATE(1112)] = 52996, - [SMALL_STATE(1113)] = 53012, - [SMALL_STATE(1114)] = 53028, - [SMALL_STATE(1115)] = 53042, - [SMALL_STATE(1116)] = 53058, - [SMALL_STATE(1117)] = 53074, - [SMALL_STATE(1118)] = 53090, - [SMALL_STATE(1119)] = 53106, - [SMALL_STATE(1120)] = 53120, - [SMALL_STATE(1121)] = 53134, - [SMALL_STATE(1122)] = 53150, - [SMALL_STATE(1123)] = 53166, - [SMALL_STATE(1124)] = 53180, - [SMALL_STATE(1125)] = 53194, - [SMALL_STATE(1126)] = 53208, - [SMALL_STATE(1127)] = 53224, - [SMALL_STATE(1128)] = 53238, - [SMALL_STATE(1129)] = 53252, - [SMALL_STATE(1130)] = 53266, - [SMALL_STATE(1131)] = 53280, - [SMALL_STATE(1132)] = 53294, - [SMALL_STATE(1133)] = 53310, - [SMALL_STATE(1134)] = 53324, - [SMALL_STATE(1135)] = 53338, - [SMALL_STATE(1136)] = 53354, - [SMALL_STATE(1137)] = 53368, - [SMALL_STATE(1138)] = 53382, - [SMALL_STATE(1139)] = 53398, - [SMALL_STATE(1140)] = 53412, - [SMALL_STATE(1141)] = 53428, - [SMALL_STATE(1142)] = 53442, - [SMALL_STATE(1143)] = 53458, - [SMALL_STATE(1144)] = 53472, - [SMALL_STATE(1145)] = 53486, - [SMALL_STATE(1146)] = 53500, - [SMALL_STATE(1147)] = 53510, - [SMALL_STATE(1148)] = 53524, - [SMALL_STATE(1149)] = 53540, - [SMALL_STATE(1150)] = 53556, - [SMALL_STATE(1151)] = 53566, - [SMALL_STATE(1152)] = 53582, - [SMALL_STATE(1153)] = 53598, - [SMALL_STATE(1154)] = 53608, - [SMALL_STATE(1155)] = 53622, - [SMALL_STATE(1156)] = 53636, - [SMALL_STATE(1157)] = 53650, - [SMALL_STATE(1158)] = 53664, - [SMALL_STATE(1159)] = 53676, - [SMALL_STATE(1160)] = 53690, - [SMALL_STATE(1161)] = 53706, - [SMALL_STATE(1162)] = 53720, - [SMALL_STATE(1163)] = 53734, - [SMALL_STATE(1164)] = 53750, - [SMALL_STATE(1165)] = 53764, - [SMALL_STATE(1166)] = 53780, - [SMALL_STATE(1167)] = 53796, - [SMALL_STATE(1168)] = 53806, - [SMALL_STATE(1169)] = 53822, - [SMALL_STATE(1170)] = 53832, - [SMALL_STATE(1171)] = 53842, - [SMALL_STATE(1172)] = 53854, - [SMALL_STATE(1173)] = 53868, - [SMALL_STATE(1174)] = 53884, - [SMALL_STATE(1175)] = 53900, - [SMALL_STATE(1176)] = 53916, - [SMALL_STATE(1177)] = 53932, - [SMALL_STATE(1178)] = 53946, - [SMALL_STATE(1179)] = 53955, - [SMALL_STATE(1180)] = 53968, - [SMALL_STATE(1181)] = 53981, - [SMALL_STATE(1182)] = 53994, - [SMALL_STATE(1183)] = 54007, - [SMALL_STATE(1184)] = 54020, - [SMALL_STATE(1185)] = 54031, - [SMALL_STATE(1186)] = 54044, - [SMALL_STATE(1187)] = 54057, - [SMALL_STATE(1188)] = 54068, - [SMALL_STATE(1189)] = 54081, - [SMALL_STATE(1190)] = 54094, - [SMALL_STATE(1191)] = 54107, - [SMALL_STATE(1192)] = 54120, - [SMALL_STATE(1193)] = 54133, - [SMALL_STATE(1194)] = 54146, - [SMALL_STATE(1195)] = 54155, - [SMALL_STATE(1196)] = 54164, - [SMALL_STATE(1197)] = 54177, - [SMALL_STATE(1198)] = 54186, - [SMALL_STATE(1199)] = 54195, - [SMALL_STATE(1200)] = 54208, - [SMALL_STATE(1201)] = 54221, - [SMALL_STATE(1202)] = 54234, - [SMALL_STATE(1203)] = 54247, - [SMALL_STATE(1204)] = 54260, - [SMALL_STATE(1205)] = 54273, - [SMALL_STATE(1206)] = 54286, - [SMALL_STATE(1207)] = 54299, - [SMALL_STATE(1208)] = 54312, - [SMALL_STATE(1209)] = 54325, - [SMALL_STATE(1210)] = 54338, - [SMALL_STATE(1211)] = 54351, - [SMALL_STATE(1212)] = 54364, - [SMALL_STATE(1213)] = 54377, - [SMALL_STATE(1214)] = 54390, - [SMALL_STATE(1215)] = 54403, - [SMALL_STATE(1216)] = 54416, - [SMALL_STATE(1217)] = 54429, - [SMALL_STATE(1218)] = 54442, - [SMALL_STATE(1219)] = 54455, - [SMALL_STATE(1220)] = 54468, - [SMALL_STATE(1221)] = 54481, - [SMALL_STATE(1222)] = 54492, - [SMALL_STATE(1223)] = 54505, - [SMALL_STATE(1224)] = 54518, - [SMALL_STATE(1225)] = 54531, - [SMALL_STATE(1226)] = 54544, - [SMALL_STATE(1227)] = 54557, - [SMALL_STATE(1228)] = 54568, - [SMALL_STATE(1229)] = 54581, - [SMALL_STATE(1230)] = 54594, - [SMALL_STATE(1231)] = 54607, - [SMALL_STATE(1232)] = 54620, - [SMALL_STATE(1233)] = 54633, - [SMALL_STATE(1234)] = 54646, - [SMALL_STATE(1235)] = 54659, - [SMALL_STATE(1236)] = 54672, - [SMALL_STATE(1237)] = 54685, - [SMALL_STATE(1238)] = 54696, - [SMALL_STATE(1239)] = 54709, - [SMALL_STATE(1240)] = 54720, - [SMALL_STATE(1241)] = 54733, - [SMALL_STATE(1242)] = 54746, - [SMALL_STATE(1243)] = 54759, - [SMALL_STATE(1244)] = 54768, - [SMALL_STATE(1245)] = 54781, - [SMALL_STATE(1246)] = 54792, - [SMALL_STATE(1247)] = 54805, - [SMALL_STATE(1248)] = 54818, - [SMALL_STATE(1249)] = 54831, - [SMALL_STATE(1250)] = 54840, - [SMALL_STATE(1251)] = 54851, - [SMALL_STATE(1252)] = 54864, - [SMALL_STATE(1253)] = 54877, - [SMALL_STATE(1254)] = 54888, - [SMALL_STATE(1255)] = 54901, - [SMALL_STATE(1256)] = 54914, - [SMALL_STATE(1257)] = 54927, - [SMALL_STATE(1258)] = 54940, - [SMALL_STATE(1259)] = 54953, - [SMALL_STATE(1260)] = 54962, - [SMALL_STATE(1261)] = 54975, - [SMALL_STATE(1262)] = 54988, - [SMALL_STATE(1263)] = 55001, - [SMALL_STATE(1264)] = 55014, - [SMALL_STATE(1265)] = 55025, - [SMALL_STATE(1266)] = 55034, - [SMALL_STATE(1267)] = 55047, - [SMALL_STATE(1268)] = 55060, - [SMALL_STATE(1269)] = 55069, - [SMALL_STATE(1270)] = 55082, - [SMALL_STATE(1271)] = 55095, - [SMALL_STATE(1272)] = 55104, - [SMALL_STATE(1273)] = 55117, - [SMALL_STATE(1274)] = 55130, - [SMALL_STATE(1275)] = 55143, - [SMALL_STATE(1276)] = 55156, - [SMALL_STATE(1277)] = 55169, - [SMALL_STATE(1278)] = 55182, - [SMALL_STATE(1279)] = 55195, - [SMALL_STATE(1280)] = 55208, - [SMALL_STATE(1281)] = 55221, - [SMALL_STATE(1282)] = 55234, - [SMALL_STATE(1283)] = 55247, - [SMALL_STATE(1284)] = 55260, - [SMALL_STATE(1285)] = 55273, - [SMALL_STATE(1286)] = 55286, - [SMALL_STATE(1287)] = 55299, - [SMALL_STATE(1288)] = 55312, - [SMALL_STATE(1289)] = 55325, - [SMALL_STATE(1290)] = 55338, - [SMALL_STATE(1291)] = 55351, - [SMALL_STATE(1292)] = 55362, - [SMALL_STATE(1293)] = 55375, - [SMALL_STATE(1294)] = 55388, - [SMALL_STATE(1295)] = 55399, - [SMALL_STATE(1296)] = 55412, - [SMALL_STATE(1297)] = 55425, - [SMALL_STATE(1298)] = 55438, - [SMALL_STATE(1299)] = 55451, - [SMALL_STATE(1300)] = 55460, - [SMALL_STATE(1301)] = 55473, - [SMALL_STATE(1302)] = 55486, - [SMALL_STATE(1303)] = 55495, - [SMALL_STATE(1304)] = 55508, - [SMALL_STATE(1305)] = 55521, - [SMALL_STATE(1306)] = 55530, - [SMALL_STATE(1307)] = 55543, - [SMALL_STATE(1308)] = 55556, - [SMALL_STATE(1309)] = 55569, - [SMALL_STATE(1310)] = 55582, - [SMALL_STATE(1311)] = 55595, - [SMALL_STATE(1312)] = 55608, - [SMALL_STATE(1313)] = 55617, - [SMALL_STATE(1314)] = 55625, - [SMALL_STATE(1315)] = 55633, - [SMALL_STATE(1316)] = 55643, - [SMALL_STATE(1317)] = 55653, - [SMALL_STATE(1318)] = 55661, - [SMALL_STATE(1319)] = 55669, - [SMALL_STATE(1320)] = 55679, - [SMALL_STATE(1321)] = 55689, - [SMALL_STATE(1322)] = 55699, - [SMALL_STATE(1323)] = 55707, - [SMALL_STATE(1324)] = 55715, - [SMALL_STATE(1325)] = 55723, - [SMALL_STATE(1326)] = 55731, - [SMALL_STATE(1327)] = 55739, - [SMALL_STATE(1328)] = 55749, - [SMALL_STATE(1329)] = 55757, - [SMALL_STATE(1330)] = 55767, - [SMALL_STATE(1331)] = 55777, - [SMALL_STATE(1332)] = 55785, - [SMALL_STATE(1333)] = 55795, - [SMALL_STATE(1334)] = 55803, - [SMALL_STATE(1335)] = 55811, - [SMALL_STATE(1336)] = 55819, - [SMALL_STATE(1337)] = 55827, - [SMALL_STATE(1338)] = 55837, - [SMALL_STATE(1339)] = 55845, - [SMALL_STATE(1340)] = 55853, - [SMALL_STATE(1341)] = 55861, - [SMALL_STATE(1342)] = 55869, - [SMALL_STATE(1343)] = 55879, - [SMALL_STATE(1344)] = 55889, - [SMALL_STATE(1345)] = 55897, - [SMALL_STATE(1346)] = 55907, - [SMALL_STATE(1347)] = 55915, - [SMALL_STATE(1348)] = 55923, - [SMALL_STATE(1349)] = 55931, - [SMALL_STATE(1350)] = 55939, - [SMALL_STATE(1351)] = 55949, - [SMALL_STATE(1352)] = 55959, - [SMALL_STATE(1353)] = 55969, - [SMALL_STATE(1354)] = 55977, - [SMALL_STATE(1355)] = 55987, - [SMALL_STATE(1356)] = 55995, - [SMALL_STATE(1357)] = 56003, - [SMALL_STATE(1358)] = 56011, - [SMALL_STATE(1359)] = 56021, - [SMALL_STATE(1360)] = 56029, - [SMALL_STATE(1361)] = 56039, - [SMALL_STATE(1362)] = 56047, - [SMALL_STATE(1363)] = 56055, - [SMALL_STATE(1364)] = 56065, - [SMALL_STATE(1365)] = 56075, - [SMALL_STATE(1366)] = 56083, - [SMALL_STATE(1367)] = 56091, - [SMALL_STATE(1368)] = 56101, - [SMALL_STATE(1369)] = 56109, - [SMALL_STATE(1370)] = 56117, - [SMALL_STATE(1371)] = 56125, - [SMALL_STATE(1372)] = 56133, - [SMALL_STATE(1373)] = 56141, - [SMALL_STATE(1374)] = 56149, - [SMALL_STATE(1375)] = 56157, - [SMALL_STATE(1376)] = 56165, - [SMALL_STATE(1377)] = 56173, - [SMALL_STATE(1378)] = 56181, - [SMALL_STATE(1379)] = 56189, - [SMALL_STATE(1380)] = 56197, - [SMALL_STATE(1381)] = 56207, - [SMALL_STATE(1382)] = 56217, - [SMALL_STATE(1383)] = 56227, - [SMALL_STATE(1384)] = 56237, - [SMALL_STATE(1385)] = 56244, - [SMALL_STATE(1386)] = 56251, - [SMALL_STATE(1387)] = 56258, - [SMALL_STATE(1388)] = 56265, - [SMALL_STATE(1389)] = 56272, - [SMALL_STATE(1390)] = 56279, - [SMALL_STATE(1391)] = 56286, - [SMALL_STATE(1392)] = 56293, - [SMALL_STATE(1393)] = 56300, - [SMALL_STATE(1394)] = 56307, - [SMALL_STATE(1395)] = 56314, - [SMALL_STATE(1396)] = 56321, - [SMALL_STATE(1397)] = 56328, - [SMALL_STATE(1398)] = 56335, - [SMALL_STATE(1399)] = 56342, - [SMALL_STATE(1400)] = 56349, - [SMALL_STATE(1401)] = 56356, - [SMALL_STATE(1402)] = 56363, - [SMALL_STATE(1403)] = 56370, - [SMALL_STATE(1404)] = 56377, - [SMALL_STATE(1405)] = 56384, - [SMALL_STATE(1406)] = 56391, - [SMALL_STATE(1407)] = 56398, - [SMALL_STATE(1408)] = 56405, - [SMALL_STATE(1409)] = 56412, - [SMALL_STATE(1410)] = 56419, - [SMALL_STATE(1411)] = 56426, - [SMALL_STATE(1412)] = 56433, - [SMALL_STATE(1413)] = 56440, - [SMALL_STATE(1414)] = 56447, - [SMALL_STATE(1415)] = 56454, - [SMALL_STATE(1416)] = 56461, - [SMALL_STATE(1417)] = 56468, - [SMALL_STATE(1418)] = 56475, - [SMALL_STATE(1419)] = 56482, - [SMALL_STATE(1420)] = 56489, - [SMALL_STATE(1421)] = 56496, - [SMALL_STATE(1422)] = 56503, - [SMALL_STATE(1423)] = 56510, - [SMALL_STATE(1424)] = 56517, - [SMALL_STATE(1425)] = 56524, - [SMALL_STATE(1426)] = 56531, - [SMALL_STATE(1427)] = 56538, - [SMALL_STATE(1428)] = 56545, - [SMALL_STATE(1429)] = 56552, - [SMALL_STATE(1430)] = 56559, - [SMALL_STATE(1431)] = 56566, - [SMALL_STATE(1432)] = 56573, - [SMALL_STATE(1433)] = 56580, - [SMALL_STATE(1434)] = 56587, - [SMALL_STATE(1435)] = 56594, - [SMALL_STATE(1436)] = 56601, - [SMALL_STATE(1437)] = 56608, - [SMALL_STATE(1438)] = 56615, - [SMALL_STATE(1439)] = 56622, - [SMALL_STATE(1440)] = 56629, - [SMALL_STATE(1441)] = 56636, - [SMALL_STATE(1442)] = 56643, - [SMALL_STATE(1443)] = 56650, - [SMALL_STATE(1444)] = 56657, - [SMALL_STATE(1445)] = 56664, - [SMALL_STATE(1446)] = 56671, - [SMALL_STATE(1447)] = 56678, - [SMALL_STATE(1448)] = 56685, - [SMALL_STATE(1449)] = 56692, - [SMALL_STATE(1450)] = 56699, - [SMALL_STATE(1451)] = 56706, - [SMALL_STATE(1452)] = 56713, - [SMALL_STATE(1453)] = 56720, - [SMALL_STATE(1454)] = 56727, - [SMALL_STATE(1455)] = 56734, - [SMALL_STATE(1456)] = 56741, - [SMALL_STATE(1457)] = 56748, - [SMALL_STATE(1458)] = 56755, - [SMALL_STATE(1459)] = 56762, - [SMALL_STATE(1460)] = 56769, - [SMALL_STATE(1461)] = 56776, - [SMALL_STATE(1462)] = 56783, - [SMALL_STATE(1463)] = 56790, - [SMALL_STATE(1464)] = 56797, - [SMALL_STATE(1465)] = 56804, - [SMALL_STATE(1466)] = 56811, - [SMALL_STATE(1467)] = 56818, - [SMALL_STATE(1468)] = 56825, - [SMALL_STATE(1469)] = 56832, - [SMALL_STATE(1470)] = 56839, - [SMALL_STATE(1471)] = 56846, - [SMALL_STATE(1472)] = 56853, - [SMALL_STATE(1473)] = 56860, - [SMALL_STATE(1474)] = 56867, - [SMALL_STATE(1475)] = 56874, - [SMALL_STATE(1476)] = 56881, - [SMALL_STATE(1477)] = 56888, - [SMALL_STATE(1478)] = 56895, - [SMALL_STATE(1479)] = 56902, - [SMALL_STATE(1480)] = 56909, - [SMALL_STATE(1481)] = 56916, - [SMALL_STATE(1482)] = 56923, - [SMALL_STATE(1483)] = 56930, - [SMALL_STATE(1484)] = 56937, - [SMALL_STATE(1485)] = 56944, - [SMALL_STATE(1486)] = 56951, - [SMALL_STATE(1487)] = 56958, - [SMALL_STATE(1488)] = 56965, - [SMALL_STATE(1489)] = 56972, - [SMALL_STATE(1490)] = 56979, - [SMALL_STATE(1491)] = 56986, - [SMALL_STATE(1492)] = 56993, - [SMALL_STATE(1493)] = 57000, - [SMALL_STATE(1494)] = 57007, - [SMALL_STATE(1495)] = 57014, - [SMALL_STATE(1496)] = 57021, - [SMALL_STATE(1497)] = 57028, - [SMALL_STATE(1498)] = 57035, - [SMALL_STATE(1499)] = 57042, - [SMALL_STATE(1500)] = 57049, - [SMALL_STATE(1501)] = 57056, - [SMALL_STATE(1502)] = 57063, - [SMALL_STATE(1503)] = 57070, - [SMALL_STATE(1504)] = 57077, - [SMALL_STATE(1505)] = 57084, + [SMALL_STATE(215)] = 6893, + [SMALL_STATE(216)] = 6992, + [SMALL_STATE(217)] = 7091, + [SMALL_STATE(218)] = 7178, + [SMALL_STATE(219)] = 7277, + [SMALL_STATE(220)] = 7376, + [SMALL_STATE(221)] = 7437, + [SMALL_STATE(222)] = 7536, + [SMALL_STATE(223)] = 7635, + [SMALL_STATE(224)] = 7707, + [SMALL_STATE(225)] = 7779, + [SMALL_STATE(226)] = 7851, + [SMALL_STATE(227)] = 7947, + [SMALL_STATE(228)] = 8019, + [SMALL_STATE(229)] = 8117, + [SMALL_STATE(230)] = 8213, + [SMALL_STATE(231)] = 8311, + [SMALL_STATE(232)] = 8383, + [SMALL_STATE(233)] = 8455, + [SMALL_STATE(234)] = 8527, + [SMALL_STATE(235)] = 8625, + [SMALL_STATE(236)] = 8723, + [SMALL_STATE(237)] = 8795, + [SMALL_STATE(238)] = 8893, + [SMALL_STATE(239)] = 8988, + [SMALL_STATE(240)] = 9061, + [SMALL_STATE(241)] = 9156, + [SMALL_STATE(242)] = 9251, + [SMALL_STATE(243)] = 9346, + [SMALL_STATE(244)] = 9441, + [SMALL_STATE(245)] = 9536, + [SMALL_STATE(246)] = 9631, + [SMALL_STATE(247)] = 9704, + [SMALL_STATE(248)] = 9799, + [SMALL_STATE(249)] = 9894, + [SMALL_STATE(250)] = 9989, + [SMALL_STATE(251)] = 10084, + [SMALL_STATE(252)] = 10178, + [SMALL_STATE(253)] = 10246, + [SMALL_STATE(254)] = 10340, + [SMALL_STATE(255)] = 10434, + [SMALL_STATE(256)] = 10528, + [SMALL_STATE(257)] = 10586, + [SMALL_STATE(258)] = 10644, + [SMALL_STATE(259)] = 10706, + [SMALL_STATE(260)] = 10800, + [SMALL_STATE(261)] = 10862, + [SMALL_STATE(262)] = 10920, + [SMALL_STATE(263)] = 10978, + [SMALL_STATE(264)] = 11036, + [SMALL_STATE(265)] = 11094, + [SMALL_STATE(266)] = 11152, + [SMALL_STATE(267)] = 11220, + [SMALL_STATE(268)] = 11314, + [SMALL_STATE(269)] = 11372, + [SMALL_STATE(270)] = 11430, + [SMALL_STATE(271)] = 11492, + [SMALL_STATE(272)] = 11584, + [SMALL_STATE(273)] = 11646, + [SMALL_STATE(274)] = 11738, + [SMALL_STATE(275)] = 11830, + [SMALL_STATE(276)] = 11900, + [SMALL_STATE(277)] = 11994, + [SMALL_STATE(278)] = 12062, + [SMALL_STATE(279)] = 12130, + [SMALL_STATE(280)] = 12198, + [SMALL_STATE(281)] = 12266, + [SMALL_STATE(282)] = 12334, + [SMALL_STATE(283)] = 12392, + [SMALL_STATE(284)] = 12486, + [SMALL_STATE(285)] = 12580, + [SMALL_STATE(286)] = 12674, + [SMALL_STATE(287)] = 12742, + [SMALL_STATE(288)] = 12836, + [SMALL_STATE(289)] = 12927, + [SMALL_STATE(290)] = 13016, + [SMALL_STATE(291)] = 13105, + [SMALL_STATE(292)] = 13194, + [SMALL_STATE(293)] = 13283, + [SMALL_STATE(294)] = 13372, + [SMALL_STATE(295)] = 13463, + [SMALL_STATE(296)] = 13552, + [SMALL_STATE(297)] = 13641, + [SMALL_STATE(298)] = 13732, + [SMALL_STATE(299)] = 13823, + [SMALL_STATE(300)] = 13914, + [SMALL_STATE(301)] = 14005, + [SMALL_STATE(302)] = 14096, + [SMALL_STATE(303)] = 14187, + [SMALL_STATE(304)] = 14250, + [SMALL_STATE(305)] = 14313, + [SMALL_STATE(306)] = 14402, + [SMALL_STATE(307)] = 14491, + [SMALL_STATE(308)] = 14580, + [SMALL_STATE(309)] = 14669, + [SMALL_STATE(310)] = 14736, + [SMALL_STATE(311)] = 14827, + [SMALL_STATE(312)] = 14916, + [SMALL_STATE(313)] = 15005, + [SMALL_STATE(314)] = 15065, + [SMALL_STATE(315)] = 15153, + [SMALL_STATE(316)] = 15209, + [SMALL_STATE(317)] = 15265, + [SMALL_STATE(318)] = 15321, + [SMALL_STATE(319)] = 15377, + [SMALL_STATE(320)] = 15433, + [SMALL_STATE(321)] = 15497, + [SMALL_STATE(322)] = 15553, + [SMALL_STATE(323)] = 15609, + [SMALL_STATE(324)] = 15665, + [SMALL_STATE(325)] = 15721, + [SMALL_STATE(326)] = 15785, + [SMALL_STATE(327)] = 15841, + [SMALL_STATE(328)] = 15897, + [SMALL_STATE(329)] = 15957, + [SMALL_STATE(330)] = 16013, + [SMALL_STATE(331)] = 16069, + [SMALL_STATE(332)] = 16125, + [SMALL_STATE(333)] = 16181, + [SMALL_STATE(334)] = 16237, + [SMALL_STATE(335)] = 16301, + [SMALL_STATE(336)] = 16361, + [SMALL_STATE(337)] = 16417, + [SMALL_STATE(338)] = 16477, + [SMALL_STATE(339)] = 16533, + [SMALL_STATE(340)] = 16589, + [SMALL_STATE(341)] = 16677, + [SMALL_STATE(342)] = 16741, + [SMALL_STATE(343)] = 16797, + [SMALL_STATE(344)] = 16853, + [SMALL_STATE(345)] = 16909, + [SMALL_STATE(346)] = 16997, + [SMALL_STATE(347)] = 17056, + [SMALL_STATE(348)] = 17143, + [SMALL_STATE(349)] = 17202, + [SMALL_STATE(350)] = 17287, + [SMALL_STATE(351)] = 17372, + [SMALL_STATE(352)] = 17457, + [SMALL_STATE(353)] = 17516, + [SMALL_STATE(354)] = 17601, + [SMALL_STATE(355)] = 17662, + [SMALL_STATE(356)] = 17747, + [SMALL_STATE(357)] = 17832, + [SMALL_STATE(358)] = 17917, + [SMALL_STATE(359)] = 18002, + [SMALL_STATE(360)] = 18087, + [SMALL_STATE(361)] = 18172, + [SMALL_STATE(362)] = 18257, + [SMALL_STATE(363)] = 18316, + [SMALL_STATE(364)] = 18401, + [SMALL_STATE(365)] = 18486, + [SMALL_STATE(366)] = 18571, + [SMALL_STATE(367)] = 18656, + [SMALL_STATE(368)] = 18741, + [SMALL_STATE(369)] = 18826, + [SMALL_STATE(370)] = 18885, + [SMALL_STATE(371)] = 18970, + [SMALL_STATE(372)] = 19055, + [SMALL_STATE(373)] = 19140, + [SMALL_STATE(374)] = 19225, + [SMALL_STATE(375)] = 19310, + [SMALL_STATE(376)] = 19395, + [SMALL_STATE(377)] = 19480, + [SMALL_STATE(378)] = 19565, + [SMALL_STATE(379)] = 19650, + [SMALL_STATE(380)] = 19735, + [SMALL_STATE(381)] = 19794, + [SMALL_STATE(382)] = 19879, + [SMALL_STATE(383)] = 19964, + [SMALL_STATE(384)] = 20049, + [SMALL_STATE(385)] = 20134, + [SMALL_STATE(386)] = 20219, + [SMALL_STATE(387)] = 20278, + [SMALL_STATE(388)] = 20363, + [SMALL_STATE(389)] = 20448, + [SMALL_STATE(390)] = 20533, + [SMALL_STATE(391)] = 20592, + [SMALL_STATE(392)] = 20647, + [SMALL_STATE(393)] = 20708, + [SMALL_STATE(394)] = 20793, + [SMALL_STATE(395)] = 20878, + [SMALL_STATE(396)] = 20963, + [SMALL_STATE(397)] = 21048, + [SMALL_STATE(398)] = 21107, + [SMALL_STATE(399)] = 21162, + [SMALL_STATE(400)] = 21247, + [SMALL_STATE(401)] = 21306, + [SMALL_STATE(402)] = 21391, + [SMALL_STATE(403)] = 21476, + [SMALL_STATE(404)] = 21561, + [SMALL_STATE(405)] = 21646, + [SMALL_STATE(406)] = 21731, + [SMALL_STATE(407)] = 21816, + [SMALL_STATE(408)] = 21901, + [SMALL_STATE(409)] = 21986, + [SMALL_STATE(410)] = 22071, + [SMALL_STATE(411)] = 22156, + [SMALL_STATE(412)] = 22241, + [SMALL_STATE(413)] = 22326, + [SMALL_STATE(414)] = 22411, + [SMALL_STATE(415)] = 22472, + [SMALL_STATE(416)] = 22557, + [SMALL_STATE(417)] = 22642, + [SMALL_STATE(418)] = 22701, + [SMALL_STATE(419)] = 22760, + [SMALL_STATE(420)] = 22819, + [SMALL_STATE(421)] = 22878, + [SMALL_STATE(422)] = 22963, + [SMALL_STATE(423)] = 23018, + [SMALL_STATE(424)] = 23103, + [SMALL_STATE(425)] = 23158, + [SMALL_STATE(426)] = 23213, + [SMALL_STATE(427)] = 23298, + [SMALL_STATE(428)] = 23359, + [SMALL_STATE(429)] = 23414, + [SMALL_STATE(430)] = 23499, + [SMALL_STATE(431)] = 23584, + [SMALL_STATE(432)] = 23669, + [SMALL_STATE(433)] = 23754, + [SMALL_STATE(434)] = 23839, + [SMALL_STATE(435)] = 23924, + [SMALL_STATE(436)] = 24009, + [SMALL_STATE(437)] = 24068, + [SMALL_STATE(438)] = 24153, + [SMALL_STATE(439)] = 24238, + [SMALL_STATE(440)] = 24323, + [SMALL_STATE(441)] = 24408, + [SMALL_STATE(442)] = 24467, + [SMALL_STATE(443)] = 24552, + [SMALL_STATE(444)] = 24637, + [SMALL_STATE(445)] = 24722, + [SMALL_STATE(446)] = 24807, + [SMALL_STATE(447)] = 24861, + [SMALL_STATE(448)] = 24915, + [SMALL_STATE(449)] = 24969, + [SMALL_STATE(450)] = 25023, + [SMALL_STATE(451)] = 25077, + [SMALL_STATE(452)] = 25131, + [SMALL_STATE(453)] = 25185, + [SMALL_STATE(454)] = 25239, + [SMALL_STATE(455)] = 25293, + [SMALL_STATE(456)] = 25347, + [SMALL_STATE(457)] = 25401, + [SMALL_STATE(458)] = 25455, + [SMALL_STATE(459)] = 25508, + [SMALL_STATE(460)] = 25561, + [SMALL_STATE(461)] = 25614, + [SMALL_STATE(462)] = 25667, + [SMALL_STATE(463)] = 25720, + [SMALL_STATE(464)] = 25773, + [SMALL_STATE(465)] = 25826, + [SMALL_STATE(466)] = 25879, + [SMALL_STATE(467)] = 25932, + [SMALL_STATE(468)] = 25985, + [SMALL_STATE(469)] = 26038, + [SMALL_STATE(470)] = 26091, + [SMALL_STATE(471)] = 26144, + [SMALL_STATE(472)] = 26197, + [SMALL_STATE(473)] = 26250, + [SMALL_STATE(474)] = 26303, + [SMALL_STATE(475)] = 26356, + [SMALL_STATE(476)] = 26409, + [SMALL_STATE(477)] = 26462, + [SMALL_STATE(478)] = 26515, + [SMALL_STATE(479)] = 26568, + [SMALL_STATE(480)] = 26621, + [SMALL_STATE(481)] = 26674, + [SMALL_STATE(482)] = 26727, + [SMALL_STATE(483)] = 26780, + [SMALL_STATE(484)] = 26833, + [SMALL_STATE(485)] = 26886, + [SMALL_STATE(486)] = 26939, + [SMALL_STATE(487)] = 26992, + [SMALL_STATE(488)] = 27045, + [SMALL_STATE(489)] = 27098, + [SMALL_STATE(490)] = 27151, + [SMALL_STATE(491)] = 27204, + [SMALL_STATE(492)] = 27257, + [SMALL_STATE(493)] = 27310, + [SMALL_STATE(494)] = 27363, + [SMALL_STATE(495)] = 27416, + [SMALL_STATE(496)] = 27469, + [SMALL_STATE(497)] = 27522, + [SMALL_STATE(498)] = 27575, + [SMALL_STATE(499)] = 27628, + [SMALL_STATE(500)] = 27681, + [SMALL_STATE(501)] = 27734, + [SMALL_STATE(502)] = 27787, + [SMALL_STATE(503)] = 27840, + [SMALL_STATE(504)] = 27925, + [SMALL_STATE(505)] = 27978, + [SMALL_STATE(506)] = 28031, + [SMALL_STATE(507)] = 28084, + [SMALL_STATE(508)] = 28137, + [SMALL_STATE(509)] = 28190, + [SMALL_STATE(510)] = 28243, + [SMALL_STATE(511)] = 28296, + [SMALL_STATE(512)] = 28349, + [SMALL_STATE(513)] = 28402, + [SMALL_STATE(514)] = 28455, + [SMALL_STATE(515)] = 28508, + [SMALL_STATE(516)] = 28561, + [SMALL_STATE(517)] = 28614, + [SMALL_STATE(518)] = 28667, + [SMALL_STATE(519)] = 28754, + [SMALL_STATE(520)] = 28807, + [SMALL_STATE(521)] = 28860, + [SMALL_STATE(522)] = 28913, + [SMALL_STATE(523)] = 28966, + [SMALL_STATE(524)] = 29019, + [SMALL_STATE(525)] = 29072, + [SMALL_STATE(526)] = 29125, + [SMALL_STATE(527)] = 29178, + [SMALL_STATE(528)] = 29231, + [SMALL_STATE(529)] = 29284, + [SMALL_STATE(530)] = 29337, + [SMALL_STATE(531)] = 29390, + [SMALL_STATE(532)] = 29443, + [SMALL_STATE(533)] = 29496, + [SMALL_STATE(534)] = 29549, + [SMALL_STATE(535)] = 29602, + [SMALL_STATE(536)] = 29655, + [SMALL_STATE(537)] = 29708, + [SMALL_STATE(538)] = 29761, + [SMALL_STATE(539)] = 29814, + [SMALL_STATE(540)] = 29867, + [SMALL_STATE(541)] = 29920, + [SMALL_STATE(542)] = 29973, + [SMALL_STATE(543)] = 30026, + [SMALL_STATE(544)] = 30111, + [SMALL_STATE(545)] = 30164, + [SMALL_STATE(546)] = 30217, + [SMALL_STATE(547)] = 30270, + [SMALL_STATE(548)] = 30323, + [SMALL_STATE(549)] = 30376, + [SMALL_STATE(550)] = 30429, + [SMALL_STATE(551)] = 30482, + [SMALL_STATE(552)] = 30535, + [SMALL_STATE(553)] = 30588, + [SMALL_STATE(554)] = 30641, + [SMALL_STATE(555)] = 30694, + [SMALL_STATE(556)] = 30747, + [SMALL_STATE(557)] = 30800, + [SMALL_STATE(558)] = 30853, + [SMALL_STATE(559)] = 30906, + [SMALL_STATE(560)] = 30990, + [SMALL_STATE(561)] = 31074, + [SMALL_STATE(562)] = 31158, + [SMALL_STATE(563)] = 31242, + [SMALL_STATE(564)] = 31326, + [SMALL_STATE(565)] = 31410, + [SMALL_STATE(566)] = 31465, + [SMALL_STATE(567)] = 31546, + [SMALL_STATE(568)] = 31601, + [SMALL_STATE(569)] = 31682, + [SMALL_STATE(570)] = 31737, + [SMALL_STATE(571)] = 31786, + [SMALL_STATE(572)] = 31861, + [SMALL_STATE(573)] = 31910, + [SMALL_STATE(574)] = 31958, + [SMALL_STATE(575)] = 32006, + [SMALL_STATE(576)] = 32054, + [SMALL_STATE(577)] = 32136, + [SMALL_STATE(578)] = 32184, + [SMALL_STATE(579)] = 32232, + [SMALL_STATE(580)] = 32280, + [SMALL_STATE(581)] = 32328, + [SMALL_STATE(582)] = 32376, + [SMALL_STATE(583)] = 32424, + [SMALL_STATE(584)] = 32472, + [SMALL_STATE(585)] = 32520, + [SMALL_STATE(586)] = 32568, + [SMALL_STATE(587)] = 32616, + [SMALL_STATE(588)] = 32664, + [SMALL_STATE(589)] = 32712, + [SMALL_STATE(590)] = 32794, + [SMALL_STATE(591)] = 32842, + [SMALL_STATE(592)] = 32890, + [SMALL_STATE(593)] = 32938, + [SMALL_STATE(594)] = 32986, + [SMALL_STATE(595)] = 33034, + [SMALL_STATE(596)] = 33082, + [SMALL_STATE(597)] = 33130, + [SMALL_STATE(598)] = 33178, + [SMALL_STATE(599)] = 33226, + [SMALL_STATE(600)] = 33274, + [SMALL_STATE(601)] = 33322, + [SMALL_STATE(602)] = 33370, + [SMALL_STATE(603)] = 33418, + [SMALL_STATE(604)] = 33466, + [SMALL_STATE(605)] = 33514, + [SMALL_STATE(606)] = 33562, + [SMALL_STATE(607)] = 33629, + [SMALL_STATE(608)] = 33690, + [SMALL_STATE(609)] = 33753, + [SMALL_STATE(610)] = 33814, + [SMALL_STATE(611)] = 33883, + [SMALL_STATE(612)] = 33940, + [SMALL_STATE(613)] = 34009, + [SMALL_STATE(614)] = 34076, + [SMALL_STATE(615)] = 34145, + [SMALL_STATE(616)] = 34214, + [SMALL_STATE(617)] = 34283, + [SMALL_STATE(618)] = 34348, + [SMALL_STATE(619)] = 34405, + [SMALL_STATE(620)] = 34462, + [SMALL_STATE(621)] = 34533, + [SMALL_STATE(622)] = 34604, + [SMALL_STATE(623)] = 34669, + [SMALL_STATE(624)] = 34740, + [SMALL_STATE(625)] = 34811, + [SMALL_STATE(626)] = 34868, + [SMALL_STATE(627)] = 34925, + [SMALL_STATE(628)] = 34996, + [SMALL_STATE(629)] = 35065, + [SMALL_STATE(630)] = 35122, + [SMALL_STATE(631)] = 35185, + [SMALL_STATE(632)] = 35242, + [SMALL_STATE(633)] = 35299, + [SMALL_STATE(634)] = 35370, + [SMALL_STATE(635)] = 35436, + [SMALL_STATE(636)] = 35502, + [SMALL_STATE(637)] = 35568, + [SMALL_STATE(638)] = 35634, + [SMALL_STATE(639)] = 35700, + [SMALL_STATE(640)] = 35766, + [SMALL_STATE(641)] = 35836, + [SMALL_STATE(642)] = 35884, + [SMALL_STATE(643)] = 35950, + [SMALL_STATE(644)] = 36016, + [SMALL_STATE(645)] = 36082, + [SMALL_STATE(646)] = 36148, + [SMALL_STATE(647)] = 36214, + [SMALL_STATE(648)] = 36280, + [SMALL_STATE(649)] = 36346, + [SMALL_STATE(650)] = 36412, + [SMALL_STATE(651)] = 36478, + [SMALL_STATE(652)] = 36524, + [SMALL_STATE(653)] = 36590, + [SMALL_STATE(654)] = 36636, + [SMALL_STATE(655)] = 36702, + [SMALL_STATE(656)] = 36768, + [SMALL_STATE(657)] = 36834, + [SMALL_STATE(658)] = 36900, + [SMALL_STATE(659)] = 36950, + [SMALL_STATE(660)] = 37016, + [SMALL_STATE(661)] = 37082, + [SMALL_STATE(662)] = 37148, + [SMALL_STATE(663)] = 37214, + [SMALL_STATE(664)] = 37280, + [SMALL_STATE(665)] = 37346, + [SMALL_STATE(666)] = 37412, + [SMALL_STATE(667)] = 37478, + [SMALL_STATE(668)] = 37548, + [SMALL_STATE(669)] = 37614, + [SMALL_STATE(670)] = 37680, + [SMALL_STATE(671)] = 37746, + [SMALL_STATE(672)] = 37812, + [SMALL_STATE(673)] = 37878, + [SMALL_STATE(674)] = 37926, + [SMALL_STATE(675)] = 37992, + [SMALL_STATE(676)] = 38040, + [SMALL_STATE(677)] = 38106, + [SMALL_STATE(678)] = 38172, + [SMALL_STATE(679)] = 38238, + [SMALL_STATE(680)] = 38304, + [SMALL_STATE(681)] = 38370, + [SMALL_STATE(682)] = 38436, + [SMALL_STATE(683)] = 38502, + [SMALL_STATE(684)] = 38552, + [SMALL_STATE(685)] = 38618, + [SMALL_STATE(686)] = 38666, + [SMALL_STATE(687)] = 38732, + [SMALL_STATE(688)] = 38798, + [SMALL_STATE(689)] = 38843, + [SMALL_STATE(690)] = 38888, + [SMALL_STATE(691)] = 38937, + [SMALL_STATE(692)] = 38986, + [SMALL_STATE(693)] = 39065, + [SMALL_STATE(694)] = 39114, + [SMALL_STATE(695)] = 39182, + [SMALL_STATE(696)] = 39226, + [SMALL_STATE(697)] = 39270, + [SMALL_STATE(698)] = 39324, + [SMALL_STATE(699)] = 39384, + [SMALL_STATE(700)] = 39452, + [SMALL_STATE(701)] = 39518, + [SMALL_STATE(702)] = 39576, + [SMALL_STATE(703)] = 39630, + [SMALL_STATE(704)] = 39694, + [SMALL_STATE(705)] = 39756, + [SMALL_STATE(706)] = 39832, + [SMALL_STATE(707)] = 39886, + [SMALL_STATE(708)] = 39954, + [SMALL_STATE(709)] = 40002, + [SMALL_STATE(710)] = 40056, + [SMALL_STATE(711)] = 40117, + [SMALL_STATE(712)] = 40184, + [SMALL_STATE(713)] = 40229, + [SMALL_STATE(714)] = 40274, + [SMALL_STATE(715)] = 40319, + [SMALL_STATE(716)] = 40372, + [SMALL_STATE(717)] = 40415, + [SMALL_STATE(718)] = 40460, + [SMALL_STATE(719)] = 40513, + [SMALL_STATE(720)] = 40556, + [SMALL_STATE(721)] = 40603, + [SMALL_STATE(722)] = 40648, + [SMALL_STATE(723)] = 40695, + [SMALL_STATE(724)] = 40742, + [SMALL_STATE(725)] = 40787, + [SMALL_STATE(726)] = 40840, + [SMALL_STATE(727)] = 40899, + [SMALL_STATE(728)] = 40966, + [SMALL_STATE(729)] = 41031, + [SMALL_STATE(730)] = 41088, + [SMALL_STATE(731)] = 41141, + [SMALL_STATE(732)] = 41204, + [SMALL_STATE(733)] = 41251, + [SMALL_STATE(734)] = 41296, + [SMALL_STATE(735)] = 41341, + [SMALL_STATE(736)] = 41408, + [SMALL_STATE(737)] = 41450, + [SMALL_STATE(738)] = 41492, + [SMALL_STATE(739)] = 41534, + [SMALL_STATE(740)] = 41576, + [SMALL_STATE(741)] = 41618, + [SMALL_STATE(742)] = 41660, + [SMALL_STATE(743)] = 41702, + [SMALL_STATE(744)] = 41744, + [SMALL_STATE(745)] = 41786, + [SMALL_STATE(746)] = 41830, + [SMALL_STATE(747)] = 41874, + [SMALL_STATE(748)] = 41916, + [SMALL_STATE(749)] = 41958, + [SMALL_STATE(750)] = 42000, + [SMALL_STATE(751)] = 42042, + [SMALL_STATE(752)] = 42086, + [SMALL_STATE(753)] = 42128, + [SMALL_STATE(754)] = 42170, + [SMALL_STATE(755)] = 42212, + [SMALL_STATE(756)] = 42254, + [SMALL_STATE(757)] = 42296, + [SMALL_STATE(758)] = 42338, + [SMALL_STATE(759)] = 42380, + [SMALL_STATE(760)] = 42424, + [SMALL_STATE(761)] = 42466, + [SMALL_STATE(762)] = 42508, + [SMALL_STATE(763)] = 42550, + [SMALL_STATE(764)] = 42592, + [SMALL_STATE(765)] = 42634, + [SMALL_STATE(766)] = 42676, + [SMALL_STATE(767)] = 42718, + [SMALL_STATE(768)] = 42760, + [SMALL_STATE(769)] = 42802, + [SMALL_STATE(770)] = 42844, + [SMALL_STATE(771)] = 42886, + [SMALL_STATE(772)] = 42930, + [SMALL_STATE(773)] = 42972, + [SMALL_STATE(774)] = 43014, + [SMALL_STATE(775)] = 43055, + [SMALL_STATE(776)] = 43096, + [SMALL_STATE(777)] = 43137, + [SMALL_STATE(778)] = 43182, + [SMALL_STATE(779)] = 43223, + [SMALL_STATE(780)] = 43264, + [SMALL_STATE(781)] = 43305, + [SMALL_STATE(782)] = 43346, + [SMALL_STATE(783)] = 43387, + [SMALL_STATE(784)] = 43428, + [SMALL_STATE(785)] = 43469, + [SMALL_STATE(786)] = 43510, + [SMALL_STATE(787)] = 43555, + [SMALL_STATE(788)] = 43596, + [SMALL_STATE(789)] = 43637, + [SMALL_STATE(790)] = 43678, + [SMALL_STATE(791)] = 43719, + [SMALL_STATE(792)] = 43760, + [SMALL_STATE(793)] = 43801, + [SMALL_STATE(794)] = 43842, + [SMALL_STATE(795)] = 43883, + [SMALL_STATE(796)] = 43924, + [SMALL_STATE(797)] = 43965, + [SMALL_STATE(798)] = 44006, + [SMALL_STATE(799)] = 44047, + [SMALL_STATE(800)] = 44088, + [SMALL_STATE(801)] = 44129, + [SMALL_STATE(802)] = 44170, + [SMALL_STATE(803)] = 44211, + [SMALL_STATE(804)] = 44252, + [SMALL_STATE(805)] = 44293, + [SMALL_STATE(806)] = 44334, + [SMALL_STATE(807)] = 44375, + [SMALL_STATE(808)] = 44416, + [SMALL_STATE(809)] = 44457, + [SMALL_STATE(810)] = 44531, + [SMALL_STATE(811)] = 44605, + [SMALL_STATE(812)] = 44679, + [SMALL_STATE(813)] = 44753, + [SMALL_STATE(814)] = 44824, + [SMALL_STATE(815)] = 44897, + [SMALL_STATE(816)] = 44968, + [SMALL_STATE(817)] = 45039, + [SMALL_STATE(818)] = 45110, + [SMALL_STATE(819)] = 45181, + [SMALL_STATE(820)] = 45253, + [SMALL_STATE(821)] = 45325, + [SMALL_STATE(822)] = 45397, + [SMALL_STATE(823)] = 45465, + [SMALL_STATE(824)] = 45531, + [SMALL_STATE(825)] = 45594, + [SMALL_STATE(826)] = 45657, + [SMALL_STATE(827)] = 45712, + [SMALL_STATE(828)] = 45767, + [SMALL_STATE(829)] = 45807, + [SMALL_STATE(830)] = 45847, + [SMALL_STATE(831)] = 45887, + [SMALL_STATE(832)] = 45927, + [SMALL_STATE(833)] = 45957, + [SMALL_STATE(834)] = 45994, + [SMALL_STATE(835)] = 46019, + [SMALL_STATE(836)] = 46048, + [SMALL_STATE(837)] = 46073, + [SMALL_STATE(838)] = 46098, + [SMALL_STATE(839)] = 46123, + [SMALL_STATE(840)] = 46160, + [SMALL_STATE(841)] = 46189, + [SMALL_STATE(842)] = 46223, + [SMALL_STATE(843)] = 46251, + [SMALL_STATE(844)] = 46297, + [SMALL_STATE(845)] = 46331, + [SMALL_STATE(846)] = 46374, + [SMALL_STATE(847)] = 46417, + [SMALL_STATE(848)] = 46460, + [SMALL_STATE(849)] = 46503, + [SMALL_STATE(850)] = 46546, + [SMALL_STATE(851)] = 46577, + [SMALL_STATE(852)] = 46623, + [SMALL_STATE(853)] = 46669, + [SMALL_STATE(854)] = 46715, + [SMALL_STATE(855)] = 46755, + [SMALL_STATE(856)] = 46792, + [SMALL_STATE(857)] = 46829, + [SMALL_STATE(858)] = 46854, + [SMALL_STATE(859)] = 46891, + [SMALL_STATE(860)] = 46928, + [SMALL_STATE(861)] = 46950, + [SMALL_STATE(862)] = 46984, + [SMALL_STATE(863)] = 47006, + [SMALL_STATE(864)] = 47040, + [SMALL_STATE(865)] = 47077, + [SMALL_STATE(866)] = 47099, + [SMALL_STATE(867)] = 47120, + [SMALL_STATE(868)] = 47143, + [SMALL_STATE(869)] = 47168, + [SMALL_STATE(870)] = 47205, + [SMALL_STATE(871)] = 47224, + [SMALL_STATE(872)] = 47249, + [SMALL_STATE(873)] = 47272, + [SMALL_STATE(874)] = 47309, + [SMALL_STATE(875)] = 47346, + [SMALL_STATE(876)] = 47383, + [SMALL_STATE(877)] = 47408, + [SMALL_STATE(878)] = 47435, + [SMALL_STATE(879)] = 47456, + [SMALL_STATE(880)] = 47479, + [SMALL_STATE(881)] = 47500, + [SMALL_STATE(882)] = 47523, + [SMALL_STATE(883)] = 47546, + [SMALL_STATE(884)] = 47567, + [SMALL_STATE(885)] = 47584, + [SMALL_STATE(886)] = 47605, + [SMALL_STATE(887)] = 47628, + [SMALL_STATE(888)] = 47651, + [SMALL_STATE(889)] = 47674, + [SMALL_STATE(890)] = 47704, + [SMALL_STATE(891)] = 47726, + [SMALL_STATE(892)] = 47756, + [SMALL_STATE(893)] = 47774, + [SMALL_STATE(894)] = 47808, + [SMALL_STATE(895)] = 47826, + [SMALL_STATE(896)] = 47856, + [SMALL_STATE(897)] = 47890, + [SMALL_STATE(898)] = 47912, + [SMALL_STATE(899)] = 47946, + [SMALL_STATE(900)] = 47976, + [SMALL_STATE(901)] = 48010, + [SMALL_STATE(902)] = 48032, + [SMALL_STATE(903)] = 48062, + [SMALL_STATE(904)] = 48096, + [SMALL_STATE(905)] = 48130, + [SMALL_STATE(906)] = 48164, + [SMALL_STATE(907)] = 48194, + [SMALL_STATE(908)] = 48224, + [SMALL_STATE(909)] = 48254, + [SMALL_STATE(910)] = 48276, + [SMALL_STATE(911)] = 48306, + [SMALL_STATE(912)] = 48340, + [SMALL_STATE(913)] = 48374, + [SMALL_STATE(914)] = 48393, + [SMALL_STATE(915)] = 48412, + [SMALL_STATE(916)] = 48431, + [SMALL_STATE(917)] = 48450, + [SMALL_STATE(918)] = 48473, + [SMALL_STATE(919)] = 48498, + [SMALL_STATE(920)] = 48517, + [SMALL_STATE(921)] = 48540, + [SMALL_STATE(922)] = 48559, + [SMALL_STATE(923)] = 48582, + [SMALL_STATE(924)] = 48598, + [SMALL_STATE(925)] = 48616, + [SMALL_STATE(926)] = 48630, + [SMALL_STATE(927)] = 48654, + [SMALL_STATE(928)] = 48668, + [SMALL_STATE(929)] = 48686, + [SMALL_STATE(930)] = 48700, + [SMALL_STATE(931)] = 48714, + [SMALL_STATE(932)] = 48728, + [SMALL_STATE(933)] = 48748, + [SMALL_STATE(934)] = 48762, + [SMALL_STATE(935)] = 48780, + [SMALL_STATE(936)] = 48798, + [SMALL_STATE(937)] = 48814, + [SMALL_STATE(938)] = 48828, + [SMALL_STATE(939)] = 48842, + [SMALL_STATE(940)] = 48856, + [SMALL_STATE(941)] = 48870, + [SMALL_STATE(942)] = 48888, + [SMALL_STATE(943)] = 48906, + [SMALL_STATE(944)] = 48924, + [SMALL_STATE(945)] = 48942, + [SMALL_STATE(946)] = 48956, + [SMALL_STATE(947)] = 48970, + [SMALL_STATE(948)] = 48984, + [SMALL_STATE(949)] = 49010, + [SMALL_STATE(950)] = 49024, + [SMALL_STATE(951)] = 49042, + [SMALL_STATE(952)] = 49064, + [SMALL_STATE(953)] = 49082, + [SMALL_STATE(954)] = 49100, + [SMALL_STATE(955)] = 49114, + [SMALL_STATE(956)] = 49128, + [SMALL_STATE(957)] = 49142, + [SMALL_STATE(958)] = 49156, + [SMALL_STATE(959)] = 49180, + [SMALL_STATE(960)] = 49194, + [SMALL_STATE(961)] = 49214, + [SMALL_STATE(962)] = 49228, + [SMALL_STATE(963)] = 49248, + [SMALL_STATE(964)] = 49262, + [SMALL_STATE(965)] = 49276, + [SMALL_STATE(966)] = 49290, + [SMALL_STATE(967)] = 49310, + [SMALL_STATE(968)] = 49324, + [SMALL_STATE(969)] = 49342, + [SMALL_STATE(970)] = 49361, + [SMALL_STATE(971)] = 49384, + [SMALL_STATE(972)] = 49409, + [SMALL_STATE(973)] = 49428, + [SMALL_STATE(974)] = 49441, + [SMALL_STATE(975)] = 49466, + [SMALL_STATE(976)] = 49489, + [SMALL_STATE(977)] = 49512, + [SMALL_STATE(978)] = 49525, + [SMALL_STATE(979)] = 49538, + [SMALL_STATE(980)] = 49559, + [SMALL_STATE(981)] = 49580, + [SMALL_STATE(982)] = 49601, + [SMALL_STATE(983)] = 49614, + [SMALL_STATE(984)] = 49635, + [SMALL_STATE(985)] = 49654, + [SMALL_STATE(986)] = 49673, + [SMALL_STATE(987)] = 49698, + [SMALL_STATE(988)] = 49711, + [SMALL_STATE(989)] = 49724, + [SMALL_STATE(990)] = 49739, + [SMALL_STATE(991)] = 49758, + [SMALL_STATE(992)] = 49781, + [SMALL_STATE(993)] = 49800, + [SMALL_STATE(994)] = 49819, + [SMALL_STATE(995)] = 49842, + [SMALL_STATE(996)] = 49861, + [SMALL_STATE(997)] = 49882, + [SMALL_STATE(998)] = 49903, + [SMALL_STATE(999)] = 49916, + [SMALL_STATE(1000)] = 49935, + [SMALL_STATE(1001)] = 49958, + [SMALL_STATE(1002)] = 49975, + [SMALL_STATE(1003)] = 49998, + [SMALL_STATE(1004)] = 50021, + [SMALL_STATE(1005)] = 50042, + [SMALL_STATE(1006)] = 50059, + [SMALL_STATE(1007)] = 50074, + [SMALL_STATE(1008)] = 50099, + [SMALL_STATE(1009)] = 50116, + [SMALL_STATE(1010)] = 50135, + [SMALL_STATE(1011)] = 50158, + [SMALL_STATE(1012)] = 50176, + [SMALL_STATE(1013)] = 50192, + [SMALL_STATE(1014)] = 50208, + [SMALL_STATE(1015)] = 50230, + [SMALL_STATE(1016)] = 50244, + [SMALL_STATE(1017)] = 50260, + [SMALL_STATE(1018)] = 50278, + [SMALL_STATE(1019)] = 50296, + [SMALL_STATE(1020)] = 50308, + [SMALL_STATE(1021)] = 50322, + [SMALL_STATE(1022)] = 50344, + [SMALL_STATE(1023)] = 50362, + [SMALL_STATE(1024)] = 50382, + [SMALL_STATE(1025)] = 50402, + [SMALL_STATE(1026)] = 50422, + [SMALL_STATE(1027)] = 50440, + [SMALL_STATE(1028)] = 50454, + [SMALL_STATE(1029)] = 50470, + [SMALL_STATE(1030)] = 50492, + [SMALL_STATE(1031)] = 50514, + [SMALL_STATE(1032)] = 50536, + [SMALL_STATE(1033)] = 50550, + [SMALL_STATE(1034)] = 50564, + [SMALL_STATE(1035)] = 50584, + [SMALL_STATE(1036)] = 50600, + [SMALL_STATE(1037)] = 50622, + [SMALL_STATE(1038)] = 50640, + [SMALL_STATE(1039)] = 50652, + [SMALL_STATE(1040)] = 50668, + [SMALL_STATE(1041)] = 50682, + [SMALL_STATE(1042)] = 50702, + [SMALL_STATE(1043)] = 50724, + [SMALL_STATE(1044)] = 50740, + [SMALL_STATE(1045)] = 50760, + [SMALL_STATE(1046)] = 50778, + [SMALL_STATE(1047)] = 50795, + [SMALL_STATE(1048)] = 50814, + [SMALL_STATE(1049)] = 50829, + [SMALL_STATE(1050)] = 50846, + [SMALL_STATE(1051)] = 50863, + [SMALL_STATE(1052)] = 50882, + [SMALL_STATE(1053)] = 50901, + [SMALL_STATE(1054)] = 50920, + [SMALL_STATE(1055)] = 50939, + [SMALL_STATE(1056)] = 50956, + [SMALL_STATE(1057)] = 50973, + [SMALL_STATE(1058)] = 50984, + [SMALL_STATE(1059)] = 51003, + [SMALL_STATE(1060)] = 51018, + [SMALL_STATE(1061)] = 51033, + [SMALL_STATE(1062)] = 51050, + [SMALL_STATE(1063)] = 51067, + [SMALL_STATE(1064)] = 51082, + [SMALL_STATE(1065)] = 51099, + [SMALL_STATE(1066)] = 51114, + [SMALL_STATE(1067)] = 51131, + [SMALL_STATE(1068)] = 51148, + [SMALL_STATE(1069)] = 51165, + [SMALL_STATE(1070)] = 51182, + [SMALL_STATE(1071)] = 51201, + [SMALL_STATE(1072)] = 51220, + [SMALL_STATE(1073)] = 51237, + [SMALL_STATE(1074)] = 51252, + [SMALL_STATE(1075)] = 51271, + [SMALL_STATE(1076)] = 51288, + [SMALL_STATE(1077)] = 51305, + [SMALL_STATE(1078)] = 51316, + [SMALL_STATE(1079)] = 51333, + [SMALL_STATE(1080)] = 51350, + [SMALL_STATE(1081)] = 51365, + [SMALL_STATE(1082)] = 51384, + [SMALL_STATE(1083)] = 51395, + [SMALL_STATE(1084)] = 51412, + [SMALL_STATE(1085)] = 51426, + [SMALL_STATE(1086)] = 51442, + [SMALL_STATE(1087)] = 51456, + [SMALL_STATE(1088)] = 51472, + [SMALL_STATE(1089)] = 51482, + [SMALL_STATE(1090)] = 51496, + [SMALL_STATE(1091)] = 51512, + [SMALL_STATE(1092)] = 51528, + [SMALL_STATE(1093)] = 51542, + [SMALL_STATE(1094)] = 51558, + [SMALL_STATE(1095)] = 51572, + [SMALL_STATE(1096)] = 51588, + [SMALL_STATE(1097)] = 51604, + [SMALL_STATE(1098)] = 51618, + [SMALL_STATE(1099)] = 51634, + [SMALL_STATE(1100)] = 51644, + [SMALL_STATE(1101)] = 51658, + [SMALL_STATE(1102)] = 51674, + [SMALL_STATE(1103)] = 51690, + [SMALL_STATE(1104)] = 51704, + [SMALL_STATE(1105)] = 51718, + [SMALL_STATE(1106)] = 51732, + [SMALL_STATE(1107)] = 51746, + [SMALL_STATE(1108)] = 51762, + [SMALL_STATE(1109)] = 51778, + [SMALL_STATE(1110)] = 51794, + [SMALL_STATE(1111)] = 51810, + [SMALL_STATE(1112)] = 51826, + [SMALL_STATE(1113)] = 51840, + [SMALL_STATE(1114)] = 51854, + [SMALL_STATE(1115)] = 51868, + [SMALL_STATE(1116)] = 51878, + [SMALL_STATE(1117)] = 51892, + [SMALL_STATE(1118)] = 51908, + [SMALL_STATE(1119)] = 51922, + [SMALL_STATE(1120)] = 51934, + [SMALL_STATE(1121)] = 51948, + [SMALL_STATE(1122)] = 51964, + [SMALL_STATE(1123)] = 51978, + [SMALL_STATE(1124)] = 51994, + [SMALL_STATE(1125)] = 52008, + [SMALL_STATE(1126)] = 52022, + [SMALL_STATE(1127)] = 52036, + [SMALL_STATE(1128)] = 52050, + [SMALL_STATE(1129)] = 52066, + [SMALL_STATE(1130)] = 52076, + [SMALL_STATE(1131)] = 52086, + [SMALL_STATE(1132)] = 52102, + [SMALL_STATE(1133)] = 52116, + [SMALL_STATE(1134)] = 52126, + [SMALL_STATE(1135)] = 52140, + [SMALL_STATE(1136)] = 52154, + [SMALL_STATE(1137)] = 52168, + [SMALL_STATE(1138)] = 52182, + [SMALL_STATE(1139)] = 52198, + [SMALL_STATE(1140)] = 52212, + [SMALL_STATE(1141)] = 52228, + [SMALL_STATE(1142)] = 52244, + [SMALL_STATE(1143)] = 52258, + [SMALL_STATE(1144)] = 52272, + [SMALL_STATE(1145)] = 52288, + [SMALL_STATE(1146)] = 52304, + [SMALL_STATE(1147)] = 52320, + [SMALL_STATE(1148)] = 52334, + [SMALL_STATE(1149)] = 52350, + [SMALL_STATE(1150)] = 52366, + [SMALL_STATE(1151)] = 52382, + [SMALL_STATE(1152)] = 52394, + [SMALL_STATE(1153)] = 52410, + [SMALL_STATE(1154)] = 52423, + [SMALL_STATE(1155)] = 52436, + [SMALL_STATE(1156)] = 52449, + [SMALL_STATE(1157)] = 52462, + [SMALL_STATE(1158)] = 52471, + [SMALL_STATE(1159)] = 52484, + [SMALL_STATE(1160)] = 52497, + [SMALL_STATE(1161)] = 52510, + [SMALL_STATE(1162)] = 52523, + [SMALL_STATE(1163)] = 52532, + [SMALL_STATE(1164)] = 52545, + [SMALL_STATE(1165)] = 52558, + [SMALL_STATE(1166)] = 52571, + [SMALL_STATE(1167)] = 52584, + [SMALL_STATE(1168)] = 52595, + [SMALL_STATE(1169)] = 52606, + [SMALL_STATE(1170)] = 52615, + [SMALL_STATE(1171)] = 52628, + [SMALL_STATE(1172)] = 52641, + [SMALL_STATE(1173)] = 52654, + [SMALL_STATE(1174)] = 52667, + [SMALL_STATE(1175)] = 52680, + [SMALL_STATE(1176)] = 52693, + [SMALL_STATE(1177)] = 52706, + [SMALL_STATE(1178)] = 52719, + [SMALL_STATE(1179)] = 52732, + [SMALL_STATE(1180)] = 52745, + [SMALL_STATE(1181)] = 52754, + [SMALL_STATE(1182)] = 52767, + [SMALL_STATE(1183)] = 52780, + [SMALL_STATE(1184)] = 52793, + [SMALL_STATE(1185)] = 52804, + [SMALL_STATE(1186)] = 52817, + [SMALL_STATE(1187)] = 52830, + [SMALL_STATE(1188)] = 52843, + [SMALL_STATE(1189)] = 52852, + [SMALL_STATE(1190)] = 52865, + [SMALL_STATE(1191)] = 52874, + [SMALL_STATE(1192)] = 52887, + [SMALL_STATE(1193)] = 52900, + [SMALL_STATE(1194)] = 52913, + [SMALL_STATE(1195)] = 52926, + [SMALL_STATE(1196)] = 52939, + [SMALL_STATE(1197)] = 52952, + [SMALL_STATE(1198)] = 52965, + [SMALL_STATE(1199)] = 52978, + [SMALL_STATE(1200)] = 52991, + [SMALL_STATE(1201)] = 53004, + [SMALL_STATE(1202)] = 53017, + [SMALL_STATE(1203)] = 53030, + [SMALL_STATE(1204)] = 53043, + [SMALL_STATE(1205)] = 53056, + [SMALL_STATE(1206)] = 53069, + [SMALL_STATE(1207)] = 53082, + [SMALL_STATE(1208)] = 53095, + [SMALL_STATE(1209)] = 53108, + [SMALL_STATE(1210)] = 53119, + [SMALL_STATE(1211)] = 53128, + [SMALL_STATE(1212)] = 53139, + [SMALL_STATE(1213)] = 53150, + [SMALL_STATE(1214)] = 53163, + [SMALL_STATE(1215)] = 53176, + [SMALL_STATE(1216)] = 53189, + [SMALL_STATE(1217)] = 53202, + [SMALL_STATE(1218)] = 53215, + [SMALL_STATE(1219)] = 53228, + [SMALL_STATE(1220)] = 53241, + [SMALL_STATE(1221)] = 53254, + [SMALL_STATE(1222)] = 53267, + [SMALL_STATE(1223)] = 53278, + [SMALL_STATE(1224)] = 53291, + [SMALL_STATE(1225)] = 53304, + [SMALL_STATE(1226)] = 53317, + [SMALL_STATE(1227)] = 53330, + [SMALL_STATE(1228)] = 53343, + [SMALL_STATE(1229)] = 53356, + [SMALL_STATE(1230)] = 53369, + [SMALL_STATE(1231)] = 53382, + [SMALL_STATE(1232)] = 53395, + [SMALL_STATE(1233)] = 53408, + [SMALL_STATE(1234)] = 53421, + [SMALL_STATE(1235)] = 53434, + [SMALL_STATE(1236)] = 53447, + [SMALL_STATE(1237)] = 53460, + [SMALL_STATE(1238)] = 53473, + [SMALL_STATE(1239)] = 53486, + [SMALL_STATE(1240)] = 53499, + [SMALL_STATE(1241)] = 53512, + [SMALL_STATE(1242)] = 53525, + [SMALL_STATE(1243)] = 53534, + [SMALL_STATE(1244)] = 53547, + [SMALL_STATE(1245)] = 53560, + [SMALL_STATE(1246)] = 53573, + [SMALL_STATE(1247)] = 53582, + [SMALL_STATE(1248)] = 53595, + [SMALL_STATE(1249)] = 53606, + [SMALL_STATE(1250)] = 53619, + [SMALL_STATE(1251)] = 53632, + [SMALL_STATE(1252)] = 53645, + [SMALL_STATE(1253)] = 53658, + [SMALL_STATE(1254)] = 53671, + [SMALL_STATE(1255)] = 53684, + [SMALL_STATE(1256)] = 53697, + [SMALL_STATE(1257)] = 53710, + [SMALL_STATE(1258)] = 53723, + [SMALL_STATE(1259)] = 53734, + [SMALL_STATE(1260)] = 53743, + [SMALL_STATE(1261)] = 53756, + [SMALL_STATE(1262)] = 53765, + [SMALL_STATE(1263)] = 53778, + [SMALL_STATE(1264)] = 53791, + [SMALL_STATE(1265)] = 53804, + [SMALL_STATE(1266)] = 53813, + [SMALL_STATE(1267)] = 53826, + [SMALL_STATE(1268)] = 53835, + [SMALL_STATE(1269)] = 53848, + [SMALL_STATE(1270)] = 53861, + [SMALL_STATE(1271)] = 53874, + [SMALL_STATE(1272)] = 53887, + [SMALL_STATE(1273)] = 53900, + [SMALL_STATE(1274)] = 53909, + [SMALL_STATE(1275)] = 53922, + [SMALL_STATE(1276)] = 53933, + [SMALL_STATE(1277)] = 53942, + [SMALL_STATE(1278)] = 53955, + [SMALL_STATE(1279)] = 53968, + [SMALL_STATE(1280)] = 53981, + [SMALL_STATE(1281)] = 53994, + [SMALL_STATE(1282)] = 54005, + [SMALL_STATE(1283)] = 54016, + [SMALL_STATE(1284)] = 54024, + [SMALL_STATE(1285)] = 54034, + [SMALL_STATE(1286)] = 54044, + [SMALL_STATE(1287)] = 54052, + [SMALL_STATE(1288)] = 54060, + [SMALL_STATE(1289)] = 54068, + [SMALL_STATE(1290)] = 54076, + [SMALL_STATE(1291)] = 54084, + [SMALL_STATE(1292)] = 54092, + [SMALL_STATE(1293)] = 54100, + [SMALL_STATE(1294)] = 54108, + [SMALL_STATE(1295)] = 54118, + [SMALL_STATE(1296)] = 54126, + [SMALL_STATE(1297)] = 54136, + [SMALL_STATE(1298)] = 54144, + [SMALL_STATE(1299)] = 54152, + [SMALL_STATE(1300)] = 54162, + [SMALL_STATE(1301)] = 54172, + [SMALL_STATE(1302)] = 54180, + [SMALL_STATE(1303)] = 54190, + [SMALL_STATE(1304)] = 54198, + [SMALL_STATE(1305)] = 54206, + [SMALL_STATE(1306)] = 54216, + [SMALL_STATE(1307)] = 54224, + [SMALL_STATE(1308)] = 54232, + [SMALL_STATE(1309)] = 54242, + [SMALL_STATE(1310)] = 54252, + [SMALL_STATE(1311)] = 54262, + [SMALL_STATE(1312)] = 54270, + [SMALL_STATE(1313)] = 54280, + [SMALL_STATE(1314)] = 54288, + [SMALL_STATE(1315)] = 54296, + [SMALL_STATE(1316)] = 54306, + [SMALL_STATE(1317)] = 54314, + [SMALL_STATE(1318)] = 54322, + [SMALL_STATE(1319)] = 54330, + [SMALL_STATE(1320)] = 54338, + [SMALL_STATE(1321)] = 54346, + [SMALL_STATE(1322)] = 54354, + [SMALL_STATE(1323)] = 54362, + [SMALL_STATE(1324)] = 54372, + [SMALL_STATE(1325)] = 54382, + [SMALL_STATE(1326)] = 54392, + [SMALL_STATE(1327)] = 54400, + [SMALL_STATE(1328)] = 54408, + [SMALL_STATE(1329)] = 54416, + [SMALL_STATE(1330)] = 54426, + [SMALL_STATE(1331)] = 54434, + [SMALL_STATE(1332)] = 54444, + [SMALL_STATE(1333)] = 54452, + [SMALL_STATE(1334)] = 54460, + [SMALL_STATE(1335)] = 54468, + [SMALL_STATE(1336)] = 54476, + [SMALL_STATE(1337)] = 54484, + [SMALL_STATE(1338)] = 54492, + [SMALL_STATE(1339)] = 54500, + [SMALL_STATE(1340)] = 54508, + [SMALL_STATE(1341)] = 54518, + [SMALL_STATE(1342)] = 54526, + [SMALL_STATE(1343)] = 54536, + [SMALL_STATE(1344)] = 54546, + [SMALL_STATE(1345)] = 54554, + [SMALL_STATE(1346)] = 54564, + [SMALL_STATE(1347)] = 54572, + [SMALL_STATE(1348)] = 54582, + [SMALL_STATE(1349)] = 54592, + [SMALL_STATE(1350)] = 54602, + [SMALL_STATE(1351)] = 54610, + [SMALL_STATE(1352)] = 54620, + [SMALL_STATE(1353)] = 54628, + [SMALL_STATE(1354)] = 54636, + [SMALL_STATE(1355)] = 54643, + [SMALL_STATE(1356)] = 54650, + [SMALL_STATE(1357)] = 54657, + [SMALL_STATE(1358)] = 54664, + [SMALL_STATE(1359)] = 54671, + [SMALL_STATE(1360)] = 54678, + [SMALL_STATE(1361)] = 54685, + [SMALL_STATE(1362)] = 54692, + [SMALL_STATE(1363)] = 54699, + [SMALL_STATE(1364)] = 54706, + [SMALL_STATE(1365)] = 54713, + [SMALL_STATE(1366)] = 54720, + [SMALL_STATE(1367)] = 54727, + [SMALL_STATE(1368)] = 54734, + [SMALL_STATE(1369)] = 54741, + [SMALL_STATE(1370)] = 54748, + [SMALL_STATE(1371)] = 54755, + [SMALL_STATE(1372)] = 54762, + [SMALL_STATE(1373)] = 54769, + [SMALL_STATE(1374)] = 54776, + [SMALL_STATE(1375)] = 54783, + [SMALL_STATE(1376)] = 54790, + [SMALL_STATE(1377)] = 54797, + [SMALL_STATE(1378)] = 54804, + [SMALL_STATE(1379)] = 54811, + [SMALL_STATE(1380)] = 54818, + [SMALL_STATE(1381)] = 54825, + [SMALL_STATE(1382)] = 54832, + [SMALL_STATE(1383)] = 54839, + [SMALL_STATE(1384)] = 54846, + [SMALL_STATE(1385)] = 54853, + [SMALL_STATE(1386)] = 54860, + [SMALL_STATE(1387)] = 54867, + [SMALL_STATE(1388)] = 54874, + [SMALL_STATE(1389)] = 54881, + [SMALL_STATE(1390)] = 54888, + [SMALL_STATE(1391)] = 54895, + [SMALL_STATE(1392)] = 54902, + [SMALL_STATE(1393)] = 54909, + [SMALL_STATE(1394)] = 54916, + [SMALL_STATE(1395)] = 54923, + [SMALL_STATE(1396)] = 54930, + [SMALL_STATE(1397)] = 54937, + [SMALL_STATE(1398)] = 54944, + [SMALL_STATE(1399)] = 54951, + [SMALL_STATE(1400)] = 54958, + [SMALL_STATE(1401)] = 54965, + [SMALL_STATE(1402)] = 54972, + [SMALL_STATE(1403)] = 54979, + [SMALL_STATE(1404)] = 54986, + [SMALL_STATE(1405)] = 54993, + [SMALL_STATE(1406)] = 55000, + [SMALL_STATE(1407)] = 55007, + [SMALL_STATE(1408)] = 55014, + [SMALL_STATE(1409)] = 55021, + [SMALL_STATE(1410)] = 55028, + [SMALL_STATE(1411)] = 55035, + [SMALL_STATE(1412)] = 55042, + [SMALL_STATE(1413)] = 55049, + [SMALL_STATE(1414)] = 55056, + [SMALL_STATE(1415)] = 55063, + [SMALL_STATE(1416)] = 55070, + [SMALL_STATE(1417)] = 55077, + [SMALL_STATE(1418)] = 55084, + [SMALL_STATE(1419)] = 55091, + [SMALL_STATE(1420)] = 55098, + [SMALL_STATE(1421)] = 55105, + [SMALL_STATE(1422)] = 55112, + [SMALL_STATE(1423)] = 55119, + [SMALL_STATE(1424)] = 55126, + [SMALL_STATE(1425)] = 55133, + [SMALL_STATE(1426)] = 55140, + [SMALL_STATE(1427)] = 55147, + [SMALL_STATE(1428)] = 55154, + [SMALL_STATE(1429)] = 55161, + [SMALL_STATE(1430)] = 55168, + [SMALL_STATE(1431)] = 55175, + [SMALL_STATE(1432)] = 55182, + [SMALL_STATE(1433)] = 55189, + [SMALL_STATE(1434)] = 55196, + [SMALL_STATE(1435)] = 55203, + [SMALL_STATE(1436)] = 55210, + [SMALL_STATE(1437)] = 55217, + [SMALL_STATE(1438)] = 55224, + [SMALL_STATE(1439)] = 55231, + [SMALL_STATE(1440)] = 55238, + [SMALL_STATE(1441)] = 55245, + [SMALL_STATE(1442)] = 55252, + [SMALL_STATE(1443)] = 55259, + [SMALL_STATE(1444)] = 55266, + [SMALL_STATE(1445)] = 55273, + [SMALL_STATE(1446)] = 55280, + [SMALL_STATE(1447)] = 55287, + [SMALL_STATE(1448)] = 55294, + [SMALL_STATE(1449)] = 55301, + [SMALL_STATE(1450)] = 55308, + [SMALL_STATE(1451)] = 55315, + [SMALL_STATE(1452)] = 55322, + [SMALL_STATE(1453)] = 55329, + [SMALL_STATE(1454)] = 55336, + [SMALL_STATE(1455)] = 55343, + [SMALL_STATE(1456)] = 55350, + [SMALL_STATE(1457)] = 55357, + [SMALL_STATE(1458)] = 55364, + [SMALL_STATE(1459)] = 55371, + [SMALL_STATE(1460)] = 55378, + [SMALL_STATE(1461)] = 55385, + [SMALL_STATE(1462)] = 55392, + [SMALL_STATE(1463)] = 55399, + [SMALL_STATE(1464)] = 55406, + [SMALL_STATE(1465)] = 55413, + [SMALL_STATE(1466)] = 55420, + [SMALL_STATE(1467)] = 55427, + [SMALL_STATE(1468)] = 55434, + [SMALL_STATE(1469)] = 55441, + [SMALL_STATE(1470)] = 55448, + [SMALL_STATE(1471)] = 55455, + [SMALL_STATE(1472)] = 55462, + [SMALL_STATE(1473)] = 55469, + [SMALL_STATE(1474)] = 55476, + [SMALL_STATE(1475)] = 55483, + [SMALL_STATE(1476)] = 55490, + [SMALL_STATE(1477)] = 55497, + [SMALL_STATE(1478)] = 55504, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -71017,1544 +69619,1520 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(357), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1111), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(993), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(155), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(450), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(74), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(448), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(191), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(241), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(169), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1362), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1355), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1353), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(457), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(250), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(579), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(429), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1475), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(320), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(689), - [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(157), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(166), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(408), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1497), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1490), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1489), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(271), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(322), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1478), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(384), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(383), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(867), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(177), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(759), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(759), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(135), - [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(916), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(437), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(256), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(581), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(434), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1493), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(313), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1492), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1488), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(334), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1150), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(994), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(160), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(347), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(125), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(388), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(201), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(234), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1288), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1289), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1290), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(408), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(239), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(564), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(402), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1448), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(299), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(684), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(157), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(163), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(375), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1470), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1463), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1462), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(275), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(309), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1451), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(383), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(384), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(849), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(177), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(764), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(764), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(902), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(385), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(246), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(563), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(430), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1466), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(310), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1465), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1461), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 101), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 101), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 144), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 144), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 125), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 125), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 126), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 126), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 96), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 96), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 69), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 69), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 96), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 96), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 69), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 69), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 105), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 105), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 70), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, .production_id = 16), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(340), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1443), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1464), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(345), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(356), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1491), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1454), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(332), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 70), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 103), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 103), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 103), SHIFT_REPEAT(459), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 98), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 103), SHIFT_REPEAT(363), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(831), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 133), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 133), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 150), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 150), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 151), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 151), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 168), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 168), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 167), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 167), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 166), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 166), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(833), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 160), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 160), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 161), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 161), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 132), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 132), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 108), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 108), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 153), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 153), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 154), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 154), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 162), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 162), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 137), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 137), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 120), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 120), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 164), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 164), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 159), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 159), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 158), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 158), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 157), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 157), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 156), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 156), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 155), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 155), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 127), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 127), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 109), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 109), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 107), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 107), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 106), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 106), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 104), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 104), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(426), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(381), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(809), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(811), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, .production_id = 134), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, .production_id = 134), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 149), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 149), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 148), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 148), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 147), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 147), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 145), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 145), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 129), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 129), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 130), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 130), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 131), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 131), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 142), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 142), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 141), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 141), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 140), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 140), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 119), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 119), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 118), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 118), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 117), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 117), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 165), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 165), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 121), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 121), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(924), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(922), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(916), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(684), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1464), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(684), - [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(646), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(681), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1393), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(681), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(635), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), - [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(583), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(695), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1409), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(695), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(641), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(662), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1422), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(662), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(626), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1463), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(170), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(172), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1001), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1001), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 110), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(376), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1415), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(576), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(849), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 139), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 101), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 106), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 106), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 103), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 103), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(907), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 61), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 61), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 61), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 61), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, .production_id = 25), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, .production_id = 25), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 26), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, .production_id = 25), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, .production_id = 25), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 39), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 39), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 72), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(891), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(902), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(680), + [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1421), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(680), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(615), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 18), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(646), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1367), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(646), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(614), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 36), SHIFT_REPEAT(568), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 34), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(635), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1442), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(635), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(628), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(634), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1395), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(634), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(610), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 10), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 10), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1425), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(171), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(175), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(983), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(983), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(827), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(370), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1472), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(560), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(293), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(240), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 139), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 139), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(246), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 139), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 152), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 139), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(308), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 139), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 144), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 125), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 126), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 139), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 134), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 135), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(994), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(994), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1412), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 112), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 98), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 95), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(384), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(844), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 138), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 122), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 124), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(228), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 123), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 113), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(168), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1094), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 143), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(251), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 136), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1125), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1435), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(344), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1234), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(428), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), - [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(423), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(219), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 97), SHIFT_REPEAT(261), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 97), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1266), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(886), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(884), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1363), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(277), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(845), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 115), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 116), SHIFT_REPEAT(1006), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 116), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(885), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 163), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 114), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1004), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1004), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(383), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(822), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1469), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(170), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1054), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(229), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(242), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1156), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1122), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1357), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(429), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(366), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(314), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(221), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(864), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(226), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1279), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1285), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(992), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(861), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(863), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(274), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(823), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 111), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 111), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 111), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 100), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 99), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3177] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), + [3117] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), }; #ifdef __cplusplus diff --git a/python/ql/lib/change-notes/2025-02-06-allow-comments-in-subscripts.md b/python/ql/lib/change-notes/2025-02-06-allow-comments-in-subscripts.md new file mode 100644 index 000000000000..f962b27ca316 --- /dev/null +++ b/python/ql/lib/change-notes/2025-02-06-allow-comments-in-subscripts.md @@ -0,0 +1,5 @@ +--- +category: fix +--- + +- Fixed a bug in the extractor where a comment inside a subscript could sometimes cause the AST to be missing nodes.